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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.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;
}.lvca-container, .lvca-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lvca-container *, .lvca-container *::after, .lvca-container *::before, .lvca-grid-container *, .lvca-grid-container *::after, .lvca-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lvca-container ol, .lvca-container ul, .lvca-container ol > li, .lvca-container ul > li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul > li:hover, .lvca-container ol > li:hover, .lvca-container ol > li > a, .lvca-container ul > li > a, .lvca-container ol > li > a:hover, .lvca-container ul > li > a:hover, .lvca-container img, .lvca-grid-container ol, .lvca-grid-container ul, .lvca-grid-container ol > li, .lvca-grid-container ul > li, .lvca-grid-container ol:hover, .lvca-grid-container ul:hover, .lvca-grid-container ul > li:hover, .lvca-grid-container ol > li:hover, .lvca-grid-container ol > li > a, .lvca-grid-container ul > li > a, .lvca-grid-container ol > li > a:hover, .lvca-grid-container ul > li > a:hover, .lvca-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lvca-container ol:before, .lvca-container ol:after, .lvca-container ul:before, .lvca-container ul:after, .lvca-container ol > li:before, .lvca-container ol > li:after, .lvca-container ul > li:before, .lvca-container ul > li:after, .lvca-container ol:hover:before, .lvca-container ol:hover:after, .lvca-container ul:hover:before, .lvca-container ul:hover:after, .lvca-container ul > li:hover:before, .lvca-container ul > li:hover:after, .lvca-container ol > li:hover:before, .lvca-container ol > li:hover:after, .lvca-container ol > li > a:before, .lvca-container ol > li > a:after, .lvca-container ul > li > a:before, .lvca-container ul > li > a:after, .lvca-container ol > li > a:hover:before, .lvca-container ol > li > a:hover:after, .lvca-container ul > li > a:hover:before, .lvca-container ul > li > a:hover:after, .lvca-container img:before, .lvca-container img:after, .lvca-grid-container ol:before, .lvca-grid-container ol:after, .lvca-grid-container ul:before, .lvca-grid-container ul:after, .lvca-grid-container ol > li:before, .lvca-grid-container ol > li:after, .lvca-grid-container ul > li:before, .lvca-grid-container ul > li:after, .lvca-grid-container ol:hover:before, .lvca-grid-container ol:hover:after, .lvca-grid-container ul:hover:before, .lvca-grid-container ul:hover:after, .lvca-grid-container ul > li:hover:before, .lvca-grid-container ul > li:hover:after, .lvca-grid-container ol > li:hover:before, .lvca-grid-container ol > li:hover:after, .lvca-grid-container ol > li > a:before, .lvca-grid-container ol > li > a:after, .lvca-grid-container ul > li > a:before, .lvca-grid-container ul > li > a:after, .lvca-grid-container ol > li > a:hover:before, .lvca-grid-container ol > li > a:hover:after, .lvca-grid-container ul > li > a:hover:before, .lvca-grid-container ul > li > a:hover:after, .lvca-grid-container img:before, .lvca-grid-container img:after {
display: none; }
.lvca-container a, .lvca-grid-container a {
text-decoration: initial; }
.lvca-container img, .lvca-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lvca-container {
margin-left: auto;
margin-right: auto; }
.lvca-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lvca-center {
text-align: center; }
.lvca-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lvca-grid-container::after {
clear: both;
content: "";
display: block; }
.lvca-grid-container .lvca-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
.lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lvca-gapless-grid .lvca-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lvca-gapless-grid .lvca-masonry { }
.lvca-gapless-grid .lvca-masonry .lvca-grid-item {
clear: none !important; }
.lvca-gapless-grid .lvca-masonry .lvca-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lvca-container .lvca-thumbnailslider.lvca-flexslider {
margin-top: 15px; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide {
margin: 0 5px 0 0; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img:hover {
opacity: 1; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide.lvca-flex-active-slide img {
opacity: 1;
cursor: default; }
.lvca-container .lvca-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-direction-nav li {
position: initial; }
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lvca-icomoon' !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;
font-size: 24px;
width: 28px;
height: 28px;
margin: -14px 0 0;
bottom: initial;
left: initial;
right: initial;
top: 50%;
text-indent: 0;
text-align: center;
color: #aaa;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
outline: none; }
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lvca-container .lvca-flex-direction-nav a:hover, .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
display: none; } }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev {
left: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev:before {
content: "\e900"; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next {
right: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next:before {
content: "\e901"; }
.lvca-container .lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-container .lvca-flex-control-nav li a, .lvca-container .lvca-flex-control-nav li a:hover {
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s ease-in 0s;
transition: all 0.2s ease-in 0s;
display: inline-block;
vertical-align: middle;
outline: none; }
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover {
background: none; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active {
width: 14px;
height: 14px; }
.lvca-container .lvca-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs {
bottom: -80px; } }
.lvca-container .lvca-flex-control-thumbs li {
width: auto;
float: none; }
.lvca-container .lvca-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://zielgaattevoet.nl/wp-content/plugins/addons-for-visual-composer/assets/css/ajax-loader.gif) center center no-repeat; }
@media only screen and (max-width: 1024px) {
.slick-slider {
padding: 0 10px; } }
.lvca-container .slick-prev, .lvca-container .slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.rtl .lvca-container .slick-prev, .rtl .lvca-container .slick-next {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
direction: ltr; }
.lvca-container .slick-prev, .lvca-container .slick-prev:before, .lvca-container .slick-prev:after, .lvca-container .slick-next, .lvca-container .slick-next:before, .lvca-container .slick-next:after {
text-shadow: none;
background: none;
border: none;
padding: 0;
opacity: 1;
font-family: 'lvca-icomoon' !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;
font-size: 24px;
color: #aaa;
overflow: hidden;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
text-indent: 0;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.lvca-container .slick-prev:before, .lvca-container .slick-next:before {
margin: 2px;
vertical-align: middle; }
.lvca-container .slick-prev:hover:before, .lvca-container .slick-prev:hover:after, .lvca-container .slick-next:hover:before, .lvca-container .slick-next:hover:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:before, .lvca-dark-bg .lvca-container .slick-prev:after, .lvca-dark-bg .lvca-container .slick-next:before, .lvca-dark-bg .lvca-container .slick-next:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:hover:before, .lvca-dark-bg .lvca-container .slick-prev:hover:after, .lvca-dark-bg .lvca-container .slick-next:hover:before, .lvca-dark-bg .lvca-container .slick-next:hover:after {
color: #aaa;
background: none; }
.lvca-container .slick-prev {
left: -40px; }
.lvca-container .slick-prev:before {
content: "\e900"; }
.lvca-container .slick-next {
right: -40px; }
.lvca-container .slick-next:before {
content: "\e901"; }
.lvca-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0;
margin: 0; }
.lvca-container ul.slick-dots li {
margin: 0 8px 0 0;
padding: 0;
display: inline-block;
font-size: 0; }
.lvca-container ul.slick-dots li button {
padding: 0;
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: background 0.3s ease-in-out 0s;
transition: background 0.3s ease-in-out 0s;
font-size: 0;
outline: none; }
.lvca-container ul.slick-dots li button:before {
display: none; }
.lvca-dark-bg .lvca-container ul.slick-dots li button {
background: #888;
border-color: #888; }
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
background: none;
border-color: #aaa; }
.lvca-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lvca-widget-heading {
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: 40px;
line-height: 52px;
text-align: center; }
@media only screen and (max-width: 767px) {
.lvca-widget-heading {
font-size: 32px;
line-height: 44px; } } .lvca-spacer {
clear: both; } input.lvca-button, button.lvca-button, a.lvca-button, .lvca-button:active, .lvca-button:visited {
display: inline-block;
text-align: center;
line-height: 1;
cursor: pointer;
-webkit-appearance: none;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 3px;
padding: 16px 40px;
margin: 0;
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
background-color: #f94213;
color: #fefefe;
outline: none;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s; }
input.lvca-button.lvca-rounded, button.lvca-button.lvca-rounded, a.lvca-button.lvca-rounded, .lvca-button:active.lvca-rounded, .lvca-button:visited.lvca-rounded {
border-radius: 999px; }
input.lvca-button.lvca-large, button.lvca-button.lvca-large, a.lvca-button.lvca-large, .lvca-button:active.lvca-large, .lvca-button:visited.lvca-large {
padding: 20px 60px; }
input.lvca-button.lvca-small, button.lvca-button.lvca-small, a.lvca-button.lvca-small, .lvca-button:active.lvca-small, .lvca-button:visited.lvca-small {
padding: 12px 25px;
font-size: 11px; }
input.lvca-button:hover, button.lvca-button:hover, a.lvca-button:hover, .lvca-button:active:hover, .lvca-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
input.lvca-button img, input.lvca-button span.lvca-icon, button.lvca-button img, button.lvca-button span.lvca-icon, a.lvca-button img, a.lvca-button span.lvca-icon, .lvca-button:active img, .lvca-button:active span.lvca-icon, .lvca-button:visited img, .lvca-button:visited span.lvca-icon {
margin-right: 10px; }
.lvca-button.lvca-black {
background-color: #363636; }
.lvca-button.lvca-black:hover {
background-color: #434343; }
.lvca-button.lvca-blue {
background-color: #46a5d5; }
.lvca-button.lvca-blue:hover {
background-color: #5bafda; }
.lvca-button.lvca-cyan {
background-color: #57c0dc; }
.lvca-button.lvca-cyan:hover {
background-color: #6cc8e0; }
.lvca-button.lvca-green {
background-color: #00a57d; }
.lvca-button.lvca-green:hover {
background-color: #00bf90; }
.lvca-button.lvca-orange {
background-color: #e87151; }
.lvca-button.lvca-orange:hover {
background-color: #eb8368; }
.lvca-button.lvca-pink {
background-color: #dd5679; }
.lvca-button.lvca-pink:hover {
background-color: #e16b8a; }
.lvca-button.lvca-red {
background-color: #da4f49; }
.lvca-button.lvca-red:hover {
background-color: #de635e; }
.lvca-button.lvca-teal {
background-color: #28c2ba; }
.lvca-button.lvca-teal:hover {
background-color: #2fd4cc; }
.lvca-button.lvca-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lvca-button.lvca-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lvca-button.lvca-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lvca-button.lvca-semitrans:hover {
background-color: #fff;
color: #333 !important; } .lvca-post-link-overlay {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
z-index: 1; }
.lvca-terms a, .lvca-post-title a {
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-read-more {
position: relative;
display: inline-block;
font-size: 0.75rem;
line-height: 1;
text-decoration: none;
padding: 8px 15px;
margin-top: 15px;
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-post-featured-img-bg {
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin-bottom: 15px; }@font-face {
font-family: 'lvca-icomoon';
src:    url(//zielgaattevoet.nl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v);
src:    url(//zielgaattevoet.nl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v#iefix) format('embedded-opentype'),
url(//zielgaattevoet.nl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.ttf?qq9b0v) format('truetype'),
url(//zielgaattevoet.nl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.woff?qq9b0v) format('woff'),
url(//zielgaattevoet.nl/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.svg?qq9b0v#icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lvca-icon-"], [class*=" lvca-icon-"] { font-family: 'lvca-icomoon' !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;
}
.lvca-icon-arrow-left:before {
content: "\e900";
}
.lvca-icon-arrow-right:before {
content: "\e901";
}
.lvca-icon-aim:before {
content: "\e902";
}
.lvca-icon-behance:before {
content: "\e903";
}
.lvca-icon-dribbble:before {
content: "\e904";
}
.lvca-icon-facebook:before {
content: "\e905";
}
.lvca-icon-flickr:before {
content: "\e906";
}
.lvca-icon-googleplus:before {
content: "\e907";
}
.lvca-icon-linkedin:before {
content: "\e908";
}
.lvca-icon-pinterest:before {
content: "\e909";
}
.lvca-icon-skype:before {
content: "\e90a";
}
.lvca-icon-twitter:before {
content: "\e90b";
}
.lvca-icon-vimeo:before {
content: "\e90c";
}
.lvca-icon-zerply:before {
content: "\e90d";
}
.lvca-icon-quote:before {
content: "\e90e";
}
.lvca-icon-video-play:before {
content: "\e90f";
}
.lvca-icon-email:before {
content: "\e910";
}
.lvca-icon-close:before {
content: "\e911";
}
.lvca-icon-plus:before {
content: "\e912";
}
.lvca-icon-arrow-right-toggle:before {
content: "\e913";
}
.lvca-icon-menu:before {
content: "\e914";
}
.lvca-icon-menu-2:before {
content: "\e915";
}
.lvca-icon-fit-to:before {
content: "\e916";
}
.lvca-icon-full-screen:before {
content: "\e917";
}
.lvca-icon-arrow-left2:before {
content: "\e918";
}
.lvca-icon-arrow-left3:before {
content: "\e919";
}
.lvca-icon-arrow-right2:before {
content: "\e91a";
}
.lvca-icon-arrow-right3:before {
content: "\e91b";
}
.lvca-icon-start:before {
content: "\e91c";
}
.lvca-icon-instagram:before {
content: "\ea92";
}
.lvca-icon-angle-left:before {
content: "\f104";
}
.lvca-icon-angle-right:before {
content: "\f105";
}.lvca-accordion .lvca-panel-title {
display: block;
cursor: pointer; }
.lvca-accordion .lvca-panel-content {
display: none;
overflow: hidden; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title, .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title:after, .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
font-family: 'lvca-icomoon' !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;
position: absolute;
content: "\e912";
right: 30px;
top: 26px;
font-size: 14px;
line-height: 1;
color: #666;
font-weight: 700;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title:after, .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg); }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:after {
font-family: 'lvca-icomoon' !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;
position: absolute;
right: 30px;
top: 25px;
content: "\e913";
color: #999;
font-size: 18px;
line-height: 1;
-webkit-transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
-webkit-transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
-webkit-transform: rotate(90deg);
transform: rotate(90deg); } .lvca-accordion.lvca-style1 .lvca-panel {
margin: 20px 0 0;
background: #eee;
border-radius: 5px;
overflow: hidden; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
padding: 20px 50px 20px 30px;
font-size: 18px;
line-height: 26px;
letter-spacing: 0;
font-weight: bold;
color: #666;
margin: 0; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-content {
background: #f8f8f8;
padding: 30px 30px; }
.lvca-accordion.lvca-style1 .lvca-panel:hover .lvca-panel-title {
background: #e2e2e2; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title {
color: #333;
background: #e2e2e2; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #333; } .lvca-accordion.lvca-style2 .lvca-panel {
margin: 20px 0 0;
color: #333;
-webkit-transition: color .3s;
transition: color .3s;
position: relative; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
border-radius: 5px;
border: 1px solid #dcdcdc;
overflow: hidden;
padding: 20px 50px 20px 30px;
font-size: 18px;
line-height: 26px;
letter-spacing: 0;
font-weight: bold;
color: #666;
margin: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
z-index: 1; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:before {
position: absolute;
content: "";
left: 0;
bottom: 0;
height: 0;
width: 100%;
background: #4c5053;
-webkit-transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
z-index: -1; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content {
padding: 20px 30px;
border-color: #dcdcdc;
border-style: solid;
border-width: 0 1px 1px 1px;
border-radius: 0 0 5px 5px; }
.lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title, .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:after {
color: #fff;
border-color: #333; }
.lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:before {
height: 100%; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title {
background: #4c5053;
color: #fff;
border-radius: 5px 5px 0 0;
border-color: #333; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #fff; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
color: #888;
border-color: #404040; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:before {
background: #e5e5e5; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title {
color: #333; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:after {
color: #666; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title {
background: #e5e5e5;
color: #333;
border-color: #e5e5e5; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #666; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content {
border-color: #404040;
color: #909090; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h1, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h2, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h3, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h4, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h5, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h6 {
color: #e5e5e5; } .lvca-accordion.lvca-style3 .lvca-panel {
margin: 0;
border-bottom: 1px solid #dcdcdc; }
.lvca-accordion.lvca-style3 .lvca-panel:first-child {
border-top: 1px solid #dcdcdc; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
padding: 20px 50px 20px 5px;
font-size: 14px;
line-height: 22px;
letter-spacing: 1px;
font-weight: bold;
text-transform: uppercase;
color: #666;
margin: 0; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
top: 24px; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content {
padding: 10px 50px 30px 5px; }
.lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title {
color: #333; }
.lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title {
color: #333; }
.lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #333; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel {
border-color: #404040; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
color: #b0b0b0; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
color: #888; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title {
color: #eaeaea; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title:after {
color: #aaa; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title {
color: #eaeaea; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #aaa; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content {
color: #909090; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h1, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h2, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h3, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h4, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h5, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h6 {
color: #e5e5e5; }.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: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-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:before,
.slick-track:after
{
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;
}.lvca-carousel .lvca-carousel-item {
position: relative;
}
.lvca-carousel.lvca-container {
max-width: none;
}.lvca-clients {
clear: both;
overflow: hidden;
margin: 0 auto; }
@media (max-width: 479px) {
.lvca-clients .lvca-grid-mobile-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-clients .lvca-grid-tablet-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media only screen and (min-width: 801px) {
.lvca-clients .lvca-grid-desktop-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
.lvca-clients .lvca-client {
position: relative;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
overflow: hidden; }
.lvca-dark-bg .lvca-clients .lvca-client {
border-color: #505050 !important; }
.lvca-clients .lvca-client img {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 100%;
margin: 0;
display: block; }
.lvca-clients .lvca-client .lvca-client-name {
position: absolute;
z-index: 2;
top: 50%;
text-align: center;
width: 100%;
height: 100%;
margin-top: -12px;
color: #fff;
font-size: 18px;
line-height: 26px;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s;
opacity: 0; }
.lvca-clients .lvca-client .lvca-client-name a {
color: #fff;
text-decoration: none; }
.lvca-clients .lvca-client .lvca-image-overlay {
position: absolute;
left: 0;
top: 0;
overflow: hidden;
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-clients .lvca-client:hover .lvca-image-overlay {
opacity: 0.7; }
.lvca-dark-bg .lvca-clients .lvca-client:hover .lvca-image-overlay {
opacity: 0.8; }
.lvca-clients .lvca-client:hover .lvca-client-name {
opacity: 1; }.lvca-heading {
text-align: center;
margin: 0 auto 60px;
max-width: 640px; }
@media only screen and (max-width: 767px) {
.lvca-heading {
margin-bottom: 40px; } }
.lvca-heading .lvca-text {
font-size: 18px;
line-height: 28px;
margin: 0 auto; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-text {
font-size: 15px;
line-height: 26px; } }
.lvca-heading.lvca-alignleft, .lvca-heading.lvca-alignright {
margin: 0; }
.lvca-heading.lvca-alignleft .lvca-text, .lvca-heading.lvca-alignright .lvca-text {
margin: 0; }
.lvca-heading.lvca-alignleft {
text-align: left; }
.lvca-heading.lvca-alignright {
text-align: right; }
.lvca-heading .lvca-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) {
.lvca-heading .lvca-title {
font-size: 24px;
line-height: 32px; } }
.lvca-dark-bg .lvca-heading .lvca-title {
color: #e5e5e5; }
.lvca-dark-bg .lvca-heading .lvca-subtitle {
color: #B0B0B0; }
.lvca-dark-bg .lvca-heading .lvca-text {
color: #909090; }
.lvca-heading.lvca-alignleft .lvca-title, .lvca-heading.lvca-alignright .lvca-title {
margin: 0 0 20px; }
.lvca-heading .lvca-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) {
.lvca-heading .lvca-subtitle {
font-size: 11px;
line-height: 18px; } }
.lvca-heading.lvca-alignleft .lvca-subtitle, .lvca-heading.lvca-alignright .lvca-subtitle {
margin: 0 0 5px;
padding: 0; }
.lvca-heading.lvca-alignleft .lvca-subtitle:before, .lvca-heading.lvca-alignleft .lvca-subtitle:after, .lvca-heading.lvca-alignright .lvca-subtitle:before, .lvca-heading.lvca-alignright .lvca-subtitle:after {
display: none; }
.lvca-heading.lvca-style3 {
margin: 0 auto 30px; }
.lvca-heading.lvca-style3 .lvca-title {
font-size: 22px;
line-height: 32px;
text-transform: uppercase;
letter-spacing: 1px; }
.lvca-heading.lvca-style3 .lvca-title:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lvca-heading.lvca-style3 .lvca-title:after {
margin: 10px auto 20px; }
.lvca-dark-bg .lvca-heading.lvca-style3 .lvca-title:after {
background: #909090; }
@media only screen and (max-width: 767px) {
.lvca-heading.lvca-style3 .lvca-title {
font-size: 16px;
line-height: 24px; } }
.lvca-heading.lvca-style3.lvca-alignleft, .lvca-heading.lvca-style3.lvca-alignright {
margin: 0 0 30px; }
.lvca-heading.lvca-style3.lvca-alignleft .lvca-title:after, .lvca-heading.lvca-style3.lvca-alignright .lvca-title:after {
margin: 10px 0 20px; }.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
visibility: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
display: block; }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
display: block;
-webkit-backface-visibility: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0); }
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
position: absolute; }
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s; }
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
transform: translateY(-100%); }
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
transform: translateY(-100%); }
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s;
-webkit-transform: translateY(0);
transform: translateY(0); }
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
font-family: "Helvetica Neue", sans-serif;
line-height: 1.1em; }
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
text-align: center; } .lvca-odometers {
font-size: 0; }
.lvca-odometers .lvca-odometer {
display: inline-block;
vertical-align: top;
text-align: left;
position: relative;
margin-bottom: 50px; }
.lvca-odometers .lvca-odometer:last-child:after {
border: none; }
.lvca-odometers .lvca-odometer .lvca-prefix, .lvca-odometers .lvca-odometer .lvca-suffix {
display: inline;
font-size: 36px;
line-height: 48px;
color: #333;
vertical-align: middle; }
.lvca-odometers .lvca-odometer .lvca-prefix {
margin-right: 5px;
margin-left: 5px; }
.lvca-odometers .lvca-odometer .lvca-suffix {
margin-left: 5px; }
.lvca-odometers .lvca-odometer .lvca-number {
font-size: 60px;
line-height: 72px;
font-style: normal;
text-transform: none;
letter-spacing: 2px;
font-weight: 900;
color: #333;
margin-bottom: 10px; }
.lvca-odometers .lvca-odometer .lvca-number span {
font-size: 60px; }
.lvca-dark-bg .lvca-odometers .lvca-odometer .lvca-number {
color: #e5e5e5; }
.lvca-odometers .lvca-odometer .lvca-stats-title {
font-size: 18px;
line-height: 28px;
display: inline-block;
color: #888; }
.lvca-dark-bg .lvca-odometers .lvca-odometer .lvca-stats-title {
color: #909090; }
.lvca-odometers .lvca-odometer .lvca-stats-title span {
float: left;
margin-right: 15px; }
.lvca-odometers .lvca-odometer .lvca-stats-title .lvca-icon-wrapper {
font-size: 32px;
margin-right: 10px;
vertical-align: middle;
color: #ccc; }
@media only screen and (max-width: 960px) {
.lvca-odometers .lvca-odometer .lvca-number {
font-size: 48px;
line-height: 56px;
margin-bottom: 0; }
.lvca-odometers .lvca-odometer .lvca-number span {
font-size: 48px; }
.lvca-odometers .lvca-odometer .lvca-stats-title {
font-size: 15px;
line-height: 26px; } }
@media only screen and (max-width: 479px) {
.lvca-odometers .lvca-odometer {
text-align: center; } }.lvca-piechart {
position: relative;
text-align: center;
float: left;
overflow: hidden;
float: left;
padding: 10px; }
.lvca-piechart canvas {
position: relative;
top: 0;
left: 0;
max-width: 100%;
margin: 0 auto; }
.lvca-piechart .lvca-label {
text-align: center;
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 55%;
max-width: 65%;
color: #888; }
.lvca-dark-bg .lvca-piechart .lvca-label {
color: #909090; }
.lvca-piechart .lvca-percentage span {
position: absolute;
top: 25%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
font-size: 60px;
line-height: 60px;
font-weight: 300;
text-align: center;
color: #333;
font-weight: bolder; }
.lvca-dark-bg .lvca-piechart .lvca-percentage span {
color: #e5e5e5; }
.lvca-piechart .lvca-percentage sup {
font-size: 18px;
vertical-align: super; }
.lvca-piechart.dark-bg .lvca-label {
color: #fff; }
.lvca-piechart.dark-bg .lvca-percentage span {
color: #eee; }
@media only screen and (max-width: 479px) {
.lvca-piechart canvas {
margin-bottom: 15px; } }

.lvca-posts-carousel {
clear: both;
max-width: none; }
@media only screen and (min-width: 1024px) {
.lvca-posts-carousel {
max-width: 96%; } }
.lvca-posts-carousel .lvca-posts-carousel-item .hentry {
background: #fff;
border-radius: 6px;
border: none;
padding: 0;
margin: 0;
-webkit-transition: -webkit-box-shadow .25s ease 0s;
transition: -webkit-box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s, -webkit-box-shadow .25s ease 0s;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden; }
.lvca-posts-carousel .lvca-posts-carousel-item .hentry:hover {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image {
position: relative;
overflow: hidden; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .fl-photo-content {
width: 100%; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image img {
width: 100%;
display: block;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
max-width: 100%; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info {
display: block;
text-align: center; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title {
padding: 10px;
margin: 0;
font-size: 22px;
line-height: 34px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title {
font-size: 18px;
line-height: 26px; } }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title a:hover {
border-bottom: 2px solid #ccc; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms a:hover {
color: #fff; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover .lvca-image-info .lvca-post-title, .lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover .lvca-image-info .lvca-terms {
opacity: 1; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 0 auto;
padding: 25px 15px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title {
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: 16px;
line-height: 24px;
margin-bottom: 10px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title:after, .lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title:before {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a {
color: #333333;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a:hover {
color: #888; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:last-child:after {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-summary {
padding: 0;
margin: 10px auto 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list:after {
text-align: center;
margin: 10px auto 10px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list a {
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .type-post .lvca-entry-text-wrap .entry-summary:before {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more {
margin: 25px 0 0 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):hover {
color: #666; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):after {
margin: 0 7px 0 0; }.lvca-pricing-table .lvca-pricing-plan {
float: left;
padding: 10px; }
.lvca-center {
text-align: center; }
.lvca-pricing-table {
padding: 0; }
.lvca-pricing-table .lvca-top-header {
padding: 15px 0;
background-color: #494949;
border-bottom: 1px solid #2c2b2b; }
.lvca-pricing-table .lvca-top-header h3 {
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: 20px;
line-height: 32px;
color: #fefefe;
margin: 0; }
.lvca-pricing-table .lvca-top-header img {
margin-top: 15px; }
.lvca-pricing-table .lvca-top-header .lvca-tagline {
display: block;
font-size: 15px;
line-height: 24px;
color: #EDEDED;
text-transform: none;
text-align: center;
margin-bottom: 5px; }
.lvca-pricing-table .lvca-pricing-plan {
background: #fff;
padding: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
margin-bottom: 30px; }
.lvca-pricing-table .lvca-pricing-plan:hover .lvca-purchase {
background: #e5e5e5; }
.lvca-pricing-table .lvca-pricing-plan .lvca-plan-price {
color: #fff;
font-size: 22px;
line-height: 28px;
font-weight: 700;
margin: 0; }
.lvca-pricing-table .lvca-pricing-plan .lvca-plan-price span {
font-size: 22px;
line-height: 32px; }
.lvca-pricing-table .lvca-plan-header {
padding: 30px 0 30px;
background-color: #494949; }
.lvca-pricing-table .lvca-plan-price .lvca-text {
display: inline-block;
padding: 6px 25px;
border-radius: 25px;
background: #2C2B2B; }
.lvca-pricing-table .lvca-plan-price sup {
font-size: 18px;
line-height: 32px;
vertical-align: top;
margin-right: 2px;
position: static; }
.lvca-pricing-table .lvca-plan-details {
padding: 15px 0;
margin: 0;
border: 1px solid #eee; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item {
list-style: none;
display: block;
padding: 6px;
margin: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
text-align: center; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item i {
color: #777;
font-size: 18px;
display: inline;
margin-right: 8px; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-title {
color: #838383;
margin-bottom: 10px; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value-wrap {
display: block; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value-wrap:after {
position: relative;
content: "";
background: #ddd;
width: 120px;
height: 1px;
display: block;
margin: 12px auto 0; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value {
color: #444;
font-size: 24px;
line-height: 32px;
display: inline; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item s {
color: #b4c9d3; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item:last-child .lvca-value-wrap:after {
display: none; }
.lvca-pricing-table .lvca-purchase {
text-align: center;
text-transform: uppercase;
padding: 15px 0;
margin: 0 auto;
background: #f1f1f1;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee; }
.lvca-pricing-table .lvca-purchase a {
padding: 12px 25px;
border-radius: 5px;
letter-spacing: 0;
font-size: 16px;
line-height: 24px;
letter-spacing: 6px;
font-weight: bold; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight {
background: #f5f5f5;
margin-top: -10px; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-plan-details {
border-color: #e5e5e5; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-top-header {
padding: 20px 0; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-pricing-table .lvca-top-header h3 {
color: #28c2ba !important; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-purchase {
padding: 20px 0;
background-color: #e5e5e5;
border-color: #ddd; }.lvca-services.lvca-style1 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: center;
font-size: 96px;
line-height: 1;
margin-bottom: 20px;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services.lvca-style1 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-services.lvca-style1 .lvca-service .lvca-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lvca-services.lvca-style1 .lvca-service .lvca-service-text .lvca-title {
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;
margin-bottom: 20px; }
.lvca-services.lvca-style1 .lvca-service:hover .lvca-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lvca-services.lvca-style2 .lvca-service .lvca-image-wrapper img, .lvca-services.lvca-style2 .lvca-service .lvca-icon-wrapper span {
float: left;
margin-right: 18px; }
.lvca-services.lvca-style2 .lvca-service .lvca-icon-wrapper span {
font-size: 24px;
line-height: 32px; }
.lvca-services.lvca-style2 .lvca-service .lvca-service-text .lvca-title {
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;
margin-bottom: 20px; } .lvca-services.lvca-style3 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: left;
font-size: 80px;
line-height: 1;
margin-bottom: 25px;
color: #555; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-icon-wrapper span {
color: #c5c5c5; }
.lvca-services.lvca-style3 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: left;
margin-bottom: 25px; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text {
text-align: left;
max-width: 300px;
margin: 0;
font-size: 14px;
line-height: 32px;
color: #888; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list {
padding: 0;
margin: 0;
border: none; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li {
border-bottom: 1px solid #eee;
position: relative;
padding: 0;
margin: 0;
list-style: none;
line-height: 42px; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:hover {
padding: 0; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li {
border-color: #333; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:before {
font-family: 'lvca-icomoon' !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;
position: relative;
display: inline-block;
height: auto;
width: auto;
background: none;
float: none;
vertical-align: middle;
margin: 0 15px 0 0;
content: "\e913";
color: #BBBBBB;
font-size: 12px;
line-height: 1; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:before {
color: #606060; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text .lvca-title {
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;
margin-bottom: 20px; } .lvca-services.lvca-style4 .lvca-service {
margin-bottom: 60px; }
.lvca-services.lvca-style4 .lvca-service .lvca-image-wrapper img, .lvca-services.lvca-style4 .lvca-service .lvca-icon-wrapper span {
display: block;
margin-bottom: 20px;
text-align: left; }
.lvca-services.lvca-style4 .lvca-service .lvca-icon-wrapper span {
font-size: 36px;
line-height: 1;
color: #888; }
.lvca-services.lvca-style4 .lvca-service .lvca-service-text .lvca-title {
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; } .lvca-services.lvca-style5 .lvca-service {
margin-bottom: 80px; }
@media only screen and (max-width: 767px) {
.lvca-services.lvca-style5 .lvca-service {
margin-bottom: 50px; } }
.lvca-services.lvca-style5 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: center;
font-size: 48px;
line-height: 1;
margin-bottom: 15px;
color: #999;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services.lvca-style5 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-services.lvca-style5 .lvca-service .lvca-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lvca-services.lvca-style5 .lvca-service .lvca-service-text .lvca-title {
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: 16px;
line-height: 26px;
margin-bottom: 10px; }
.lvca-services.lvca-style5 .lvca-service:hover .lvca-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lvca-services .lvca-service {
margin-bottom: 50px; }
.lvca-services .lvca-service .lvca-icon-wrapper span {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services .lvca-service .lvca-service-text {
font-size: 15px;
line-height: 24px; }
.lvca-dark-bg .lvca-services .lvca-service .lvca-service-text {
color: #909090; }
.lvca-dark-bg .lvca-services .lvca-service .lvca-service-text .lvca-title {
color: #e5e5e5; }.lvca-stats-bars .lvca-stats-bar {
width: 100%;
display: block;
margin: 0 0 18px;
overflow: hidden; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-title {
margin: 0;
display: block;
color: #888;
font-style: normal;
font-size: 15px;
text-transform: none;
color: #333;
font-size: 16px;
line-height: 28px; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-title span {
margin-left: 5px; }
.lvca-dark-bg .lvca-stats-bars .lvca-stats-bar .lvca-stats-title {
color: #ddd; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-wrap {
position: relative; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-content {
background: #e55a54;
display: block;
height: 10px;
width: 0;
position: relative;
z-index: 1;
border-radius: 5px; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-bg {
width: 100%;
background: rgba(0, 0, 0, 0.1);
height: 10px;
display: block;
margin-top: -10px;
border-radius: 5px; }
.lvca-dark-bg .lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-bg {
background: rgba(255, 255, 255, 0.1); }@-webkit-keyframes lvca-fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes lvca-fade {
0% {
opacity: 0; }
100% {
opacity: 1; } } .lvca-tabs {
position: relative;
overflow: hidden; }
.lvca-tabs .lvca-tab-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lvca-tabs .lvca-tab-nav .lvca-tab {
text-align: center;
-webkit-box-flex: 0;
box-flex: 0;
-moz-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto; }
.lvca-tabs .lvca-tab-nav .lvca-tab a {
display: block;
text-overflow: ellipsis;
white-space: normal;
padding: 20px 40px;
text-decoration: none;
border: none;
margin: 0;
outline: none;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-tabs .lvca-tab-nav .lvca-tab a {
padding: 20px 25px; } }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span {
font-size: 32px;
font-weight: 400;
vertical-align: middle;
margin-right: 10px; }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-image-wrapper img {
max-width: 24px;
display: inline-block;
vertical-align: middle;
height: auto;
width: auto;
padding: 0;
margin: 0 10px 0 0;
border: none; }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-tab-title {
font-size: 14px;
line-height: 1;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px; }
.lvca-tabs .lvca-tab-panes {
position: relative; }
.lvca-tabs .lvca-tab-panes .lvca-tab-pane {
padding: 40px;
display: none;
overflow: hidden; }
.lvca-tabs .lvca-tab-panes .lvca-tab-pane.lvca-active {
display: block;
-webkit-animation: lvca-fade 0.3s ease-in-out;
animation: lvca-fade 0.3s ease-in-out; } .lvca-no-flexbox .lvca-tab-nav {
display: block; }
.lvca-no-flexbox .lvca-tab-nav .lvca-tab {
min-width: 15%;
display: inline-block; } .lvca-tabs.lvca-vertical {
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.lvca-tabs.lvca-vertical .lvca-tab-nav {
-webkit-box-flex: 1;
box-flex: 1;
-moz-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lvca-tabs.lvca-vertical .lvca-tab-panes {
-webkit-box-flex: 4;
box-flex: 4;
-moz-flex: 4 1 auto;
-ms-flex: 4 1 auto;
flex: 4 1 auto; }
.lvca-tabs.lvca-vertical.lvca-mobile-layout {
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column; } .lvca-tab-mobile-menu {
display: none; position: absolute;
top: 23px;
right: 20px;
background: transparent;
border: none;
z-index: 10; }
.lvca-tab-mobile-menu i {
font-size: 18px;
color: #777;
font-weight: bold; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-mobile-menu {
display: block; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav {
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column;
cursor: pointer; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
text-align: center;
display: none; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav .lvca-tab.lvca-active {
display: block; }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open { }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open .lvca-tab-nav .lvca-tab {
display: block; }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open .lvca-tab-mobile-menu i:before {
content: '\e911'; } .lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab {
border-left: 1px solid #d9d9d9;
border-bottom: 1px solid #e2e2e2;
background: #e9e9e9; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab:first-child {
border-left-color: transparent;
border-radius: 5px 0 0 0; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab:last-child {
border-radius: 0 5px 0 0; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab.lvca-active {
border-bottom: none;
background: #f2f2f2; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a {
color: #777; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a:focus {
color: #333; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style1 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 4px 4px 4px; }
.lvca-tabs.lvca-style1.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
background: #eeeeee; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab {
border-left: none;
border-bottom-color: #d9d9d9; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab:first-child {
border-radius: 5px 5px 0 0; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab:last-child {
border-radius: 0; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab-panes {
border-radius: 0; } .lvca-tabs.lvca-style2 .lvca-tab-nav {
background: #f2f2f2;
border-radius: 5px 5px 0 0;
padding: 0 30px; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab {
padding: 20px 10px;
position: relative; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a {
display: inline-block;
padding: 5px 20px;
border-radius: 34px;
color: #666;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:focus {
color: #888; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 8px;
margin: 0 auto;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #3c3d41; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active a {
background: #838d8f;
color: #fff; }
.lvca-tabs.lvca-style2 .lvca-tab-panes {
background: #3c3d41;
border-radius: 0 0 5px 5px; }
.lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane {
color: #838d8f; }
.lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h1, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h2, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h3, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h4, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h5, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h6 {
color: #fff; }
.lvca-tabs.lvca-style2.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 27px; }
.lvca-tabs.lvca-style2.lvca-mobile-layout .lvca-tab-nav {
padding: 0; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom: 1px solid #e2e2e2; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab:last-child {
border-bottom: none; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active:after {
display: none; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active a {
background: #aaa;
color: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-bottom: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333333; } .lvca-tabs.lvca-style3 .lvca-tab-nav {
background: #3c3d41;
border-radius: 5px 5px 0 0; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab {
position: relative;
border-right: 1px solid #4e4f53; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a {
padding: 20px 30px;
border-radius: 34px;
color: #8f8e93;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:focus {
color: #ccc; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 8px;
margin: 0 auto;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #f2f2f2; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span, .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-image-wrapper img {
margin: 0 auto; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-tab-title {
display: none; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #eeeeee; }
.lvca-tabs.lvca-style3 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 0 5px 5px; }
.lvca-tabs.lvca-style3.lvca-mobile-layout .lvca-tab-nav {
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row;
padding-right: 60px; }
.lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom: 1px solid #4e4f53; }
.lvca-dark-bg .lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom-color: #e5e5e5; }
.lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active:after {
display: none; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav {
background: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab {
border-right: 1px solid #ececec; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a {
color: #969696; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-bottom: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333; } .lvca-tabs.lvca-style4 {
background: #f2f2f2;
border-radius: 5px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav {
border-bottom: 1px solid #dddddd;
margin: 0 40px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab {
position: relative;
z-index: 1;
margin-right: 20px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:last-child {
margin-right: 0; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab a {
color: #888;
padding: 30px 20px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: transparent;
-webkit-transition: background .3s ease-in-out 0s;
transition: background .3s ease-in-out 0s; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:hover a {
color: #565656; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active:before {
background: #f94213;
height: 2px; }
.lvca-tabs.lvca-style4 .lvca-tab-pane {
padding: 40px; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav {
cursor: pointer;
padding: 0;
margin: 0;
border: none; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
margin: 0;
border-bottom: 1px solid #e0e0e0; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
border-left: 1px solid #404040;
border-right: 1px solid #404040;
border-bottom-color: #404040; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab:first-child {
border-top: 1px solid #404040; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
padding: 20px 25px; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab:before {
display: none; }
.lvca-tabs.lvca-style4.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active {
border-left: 2px solid #f94213;
border-right: 2px solid #f94213; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
border-top: 1px solid #404040; }
.lvca-dark-bg .lvca-tabs.lvca-style4 {
background: transparent; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav {
margin: 0;
border-bottom: 1px solid #2a2a2a; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab a {
color: #707070; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:hover a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #e5e5e5; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane {
padding: 40px 0 0;
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style5 .lvca-tab-nav a {
padding: 20px 50px;
color: #777;
position: relative;
z-index: 1; }
.lvca-tabs.lvca-style5 .lvca-tab-nav a:after {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
background-color: #e9e9e9;
content: '';
-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
-webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
transition: background-color 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, background-color 0.3s;
transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
-webkit-transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-perspective-origin: 50% 100%;
perspective-origin: 50% 100%; }
.lvca-tabs.lvca-style5 .lvca-tab-nav a:hover, .lvca-tabs.lvca-style5 .lvca-tab-nav a:focus {
color: #333; }
.lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a:after {
background-color: #f2f2f2;
-webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
transform: perspective(900px) rotate3d(1, 0, 0, 0deg); }
.lvca-tabs.lvca-style5 .lvca-tab-panes {
background: #f2f2f2; }
.lvca-tabs.lvca-style5.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
background: #f2f2f2;
border-bottom: 1px solid #e5e5e5; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a:focus {
color: #dddddd; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; } .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab {
text-align: left; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
padding: 5px 2px;
color: #666;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
display: inline-block; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a:focus, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a:focus {
color: #333333; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab.lvca-active a, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab.lvca-active a {
border-color: #f94213;
color: #333; }
.lvca-tabs.lvca-style6 .lvca-tab-pane, .lvca-tabs.lvca-style7 .lvca-tab-pane {
padding: 40px 0 0; }
.lvca-tabs.lvca-style6 .lvca-tab-nav {
margin: 0 auto;
text-align: left; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab {
margin-right: 50px; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab:last-child {
margin-right: 0; }
.lvca-tabs.lvca-style6 .lvca-tab-pane {
padding: 40px 0 0; }
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab {
padding: 0 25px 0 0; }
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
max-width: none;
margin: 6px 0; }
@media only screen and (max-width: 479px) {
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
text-align: center; } }
.lvca-tabs.lvca-style7 .lvca-tab-panes {
-webkit-box-flex: 6;
box-flex: 6;
-moz-flex: 6 1 auto;
-ms-flex: 6 1 auto;
flex: 6 1 auto; }
.lvca-tabs.lvca-style7 .lvca-tab-panes .lvca-tab-pane {
padding: 0 0 0 20px; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-mobile-menu, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 22px; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-nav .lvca-tab, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
padding: 12px 0;
width: 100%;
text-align: center; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-nav .lvca-tab a, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
margin: 0; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-pane, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-pane {
padding: 30px 0 0; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab:hover a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab:hover a {
color: #dddddd; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab.lvca-active a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #eaeaea; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane {
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h6, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab {
margin: 2px 0; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a {
padding: 15px 30px;
border-radius: 4px;
background: #f2f2f2;
color: #777777;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-left: 3px solid transparent;
text-align: left; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a:focus {
color: #333333; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333;
border-left-color: #f94213; }
.lvca-tabs.lvca-style8 .lvca-tab-pane {
padding: 0 0 0 40px; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 18px; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
text-align: left; }
.lvca-tabs.lvca-style8.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active a {
border-color: transparent !important; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-pane {
padding: 30px 0 0; }
.lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane {
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style9 {
background: #f2f2f2;
border-radius: 5px; }
.lvca-tabs.lvca-style9 .lvca-tab-nav {
border-right: 1px solid #dddddd; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab {
border-bottom: 1px solid #d8d8d8;
background: #e9e9e9; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab.lvca-active {
margin-right: -1px;
background: #f2f2f2; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a {
padding: 20px 30px;
color: #777; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a:focus {
color: #333; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style9 .lvca-tab-panes {
-webkit-box-flex: 5;
box-flex: 5;
-moz-flex: 5 1 auto;
-ms-flex: 5 1 auto;
flex: 5 1 auto; }
.lvca-tabs.lvca-style9.lvca-mobile-layout .lvca-tab-nav {
border-right: none; }
.lvca-tabs.lvca-style9.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
background: #eeeeee;
border: none; } .lvca-tabs.lvca-style10 .lvca-tab-nav {
background: #3c3d41;
border-radius: 5px 0 0 5px; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab {
position: relative;
border-bottom: 1px solid #4e4f53;
padding: 0; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab:last-child {
border-bottom: none; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a {
padding: 20px;
color: #8f8e93;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:focus {
color: #ccc; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
top: 32px;
right: 0;
height: 8px;
margin: 0 auto;
border-top: 8px solid transparent;
border-right: 8px solid #f2f2f2;
border-bottom: 8px solid transparent; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span, .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-image-wrapper {
margin: 0 auto; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-tab-title {
display: none; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #fff; }
.lvca-tabs.lvca-style10 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 5px 5px 0; }
.lvca-tabs.lvca-style10.lvca-mobile-layout {
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row; }
.lvca-tabs.lvca-style10.lvca-mobile-layout .lvca-tab-mobile-menu {
display: none; }
.lvca-tabs.lvca-style10.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
display: block; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav {
background: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab {
border-bottom: 1px solid #ececec; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab:last-child {
border-bottom: none; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a {
color: #969696; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-right: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333; }.lvca-team-members .lvca-team-member .lvca-social-list {
margin-top: 20px; }
.lvca-team-members .lvca-team-member .lvca-social-list .lvca-social-list-item {
display: inline;
margin: 0 15px 0 0; }
.lvca-team-members .lvca-team-member .lvca-team-member-details {
font-size: 15px;
line-height: 24px; }
.lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-title {
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; }
.lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-team-member-position {
font-size: 15px;
line-height: 24px;
font-style: italic;
color: #888;
margin-bottom: 10px; } .lvca-team-members.lvca-style1 .lvca-team-member-wrapper {
float: left;
padding: 10px; }
.lvca-team-members.lvca-style1 .lvca-team-member {
max-width: 320px;
margin: 0 auto 40px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper {
text-align: center;
position: relative; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper img {
max-width: 100%;
margin: 0 auto 30px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list {
position: absolute;
height: 100%;
width: 100%;
top: 40%;
z-index: 2; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list {
position: relative;
top: 0; } }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i {
font-size: 26px;
color: #fff;
opacity: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i:hover {
color: #ccc; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i {
color: inherit;
opacity: 1; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i:hover {
color: inherit; } }
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); } }
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper .lvca-social-list i {
opacity: 1; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-team-member-text {
text-align: center;
max-width: 650px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-team-member-text .lvca-title {
margin-bottom: 10px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-social-list {
margin: 10px auto; } .lvca-team-members.lvca-style2 {
position: relative;
max-width: 960px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper {
clear: both;
margin-top: 100px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:first-child {
margin-top: 0; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-image-wrapper {
float: left;
position: relative; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-image-wrapper img {
max-width: 320px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text {
margin: 10px 0 0;
vertical-align: middle;
padding-top: 20px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-title {
margin-bottom: 5px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-team-member-details {
margin: 10px 0 10px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-social-list i {
font-size: 24px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:hover .lvca-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(odd) .lvca-image-wrapper {
margin-right: 50px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-image-wrapper {
float: right;
margin-left: 50px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-title, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-team-member-position, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-team-member-details, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-social-list {
text-align: right; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper {
margin-top: 75px; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text {
width: 100%;
float: none; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper {
text-align: center; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper img {
margin: 0 auto 20px; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text {
max-width: 400px;
margin: 0 auto;
padding-top: 0; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-title, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-team-member-position, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-team-member-details, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-social-list {
text-align: center !important; } }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-details {
color: #909090; }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-title {
color: #e5e5e5; }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-team-member-position {
color: #505050; }.lvca-testimonials .lvca-testimonial {
margin-bottom: 50px; }
.lvca-testimonials .lvca-testimonial-text {
background: #ffffff;
border: 1px solid #dbdbdb;
border-radius: 30px;
text-align: center;
position: relative;
padding: 20px;
margin-bottom: 40px;
font-style: italic;
font-size: 15px;
line-height: 24px;
color: #888;
text-align: center;
max-width: 450px; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-text {
color: #666;
background: #eee; }
.lvca-testimonials .lvca-testimonial-text:after {
content: '';
display: block;
background: #fff;
border-left: 1px solid #dbdbdb;
border-bottom: 1px solid #dbdbdb;
background: #ffffff;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: skew(0deg, -44deg);
width: 24px;
height: 24px;
position: absolute;
bottom: -12px;
left: 40px;
margin: auto; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-text:after {
background: #eee; }
.lvca-testimonials .lvca-testimonial-user {
display: table; }
.lvca-testimonials .lvca-testimonial-user .lvca-image-wrapper {
display: table-cell; }
.lvca-testimonials .lvca-testimonial-user .lvca-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 20px; }
.lvca-testimonials .lvca-testimonial-user .lvca-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-user .lvca-text {
color: #909090; }
.lvca-testimonials .lvca-testimonial-user .lvca-text .lvca-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;
color: #333; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-user .lvca-text .lvca-author-name {
color: #e5e5e5; }.lvca-flex-container a:hover,
.lvca-flex-slider a:hover {
outline: none;
}
.lvca-slides,
.lvca-slides > li,
.lvca-flex-control-nav,
.lvca-flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.lvca-flex-pauseplay span {
text-transform: capitalize;
} .lvca-flexslider {
margin: 0;
padding: 0;
}
.lvca-flexslider .lvca-slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.lvca-flexslider .lvca-slides img {
width: 100%;
display: block;
}
html[xmlns] .lvca-flexslider .lvca-slides {
display: block;
}
* html .lvca-flexslider .lvca-slides {
height: 1%;
}
.no-js .lvca-flexslider .lvca-slides > li:first-child {
display: block;
} .lvca-flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.lvca-flexslider .lvca-slides {
zoom: 1;
overflow: hidden;
}
.lvca-flexslider .lvca-slides img {
height: auto;
-moz-user-select: none;
}
.lvca-flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.loading .lvca-flex-viewport {
max-height: 300px;
}
.carousel li {
margin-right: 5px;
}
.lvca-flex-direction-nav {
*height: 0;
}
.lvca-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.lvca-flex-prev { font-size: 40px;  color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.lvca-flex-direction-nav a.lvca-flex-next:before {
content: '\f002';
}
.lvca-flex-direction-nav .lvca-flex-prev {
left: -50px;
}
.lvca-flex-direction-nav .lvca-flex-next {
right: -50px;
text-align: right;
}
.lvca-flex-direction-nav .lvca-flex-disabled {
opacity: 0!important;
filter: alpha(opacity=0);
cursor: default;
z-index: -1;
}
.lvca-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;
}
.lvca-flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: '\f004';
}
.lvca-flex-pauseplay a:hover {
opacity: 1;
}
.lvca-flex-pauseplay a.lvca-flex-play:before {
content: '\f003';
}
.lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
}
.lvca-flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.lvca-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;
}
.lvca-flex-control-paging li a:hover {
background: #333;
background: rgba(0, 0, 0, 0.7);
}
.lvca-flex-control-paging li a.lvca-flex-active {
background: #000;
background: rgba(0, 0, 0, 0.9);
cursor: default;
}
.lvca-flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.lvca-flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.lvca-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;
}
.lvca-flex-control-thumbs img:hover {
opacity: 1;
}
.lvca-flex-control-thumbs .lvca-flex-active {
opacity: 1;
cursor: default;
} @media screen and (max-width: 860px) {
.lvca-flex-direction-nav .lvca-flex-prev {
opacity: 1;
left: 10px;
}
.lvca-flex-direction-nav .lvca-flex-next {
opacity: 1;
right: 10px;
}
}.lvca-testimonials-slider {
position: relative; }
.lvca-testimonials-slider.lvca-container {
max-width: 900px;
margin: 0 auto; }
.lvca-testimonials-slider .lvca-testimonial-text {
text-align: center;
max-width: 750px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 32px;
font-style: italic;
color: #666; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-text {
color: #ccc; }
.lvca-testimonials-slider .lvca-testimonial-text i {
color: #ccc;
font-size: 32px;
display: block;
margin-bottom: 35px;
background: none;
width: auto;
height: auto; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-text i {
color: #ddd; }
.lvca-testimonials-slider .lvca-testimonial-user {
display: table;
margin: 0 auto; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-image-wrapper {
display: table-cell; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 15px; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-user .lvca-text {
color: #909090; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-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; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-author-name {
color: #e5e5e5; }

.lvca-portfolio-wrap {
clear: both;
overflow: hidden; }
.lvca-portfolio-wrap .lvca-portfolio-header {
position: relative;
max-width: 1140px;
margin: 0 auto 30px;
overflow: hidden;
clear: both;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; }
.lvca-portfolio-wrap .lvca-portfolio-header.lvca-no-heading {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-portfolio-header {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; } }
.lvca-portfolio-wrap .lvca-heading {
display: inline-block;
text-align: left;
max-width: none;
font-size: 32px;
line-height: 44px;
text-transform: uppercase;
letter-spacing: 1px;
color: #333;
margin: 0 100px 0 0; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-heading {
color: #e5e5e5; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-heading {
margin-bottom: 30px; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter {
display: block;
margin: 0;
padding: 0;
-webkit-align-self: center;
align-self: center;
-ms-flex-item-align: center; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-taxonomy-filter {
-webkit-align-self: flex-start;
align-self: flex-start;
-ms-flex-item-align: start; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item {
position: relative;
display: inline-block;
margin: 0 0 15px 0;
padding: 0;
font-style: normal;
border-bottom: 1px solid #ddd; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item {
border-color: #444; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
font-size: 15px;
line-height: 24px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
display: block;
color: #777;
padding: 0 15px 15px; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
color: #999; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a:hover {
color: #222; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a:hover {
color: #fff; }
@media only screen and (max-width: 479px) {
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
padding: 0 10px 8px; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active a {
color: #222; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active a {
color: #fff; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
border-bottom: 3px solid #f94213;
width: 100%; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item:last-child {
margin-right: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .hentry {
margin: 0;
padding: 0;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image {
position: relative;
overflow: hidden; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image img {
display: block;
width: 100%;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info {
display: block;
text-align: center; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title {
padding: 10px;
margin: 0;
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title {
font-size: 18px;
line-height: 26px; } }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title a:hover {
border-bottom: 1px solid #ccc; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms a:hover {
color: #fff; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover .lvca-image-info .lvca-post-title, .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover .lvca-image-info .lvca-terms {
opacity: 1; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 20px auto 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title {
font-size: 18px;
line-height: 26px;
font-weight: normal;
margin-bottom: 10px; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title:after, .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title:before {
display: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
color: #333; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a:hover {
color: #888; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a {
color: #e0e0e0; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a:hover {
color: #fff; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:last-child:after {
display: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span {
color: #707070; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary {
margin: 15px auto 0;
padding: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary {
color: #999; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary:before {
background: #505050; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more {
margin: 25px 0 0 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):hover {
color: #666; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):after {
margin: 0 7px 0 0; }.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}
.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}
.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-brands-400.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-regular-400.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-solid-900.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-brands-400.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-solid-900.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-regular-400.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-solid-900.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-brands-400.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-regular-400.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-v4compatibility.woff2) format("woff2"),url(//zielgaattevoet.nl/wp-content/themes/crocal/webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-twitter-square:before{content:"\f081"}.fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-square:before{content:"\f082"}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-github-square:before{content:"\f092"}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pinterest-square:before{content:"\f0d3"}.fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-square:before{content:"\f0d4"}.fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-square:before{content:"\f431"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-xing-square:before{content:"\f169"}.fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-tumblr-square:before{content:"\f174"}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo-square:before{content:"\f194"}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-google,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-reddit-square:before{content:"\f1a2"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-behance-square:before{content:"\f1b5"}.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-steam-square:before{content:"\f1b7"}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-git-square:before{content:"\f1d2"}.fa.fa-git,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lastfm-square:before{content:"\f203"}.fa.fa-angellist,.fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-creative-commons,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-odnoklassniki-square:before{content:"\f264"}.fa.fa-chrome,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-internet-explorer,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-viadeo-square:before{content:"\f2aa"}.fa.fa-snapchat,.fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-square:before{content:"\f2ad"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400}html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
} article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
html {
overflow-x: hidden;
}
body {
line-height: 1;
overflow: hidden;
}
ol, ul {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
} html {
font-size: 16px;
}
@media only screen and (max-width: 1200px) {
html {
font-size: 10px;
}
}
@media only screen and (max-width: 767px) {
html {
font-size: 8px;
}
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
.eut-stop-scrolling {
overflow-y: hidden !important;
}
p {
position: relative;
margin-bottom: 30px;
}
p:last-child {
margin-bottom: 0;
}
p:empty {
display: none;
}
p.eut-pull-left,
p.eut-pull-right {
position: relative;
width: 40%;
margin-bottom: 0;
font-size: 14px;
line-height: 30px;
opacity: 0.7;
}
p.eut-pull-left {
position: relative;
float: left;
margin-left: -30px;
padding: 30px 30px 30px 0;
}
p.eut-pull-right {
position: relative;
float: right;
margin-right: -30px;
padding: 30px 0 30px 30px;
}
@media only screen and (max-width: 767px) {
p.eut-pull-left,
p.eut-pull-right {
float: none;
margin: 0 0 30px 0;
width: 100%;
padding: 0;
}
}
p.eut-dropcap:first-letter {
float: left;
line-height: 1em !important;
padding: 0px 18px 0px 0px;
margin-bottom: 0;
}
#eut-theme-wrapper .eut-bold-text {
font-weight: 600;
} .eut-mark,
mark {
padding: 0.2em 0.4em;
background-color: rgba(216,216,216,0.4);
} a {
text-decoration: none;
outline: 0;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover,
a:focus,
a:visited {
text-decoration: none;
} .more-link {
display: block;
margin-top: 10px;
} ul {
list-style: disc;
}
ul ul {
list-style-type: circle;
}
ol {
list-style: decimal;
}
ul,
ol {
margin-bottom: 28px;
margin-left:20px;
line-height: 30px;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left:20px;
} blockquote {
margin-bottom: 30px;
position: relative;
opacity: 0.8;
}
blockquote p {
margin-bottom: 0;
}
blockquote:before {
content: '"';
position: absolute;
top: 0.2em;
left: -0.4em;
font-size: 2.5em;
}
blockquote:last-child {
margin-bottom: 0;
}
p + blockquote {
margin-top: 30px;
}
hr + blockquote {
margin-top: 30px;
}
@media only screen and (max-width: 767px) {
br.hidden {
display: none;
}
} cite,
em,
var,
address,
dfn {
font-style: italic;
}
address {
margin-bottom: 30px;
}
dl {
margin-bottom: 30px;
}
dt {
font-family: inherit;
}
dd {
padding-left: 15px;
}
.sticky {
position: relative;
}
.bypostauthor {
position: relative;
}
code,
kbd,
tt,
var,
samp,
pre {
font-family: 'Inconsolata', monospace;
-webkit-hyphens: none;
-moz-hyphens:    none;
-ms-hyphens:     none;
hyphens:         none;
}
pre {
display: block;
clear: both;
overflow: auto;
padding: 20px;
font-size: 14px;
line-height: 24px;
white-space: pre;
overflow-x: auto;
height: auto;
margin: 30px 0;
color: #525455;
background-color: #EDF0F3;
background-color: rgba(225,227,229,0.25);
}
sup{
vertical-align: super;
font-size: smaller;
}
sub{
vertical-align: sub;
font-size: smaller;
}
strong {
font-weight: bold;
}
.help {
margin-top: 30px;
margin-bottom: 60px;
} .eut-align-left {
text-align: left;
}
.eut-align-right {
text-align: right;
}
.eut-align-center {
text-align: center;
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-column.eut-tablet-align-left,
.eut-column-inner.eut-tablet-align-left {
text-align: left;
}
.eut-column.eut-tablet-align-right,
.eut-column-inner.eut-tablet-align-right {
text-align: right;
}
.eut-column.eut-tablet-align-center,
.eut-column-inner.eut-tablet-align-center {
text-align: center;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-column.eut-tablet-sm-align-left,
.eut-column-inner.eut-tablet-sm-align-left {
text-align: left;
}
.eut-column.eut-tablet-sm-align-right,
.eut-column-inner.eut-tablet-sm-align-right {
text-align: right;
}
.eut-column.eut-tablet-sm-align-center,
.eut-column-inner.eut-tablet-sm-align-center {
text-align: center;
}
} @media only screen and (max-width: 767px) {
.eut-column.eut-mobile-align-left,
.eut-column-inner.eut-mobile-align-left {
text-align: left;
}
.eut-column.eut-mobile-align-right,
.eut-column-inner.eut-mobile-align-right {
text-align: right;
}
.eut-column.eut-mobile-align-center,
.eut-column-inner.eut-mobile-align-center {
text-align: center;
}
}
.alignleft,
img.alignleft {
float: left;
margin-right: 20px;
}
.alignright,
img.alignright {
float: right;
margin-left: 20px;
}
.aligncenter,
img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
}
img.eut-pull-left {
float: left;
margin-left: -30px;
padding: 15px 0;
}
img.eut-pull-right {
float: right;
margin-right: -30px;
padding: 15px 0;
}
#eut-content .alignfull,
#eut-content .alignwide {
margin-left  : calc( -100vw / 2 + 100% / 2 );
margin-right : calc( -100vw / 2 + 100% / 2 );
max-width    : 100vw;
width: auto;
}
@media only screen and ( min-width: 1024px ) {
#eut-content .alignwide {
margin-left  : -12%;
margin-right : -12%;
max-width    : none;
}
#eut-content.eut-left-sidebar .alignwide {
margin-left  : 0;
margin-right : -12%;
}
#eut-content.eut-right-sidebar .alignwide {
margin-left  : -12%;
margin-right : 0;
}
#eut-content.eut-left-sidebar .alignfull {
margin-left  : 0;
margin-right : calc( -100vw / 2 + 100% / 2 );
}
#eut-content.eut-right-sidebar .alignfull {
margin-left  : calc( -100vw / 2 + 100% / 2 );
margin-right : 0;
}
} .input-text,
input[type="text"],
input[type="input"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="url"],
input[type="tel"],
input[type="search"],
textarea,
select {
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
position: relative;
z-index: 2;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus {
outline: none;
}
fieldset {
}
legend {
white-space: normal;
} input[type=submit] {
-webkit-appearance: none;
}
input[type="submit"],
.eut-btn {
display: inline-block;
border: none;
cursor: pointer;
} table {
width: 100%;
margin-bottom: 30px;
border: 1px solid;
border-collapse: collapse;
cursor: default;
}
tr {
-webkit-transition: background-color 0.2s ease;
transition: background-color 0.2s ease;
border-bottom: 1px solid;
}
td,
th {
padding: 10px 20px 10px 20px;
line-height: 1.5;
border-right: 1px solid;
text-align: center;
}
th:last-child {
border: none;
} img {
-ms-interpolation-mode: bicubic;
border: 0;
max-width: 100%;
height: auto;
}
.comment-content img,
.entry-content img,
.entry-summary img,
.widget img,
.wp-caption {
max-width: 100%;
} .comment-content img[height],
.entry-content img,
.entry-summary img,
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
height: auto;
display: block;
}
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
.wp-post-image,
.post-thumbnail img {
height: auto;
max-width: 100%;
} embed,
iframe,
object,
video {
max-width: 100%;
display: block;
}
p > embed,
p > iframe,
p > object,
span > embed,
span > iframe,
span > object {
margin-bottom: 0;
} .wp-caption {
margin-bottom: 24px;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 0;
}
.wp-caption-text {
display: block;
font-size: 0.8em;
font-style: italic;
margin: 12px auto 0 auto;
text-align: left;
line-height: 1.5;
margin-bottom: 30px;
}
.wp-smiley {
margin: 0 !important;
max-height: 1em;
} .gallery {
margin: 0 -15px !important;
}
.gallery dl {
margin-top: 0 !important;
}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {
width: 100%;
max-width: 100%;
height: auto;
max-height: 100%;
padding: 0 15px;
border: none !important;
}
.gallery-caption {
padding-top: 6px;
padding-left: 15px;
padding-right: 15px;
} .eut-hidden {
display: none;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
}
.screen-reader-text:focus {
clip: auto !important;
display: block;
height: auto;
left: 5px;
top: 5px;
width: auto;
z-index: 100000; } .eut-vertical-top {
vertical-align: top;
}
.eut-vertical-middle {
vertical-align: middle;
}
.eut-vertical-bottom {
vertical-align: bottom;
}
.eut-float-left {
float: left;
}
.eut-float-right {
float: right;
}
.eut-float-none {
float: none;
} .eut-position-left {
float: left;
}
.eut-position-right {
float: right;
}
.eut-position-center {
float: left;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
text-align: center;
z-index: 1;
}
.eut-position-center .eut-wrapper {
display: inline-block;
vertical-align: top;
}
.eut-rotate-90 {
-webkit-transform-origin: 100% 0%;
transform-origin: 100% 0%;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
} .eut-with-scroll {
overflow-y: hidden;
} .eut-margin-top-none {
margin-top: 0;
}
.eut-margin-bottom-none {
margin-bottom: 0;
}
.eut-margin-top-sm {
margin-top: 2.500rem;
}
.eut-margin-bottom-sm {
margin-bottom: 2.500rem;
}
.eut-margin-top-md {
margin-top: 5.000rem;
}
.eut-margin-bottom-md {
margin-bottom: 5.000rem;
}
.eut-padding-none {
padding: 0;
}
.eut-padding-top-sm {
padding-top: 2.500rem;
}
.eut-padding-bottom-sm {
padding-bottom: 2.500rem;
}
.eut-padding-top-md {
padding-top: 5.000rem;
}
.eut-padding-bottom-md {
padding-bottom: 5.000rem;
} .eut-border-top {
border-top: 1px solid;
}
.eut-border-bottom {
border-bottom: 1px solid;
}
.eut-border-left {
border-left: 1px solid;
}
.eut-border-right {
border-right: 1px solid;
} .eut-hover-underline {
position: relative;
}
.eut-hover-underline:after {
content: '';
position: absolute;
bottom: -3px;
left: 50%;
width: 0;
height: 2px;
visibility: hidden;
-webkit-transform: translateX(-50%);
-moz-transform:    translateX(-50%);
-ms-transform:     translateX(-50%);
-o-transform:      translateX(-50%);
transform:         translateX(-50%);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
background-color: #000000;
}
.eut-hover-underline:hover:after {
visibility: visible;
width: 100%;
}
#eut-theme-wrapper .eut-small-shadow {
-webkit-box-shadow: 0 25px 60px -20px rgba(0,0,0,.25);
-moz-box-shadow: 0 25px 60px -20px rgba(0,0,0,.25);
box-shadow: 0 25px 60px -20px rgba(0,0,0,.25);
}
#eut-theme-wrapper .eut-medium-shadow {
-webkit-box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
-moz-box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
}
#eut-theme-wrapper .eut-large-shadow {
-webkit-box-shadow: 0 60px 100px -30px rgba(0,0,0,.25);
-moz-box-shadow: 0 60px 100px -30px rgba(0,0,0,.25);
box-shadow: 0 60px 100px -30px rgba(0,0,0,.25);
} .eut-with-shadow {
-webkit-transition : box-shadow 0.3s ease-in-out;
-moz-transition    : box-shadow 0.3s ease-in-out;
-ms-transition     : box-shadow 0.3s ease-in-out;
-o-transition      : box-shadow 0.3s ease-in-out;
transition         : box-shadow 0.3s ease-in-out;
}
#eut-theme-wrapper .eut-clipping-animation .eut-with-shadow {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.eut-section.eut-small-shadow,
.eut-section.eut-medium-shadow,
.eut-section.eut-large-shadow {
z-index: 10;
} h1,h2,h3,h4,h5,h6,
.eut-h1,
.eut-h2,
.eut-h3,
.eut-h4,
.eut-h5,
.eut-h6,
.eut-subtitle-text {
margin-bottom: 18px;
}
h1, .eut-h1,
h2, .eut-h2 {
margin-bottom: 18px;
}
h3, .eut-h3,
h4, .eut-h4 {
margin-bottom: 15px;
}
h5, .eut-h5,
h6, .eut-h6 {
margin-bottom: 10px;
}
.eut-subtitle {
margin-bottom: 8px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.eut-h1:last-child,
.eut-h2:last-child,
.eut-h3:last-child,
.eut-h4:last-child,
.eut-h5:last-child,
.eut-h6:last-child,
.eut-subtitle:last-child,
.eut-subtitle-text:last-child {
margin-bottom: 0px;
}
.eut-small-title {
font-size: 18px;
line-height: 24px;
}
.eut-small-text {
line-height: 1.2;
}
.eut-list-divider {
font-size: 0;
}
.eut-list-divider li {
margin: 0 !important;
display: inline-block;
vertical-align: middle;
}
.eut-list-divider li:after {
content: '/';
margin: 0 0.455em;
opacity: 0.5;
}
.eut-list-divider li:last-child:after {
display: none;
} .eut-thumbnail-wrapper {
position: relative;
width: 100%;
}
.eut-align-center .eut-thumbnail-wrapper {
margin-left: auto;
margin-right: auto;
}
.eut-align-right .eut-thumbnail-wrapper {
margin-left: auto;
}
.eut-thumbnail-wrapper .eut-thumbnail {
position: relative;
overflow: hidden;
display: block;
}
.eut-thumbnail-wrapper img {
position: absolute !important;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
min-height: 100%;
}
img.eut-lazy-load {
opacity: 0;
-webkit-transition : opacity .4s;
-moz-transition    : opacity .4s;
-ms-transition     : opacity .4s;
-o-transition      : opacity .4s;
transition         : opacity .4s;
}
img.lazyload {
opacity: 0;
}
img.lazyloaded {
opacity: 1;
}
.eut-blog-item .eut-thumbnail,
.eut-post-item .eut-thumbnail,
.eut-portfolio-item .eut-thumbnail {
background-color: rgba(145,145,145,0.1);
} .eut-increase-heading > span,
.eut-increase-heading .eut-clipping-content > span,
.eut-increase-heading .eut-appear-content > span {
line-height: 1.200em;
}
.eut-increase-heading.eut-heading-120 > span,
.eut-increase-heading.eut-heading-120 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-120 .eut-appear-content > span {
font-size: 120%;
}
.eut-increase-heading.eut-heading-140 > span,
.eut-increase-heading.eut-heading-140 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-140 .eut-appear-content > span {
font-size: 140%;
}
.eut-increase-heading.eut-heading-160 > span,
.eut-increase-heading.eut-heading-160 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-160 .eut-appear-content > span {
font-size: 160%;
}
.eut-increase-heading.eut-heading-180 > span,
.eut-increase-heading.eut-heading-180 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-180 .eut-appear-content > span {
font-size: 180%;
}
.eut-increase-heading.eut-heading-200 > span,
.eut-increase-heading.eut-heading-200 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-200 .eut-appear-content > span {
font-size: 200%;
}
.eut-increase-heading.eut-heading-250 > span,
.eut-increase-heading.eut-heading-250 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-250 .eut-appear-content > span {
font-size: 250%;
}
.eut-increase-heading.eut-heading-300 > span,
.eut-increase-heading.eut-heading-300 .eut-clipping-content > span,
.eut-increase-heading.eut-heading-300 .eut-appear-content > span {
font-size: 300%;
} @media only screen and (min-width: 1201px) and (max-width: 1440px) {
.eut-increase-heading.eut-desktop-sm-reset-increase-heading > span,
.eut-increase-heading.eut-desktop-sm-reset-increase-heading .eut-clipping-content > span,
.eut-increase-heading.eut-desktop-sm-reset-increase-heading .eut-appear-content > span {
line-height: inherit;
font-size: inherit;
}
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-increase-heading.eut-tablet-reset-increase-heading > span,
.eut-increase-heading.eut-tablet-reset-increase-heading .eut-clipping-content > span,
.eut-increase-heading.eut-tablet-reset-increase-heading .eut-appear-content > span {
line-height: inherit;
font-size: inherit;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-increase-heading.eut-tablet-sm-reset-increase-heading > span,
.eut-increase-heading.eut-tablet-sm-reset-increase-heading .eut-clipping-content > span,
.eut-increase-heading.eut-tablet-sm-reset-increase-heading .eut-appear-content > span {
line-height: inherit;
font-size: inherit;
}
} @media screen and (max-width: 767px) {
.eut-increase-heading.eut-mobile-reset-increase-heading > span,
.eut-increase-heading.eut-mobile-reset-increase-heading .eut-clipping-content > span,
.eut-increase-heading.eut-mobile-reset-increase-heading .eut-appear-content > span {
line-height: inherit;
font-size: inherit;
}
} input[type="text"],
input[type="input"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="date"],
textarea,
select,
#eut-theme-wrapper .select2-choice,
#eut-theme-wrapper .select2-selection {
-webkit-appearance: none;
-moz-appearance:    none;
border: 1px solid;
padding: 0 18px;
outline: none;
color: inherit;
margin: 0;
width: 100%;
font-size: 13px;
margin-bottom: 18px;
font-family: inherit;
background: transparent;
border-radius: 0;
border-color: inherit;
height: auto;
min-height: 44px;
line-height: 1;
display: block;
}
textarea {
padding: 18px;
}
#eut-theme-wrapper .select2-choice,
#eut-theme-wrapper .select2-selection {
margin-bottom: 0;
}
#eut-theme-wrapper .select2-selection .select2-selection__arrow {
top: 50%;
margin-top: -13px;
}
#eut-theme-wrapper input[type="number"] {
-moz-appearance:textfield;
}
#eut-theme-wrapper input::-webkit-outer-spin-button,
#eut-theme-wrapper input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus {
color: inherit;
} ::-webkit-inner-spin-button {
display: none;
}
#eut-theme-wrapper .select2-choice {
padding: 10px 14px;
}
::-webkit-input-placeholder {
color: inherit;
}
:-moz-placeholder { color: inherit;
}
::-moz-placeholder { color: inherit;
}
:-ms-input-placeholder {
color: inherit;
}
#eut-theme-wrapper select  {
background-image: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/graphics/select-icon.png);
background-position: center right;
background-repeat: no-repeat;
text-indent: 0;
height: 44px;
}
#eut-theme-wrapper select option {
color: #000000;
}
#eut-theme-wrapper select[multiple] {
background-image: none;
}
#eut-theme-wrapper .select2-selection__rendered {
line-height: 44px;
padding: 0;
} .eut-search {
position: relative;
display: block;
max-width: 430px;
margin: 0 auto;
}
#eut-theme-wrapper .eut-search input[type='text'] {
width: 100%;
height: 50px;
padding-right: 50px;
margin-bottom: 0;
}
#eut-theme-wrapper .eut-search button[type='submit'] {
width: 38px;
height: 38px;
line-height: 38px;
font-size: 18px;
position: absolute;
border: none;
top: 4px;
right: 6px;
padding: 0;
cursor: pointer;
z-index: 3;
outline: 0;
margin-top: 2px;
background-color: transparent;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-theme-wrapper .eut-search button[type='submit'] i {
font-size: inherit;
line-height: inherit;
} #eut-top-bar {
position: relative;
width: 100%;
top: 0;
z-index: 9999;
} #eut-top-bar.eut-sticky-topbar.eut-fixed .eut-wrapper {
position: fixed;
width: 100%;
top: 0;
z-index: 9999;
} @media only screen and (max-width: 1023px) {
#eut-top-bar.eut-device-sticky-topbar.eut-fixed .eut-top-bar-wrapper {
position: fixed;
}
}
#eut-top-bar ul {
margin: 0;
list-style: none;
line-height: 1.2;
}
#eut-top-bar ul p {
font-size: 13px;
line-height: 1.2;
}
#eut-top-bar .eut-top-bar-menu {
font-size: 10px;
}
#eut-top-bar ul.eut-left-side {
float: left;
text-align: left;
width: 50%;
}
#eut-top-bar ul.eut-right-side {
float: right;
text-align: right;
width: 50%;
}
#eut-top-bar ul li.eut-topbar-item,
#eut-top-bar ul li.eut-topbar-item li,
#eut-top-bar ul li.eut-topbar-item > a {
display: inline-block;
vertical-align: middle;
}
#eut-top-bar ul.eut-left-side li.eut-topbar-item {
margin-right: 15px;
}
#eut-top-bar ul.eut-left-side li.eut-topbar-item ul li {
margin-right: 15px;
}
#eut-top-bar ul.eut-left-side li.eut-topbar-item:last-child,
#eut-top-bar ul.eut-left-side li.eut-topbar-item ul li:last-child {
margin-right: 0;
}
#eut-top-bar ul.eut-right-side li.eut-topbar-item {
margin-left: 15px;
}
#eut-top-bar ul.eut-right-side li.eut-topbar-item ul li {
margin-left: 15px;
}
#eut-top-bar ul.eut-right-side li.eut-topbar-item:first-child,
#eut-top-bar ul.eut-right-side li.eut-topbar-item ul li:first-child {
margin-left: 0;
}
#eut-top-bar.eut-fullwidth .eut-container {
padding-left: 30px;
padding-right: 30px;
} #eut-top-bar .eut-language > li {
position: relative;
font-size: 12px;
}
#eut-top-bar .eut-language-style-dropdown li {
margin: 0 !important;
}
#eut-top-bar .eut-language > li > ul {
position: absolute;
z-index: 5;
min-width: 160px;
padding: 10px 0;
top: 100%;
-webkit-box-shadow: 0 25px 60px -20px rgba(0,0,0,.25);
-moz-box-shadow: 0 25px 60px -20px rgba(0,0,0,.25);
box-shadow: 0 25px 60px -20px rgba(0,0,0,.25);
-webkit-animation-duration: .5s;
-moz-animation-duration: .5s;
-o-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: menu_animation;
-moz-animation-name: menu_animation;
-o-animation-name: menu_animation;
animation-name: menu_animation;
display: none;
}
@-webkit-keyframes menu_animation {
from {
opacity: 0;
}
50% {
opacity: 1;
}
}
@keyframes menu_animation {
from {
opacity: 0;
}
50% {
opacity: 1;
}
}
#eut-top-bar .eut-language > li:hover > ul {
display: block;
}
#eut-top-bar .eut-left-side .eut-language > li > ul {
left: -15px;
}
#eut-top-bar .eut-right-side .eut-language > li > ul {
right: -15px;
}
#eut-top-bar .eut-language img,
#eut-top-bar .eut-language span {
vertical-align: middle;
display: inline-block;
}
#eut-top-bar .eut-language img {
margin-right: 5px;
margin-top: -4px;
}
#eut-top-bar .eut-language > li > ul li {
display: block;
}
#eut-top-bar .eut-language > li > ul li a {
display: block;
padding: 15px;
} #eut-top-bar .eut-top-bar-menu li {
position: relative;
}
#eut-top-bar .eut-top-bar-menu ul.sub-menu {
position: absolute;
z-index: 5;
min-width: 180px;
padding: 10px 0;
top: 100%;
-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.20);
box-shadow: 0px 0px 5px rgba(0,0,0,0.20);
-webkit-animation-duration: .15s;
-moz-animation-duration: .15s;
-o-animation-duration: .15s;
animation-duration: .15s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: menu_animation;
-moz-animation-name: menu_animation;
-o-animation-name: menu_animation;
animation-name: menu_animation;
display: none;
}
#eut-top-bar .eut-top-bar-menu > ul > li:hover > ul.sub-menu {
display: block;
}
#eut-top-bar .eut-left-side .eut-top-bar-menu ul.sub-menu {
left: -15px;
}
#eut-top-bar .eut-right-side .eut-top-bar-menu ul.sub-menu {
right: -15px;
}
#eut-top-bar .eut-top-bar-menu ul.sub-menu li {
display: block;
}
#eut-top-bar .eut-top-bar-menu ul.sub-menu li:after {
display: none;
}
#eut-top-bar .eut-top-bar-menu ul.sub-menu li a {
display: block;
padding: 15px;
}
@media only screen and (max-width: 767px) {
#eut-top-bar ul.eut-left-side,
#eut-top-bar ul.eut-right-side {
float: none;
width: auto;
text-align: center;
}
#eut-top-bar ul li.eut-topbar-item + li.eut-topbar-item {
margin-top: 5px;
}
} #eut-header {
position: relative;
z-index: 9998;
} #eut-header.eut-fullwidth #eut-main-header:not(.eut-side-default) .eut-container,
#eut-header.eut-fullwidth #eut-responsive-header .eut-container {
padding-left: 1.875rem;
padding-right: 1.563rem;
}
#eut-header.eut-fullwidth #eut-main-header.eut-header-default .eut-container {
position: static;
}
@media only screen and (max-width: 1200px) {
#eut-main-header.eut-header-default .eut-container {
position: static;
}
}
#eut-main-header {
width: 100%;
top: 0;
left: auto;
position: relative;
z-index: 4;
border-bottom: 1px solid;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
#eut-header.eut-header-below #eut-main-header,
#eut-header.eut-header-below #eut-main-header .eut-header-elements {
border: none;
}
#eut-bottom-header {
border-top: 1px solid;
width: 100%;
top: 0;
left: auto;
position: relative;
z-index: 4;
} #eut-responsive-header {
display: none;
}
#eut-responsive-header #eut-main-responsive-header {
width: 100%;
top: 0;
left: auto;
position: relative;
z-index: 1000;
} #eut-header.eut-advanced-hidden-menu #eut-main-header {
-webkit-transition : background-color .7s, border-color .7s;
-moz-transition    : background-color .7s, border-color .7s;
-ms-transition     : background-color .7s, border-color .7s;
-o-transition      : background-color .7s, border-color .7s;
transition         : background-color .7s, border-color .7s;
}
#eut-header.eut-header-hover #eut-main-header .eut-logo .eut-wrapper img.eut-light,
#eut-header.eut-header-hover #eut-main-header .eut-logo .eut-wrapper img.eut-dark {
display: none;
}
#eut-header.eut-header-hover #eut-main-header .eut-logo .eut-wrapper img.eut-default {
display: block;
} #eut-header.eut-header-hover #eut-main-header .eut-hidden-menu-btn a .eut-item span:nth-child(1) {
-webkit-transform: rotate(45deg);
-moz-transform:    rotate(45deg);
-ms-transform:     rotate(45deg);
-o-transform:      rotate(45deg);
transform:         rotate(45deg);
top: 50%;
}
#eut-header.eut-header-hover #eut-main-header .eut-hidden-menu-btn a .eut-item span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform:    rotate(-45deg);
-ms-transform:     rotate(-45deg);
-o-transform:      rotate(-45deg);
transform:         rotate(-45deg);
top: 50%;
}
#eut-header.eut-header-hover #eut-main-header .eut-hidden-menu-btn a .eut-item span:nth-child(2) {
opacity: 0;
visibility: hidden;
} #eut-header.eut-advanced-hidden-menu #eut-main-header {
overflow: hidden;
}
#eut-header.eut-advanced-hidden-menu.eut-open-menu #eut-main-header {
overflow: visible;
}
#eut-header.eut-advanced-hidden-menu #eut-main-header #eut-main-menu .eut-first-level > a {
visibility: hidden;
}
#eut-header.eut-advanced-hidden-menu #eut-main-header #eut-main-menu .eut-first-level.show > a {
visibility: visible;
}
#eut-header.eut-advanced-hidden-menu #eut-main-header #eut-main-menu .eut-first-level > a .eut-item {
visibility: hidden;
opacity: 0;
-webkit-transition : opacity .7s, visibility .7s;
-moz-transition    : opacity .7s, visibility .7s;
-ms-transition     : opacity .7s, visibility .7s;
-o-transition      : opacity .7s, visibility .7s;
transition         : opacity .7s, visibility .7s;
}
#eut-header.eut-advanced-hidden-menu #eut-main-header #eut-main-menu .eut-first-level.show > a .eut-item {
visibility: visible;
opacity: 1;
} #eut-header.eut-advanced-hidden-menu #eut-main-header .eut-header-elements-wrapper {
opacity: 0;
visibility: hidden;
-webkit-transition : all .7s;
-moz-transition    : all .7s;
-ms-transition     : all .7s;
-o-transition      : all .7s;
transition         : all .7s;
}
#eut-header.eut-advanced-hidden-menu #eut-main-header .eut-header-elements-wrapper.show {
opacity: 1;
visibility: visible;
-webkit-transition-delay: .1s;
-moz-transition-delay:    .1s;
-ms-transition-delay:     .1s;
-o-transition-delay:      .1s;
transition-delay:         .1s;
} #eut-header.eut-fixed #eut-main-header.eut-header-default,
#eut-header.eut-fixed #eut-main-header.eut-header-logo-top #eut-bottom-header {
position: fixed;
}
#eut-responsive-header.eut-fixed #eut-main-responsive-header {
position: fixed;
}
.eut-body.eut-boxed #eut-responsive-header.eut-fixed #eut-main-responsive-header {
max-width: 90%;
} body.admin-bar #eut-header.eut-fixed #eut-main-header.eut-header-default,
body.admin-bar #eut-header.eut-fixed #eut-main-header.eut-header-logo-top #eut-bottom-header {
top: 32px;
} #eut-header #eut-main-header .eut-logo,
#eut-header #eut-main-header .eut-logo-text a,
#eut-header #eut-main-menu .eut-wrapper > ul > li > a,
#eut-header .eut-header-element > a,
.eut-no-assigned-menu {
-webkit-transition : height, background, color, border, line-height;
-moz-transition    : height, background, color, border, line-height;
-ms-transition     : height, background, color, border, line-height;
-o-transition      : height, background, color, border, line-height;
transition         : height, background, color, border, line-height;
-webkit-transition-duration : 500ms;
-moz-transition-duration    : 500ms;
-ms-transition-duration     : 500ms;
-o-transition-duration      : 500ms;
transition-duration         : 500ms;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
} #eut-header #eut-main-header.eut-simple-sticky.eut-header-default,
#eut-header #eut-main-header.eut-simple-sticky #eut-bottom-header {
-webkit-transition : background, border;
-moz-transition    : background, border;
-ms-transition     : background, border;
-o-transition      : background, border;
transition         : background, border;
-webkit-transition-duration : 500ms;
-moz-transition-duration    : 500ms;
-ms-transition-duration     : 500ms;
-o-transition-duration      : 500ms;
transition-duration         : 500ms;
} #eut-header #eut-main-header.eut-shrink-sticky.eut-header-default,
#eut-header #eut-main-header.eut-shrink-sticky.eut-header-logo-top,
#eut-header #eut-main-header.eut-shrink-sticky #eut-bottom-header {
-webkit-transition : height, background, border, line-height;
-moz-transition    : height, background, border, line-height;
-ms-transition     : height, background, border, line-height;
-o-transition      : height, background, border, line-height;
transition         : height, background, border, line-height;
-webkit-transition-duration : 500ms;
-moz-transition-duration    : 500ms;
-ms-transition-duration     : 500ms;
-o-transition-duration      : 500ms;
transition-duration         : 500ms;
} #eut-header #eut-main-header.eut-scrollup-sticky .eut-logo,
#eut-header .eut-scrollup-sticky #eut-main-menu .eut-wrapper > ul > li > a,
#eut-header .eut-scrollup-sticky .eut-header-element > a,
.eut-scrollup-sticky .eut-no-assigned-menu {
-webkit-transition : none;
-moz-transition    : none;
-ms-transition     : none;
-o-transition      : none;
transition         : none;
}
#eut-header.eut-scroll-up #eut-main-header.eut-scrollup-sticky.eut-header-default,
#eut-header.eut-scroll-down #eut-main-header.eut-scrollup-sticky.eut-header-default,
#eut-header.eut-scroll-up #eut-main-header.eut-scrollup-sticky #eut-bottom-header,
#eut-header.eut-scroll-down #eut-main-header.eut-scrollup-sticky #eut-bottom-header {
-webkit-transition : -webkit-transform;
-moz-transition    : -moz-transform;
-ms-transition     : -ms-transform;
-o-transition      : -o-transform;
transition         : transform;
-webkit-transition-duration : 500ms;
-moz-transition-duration    : 500ms;
-ms-transition-duration     : 500ms;
-o-transition-duration      : 500ms;
transition-duration         : 500ms;
} @media only screen and (min-width: 960px) {
#eut-theme-wrapper.eut-header-side .eut-container,
#eut-theme-wrapper.eut-header-side #eut-content.eut-left-sidebar .eut-content-wrapper,
#eut-theme-wrapper.eut-header-side #eut-content.eut-right-sidebar .eut-content-wrapper {
width: 90%;
max-width: 1170px;
}
}
#eut-theme-wrapper.eut-header-side .eut-header-element {
float: none;
display: inline-block;
}
#eut-main-header.eut-header-side {
position: fixed;
width: 280px;
top: 0;
left: 0;
height: 100%;
z-index: 100;
overflow: hidden;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-body:not(.rtl) #eut-main-header.eut-header-side {
left: 0;
}
#eut-main-header.eut-header-side .eut-main-header-wrapper {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 95%;
height: calc(100% - 120px);
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
z-index: 5;
}
#eut-main-header.eut-header-side .eut-wrapper {
position: relative;
z-index: 5;
} #eut-main-header.eut-header-side .eut-logo {
float: none;
}
#eut-main-header.eut-header-side .eut-logo .eut-wrapper {
position: relative;
display: inline-block;
}
#eut-main-header.eut-header-side .eut-logo.eut-position-left {
float: none;
text-align: left;
}
#eut-main-header.eut-header-side .eut-logo.eut-position-right {
float: none;
text-align: right;
}
#eut-main-header.eut-header-side .eut-logo.eut-position-center {
position: relative;
height: auto;
z-index: 10
} .eut-body.eut-boxed:not(.rtl) #eut-theme-wrapper.eut-header-side #eut-main-header.eut-header-side {
left: auto;
margin-left: -280px;
}
.eut-body.eut-boxed #eut-theme-wrapper.eut-header-side .eut-container {
max-width: 80%;
}
#eut-main-header.eut-header-side .eut-content {
position: relative;
}
#eut-main-header.eut-header-side .eut-header-elements-wrapper {
position: absolute;
left: 0;
right: 0;
bottom: 0;
min-height: 100px;
z-index: 5;
}
#eut-main-header.eut-header-side .eut-header-elements {
display: block;
overflow: hidden;
border-top: 1px solid;
border-left: none;
margin: 0;
padding: 15px 0;
}
#eut-main-header.eut-header-side .eut-header-element > a {
padding: 0 0.625rem;
}
#eut-main-header.eut-header-side li.eut-header-element {
height: 25px;
line-height: 25px;
}  .eut-logo {
display: block;
position: relative;
z-index: 2;
overflow: hidden;
}
.eut-logo.eut-logo-text {
overflow: visible;
}
.eut-logo.eut-position-center {
position: absolute;
z-index: 0;
}
.eut-shrink .eut-header-logo-top .eut-logo.eut-position-center a img {
margin: 0 auto;
}
.eut-shrink .eut-header-logo-top .eut-logo.eut-position-right a img {
margin: 0 0 0 auto;
}
.eut-logo .eut-wrapper {
position: relative;
top: 50%;
}
.eut-logo .eut-wrapper a {
position: relative;
display: block;
}
.eut-logo .eut-wrapper img {
display: block;
position: relative;
height: 100%;
top: -50%;
width: auto !important;
max-width: none;
} #eut-main-header.eut-header-side .eut-logo .eut-wrapper,
#eut-main-header.eut-header-side .eut-logo .eut-wrapper img {
top: 0px;
}
.eut-logo .eut-wrapper img.eut-light,
.eut-logo .eut-wrapper img.eut-dark,
.eut-logo .eut-wrapper img.eut-sticky {
display: none;
} #eut-main-header.eut-light .eut-logo .eut-wrapper img.eut-light {
display: block;
}
#eut-main-header.eut-light .eut-logo .eut-wrapper img.eut-default,
#eut-main-header.eut-light .eut-logo .eut-wrapper img.eut-dark {
display: none;
} #eut-main-header.eut-dark .eut-logo .eut-wrapper img.eut-dark {
display: block;
}
#eut-main-header.eut-dark .eut-logo .eut-wrapper img.eut-default,
#eut-main-header.eut-dark .eut-logo .eut-wrapper img.eut-light {
display: none;
} #eut-header.eut-sticky-header #eut-main-header:not(.eut-header-logo-top) .eut-logo .eut-wrapper img.eut-sticky {
display: block;
}
#eut-header.eut-sticky-header #eut-main-header:not(.eut-header-logo-top) .eut-logo .eut-wrapper img.eut-default,
#eut-header.eut-sticky-header #eut-main-header:not(.eut-header-logo-top) .eut-logo .eut-wrapper img.eut-light,
#eut-header.eut-sticky-header #eut-main-header:not(.eut-header-logo-top) .eut-logo .eut-wrapper img.eut-dark {
display: none;
}
#eut-header #eut-main-header.eut-header-logo-top .eut-logo .eut-wrapper img.eut-sticky {
display: none;
} #eut-header .eut-main-menu ul {
list-style: none;
list-style: none outside none;
margin: 0;
}
#eut-header .eut-main-menu ul li {
position: relative;
}
#eut-header .eut-horizontal-menu ul.eut-menu li:hover > ul,
#eut-header .eut-horizontal-menu ul.eut-menu li.sfHover > ul {
display: block;
}
#eut-header .eut-horizontal-menu ul.eut-menu a {
display: block;
position: relative;
} #eut-header .eut-horizontal-menu ul.eut-menu > li {
float: left;
}
#eut-main-header.eut-header-default .eut-horizontal-menu.eut-menu-type-classic .eut-first-level > a .eut-item,
#eut-main-header.eut-header-default .eut-horizontal-menu.eut-menu-type-advanced-hidden .eut-first-level > a .eut-item {
position: relative;
}
#eut-header .eut-horizontal-menu ul.eut-menu ul {
position: absolute;
display: none;
top: 100%;
left: 0;
z-index: 99;
}
#eut-header .eut-horizontal-menu ul.eut-menu > li > a {
padding: 0px 0.313em 0px 0.313em;
margin: 0px 0.313em 0px 0.313em;
text-decoration: none;
zoom: 1; } #eut-header .eut-horizontal-menu.eut-position-left ul.eut-menu > li > a {
padding: 0px 0.313em 0px 0.313em;
margin: 0px 0.625em 0px 0px;
}
#eut-header .eut-horizontal-menu.eut-position-left ul.eut-menu > li:first-child-child > a {
padding: 0px 0.313em 0px 0px;
}
#eut-header .eut-horizontal-menu.eut-position-right ul.eut-menu > li > a {
padding: 0px 0.313em 0px 0.313em;
margin: 0px 0px 0px 0.625em;
}
#eut-header .eut-horizontal-menu.eut-position-right ul.eut-menu > li:last-child > a {
padding: 0px 0px 0px 0.313em;
}
#eut-header:not(.eut-header-logo-center) #eut-main-header.eut-header-default .eut-horizontal-menu.eut-position-left,
#eut-header:not(.eut-header-logo-center).eut-sticky-header .eut-horizontal-menu.eut-position-left {
margin-left: 30px;
}
#eut-header .eut-horizontal-menu ul.eut-menu li {
-webkit-transition : color .3s;
-moz-transition    : color .3s;
-ms-transition     : color .3s;
-o-transition      : color .3s;
transition         : color .3s;
}
#eut-header .eut-horizontal-menu ul.eut-menu li:hover,
#eut-header .eut-horizontal-menu ul.eut-menu li.sfHover {
-webkit-transition : none;
-moz-transition    : none;
-ms-transition     : none;
-o-transition      : none;
transition         : none;
} #eut-header .eut-horizontal-menu ul.eut-menu ul.sub-menu {
text-align: left;
width: 250px;
padding: 15px 0;
-webkit-box-shadow: 0 40px 90px -10px rgba(0,0,0,.2);
-moz-box-shadow: 0 40px 90px -10px rgba(0,0,0,.2);
box-shadow: 0 40px 90px -10px rgba(0,0,0,.2);
}
#eut-header .eut-horizontal-menu ul.eut-menu ul ul {
top: -14px;
left: 100%;
margin-left: 2px;
} #eut-header .eut-horizontal-menu ul.eut-menu li.eut-invert ul {
left: auto;
right: 100%;
margin-right: 2px;
margin-left: 0;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.eut-first-level.eut-invert > ul {
left: auto;
right: 0;
margin-right: 2px;
margin-left: 0;
}
#eut-header .eut-horizontal-menu ul.eut-menu ul.sub-menu li {
margin-bottom: 8px;
}
#eut-header .eut-horizontal-menu ul.eut-menu ul.sub-menu li:last-child {
margin-bottom: 0;
}
#eut-header .eut-horizontal-menu ul.eut-menu ul.sub-menu li a {
position: relative;
display: block;
padding: 6px;
margin: 0px 15px;
line-height: 1.2em;
}
#eut-header .eut-main-menu .eut-wrapper > ul > li.megamenu ul > li.menu-item-has-children > a {
margin-bottom: 0px;
} #eut-header .eut-horizontal-menu.eut-arrow ul.eut-menu .menu-item-has-children > a::after {
content: '\f107';
font-family: "Font Awesome 5 Free";
font-weight: 900;
height: 10px;
line-height: 10px;
margin-left: 2px;
position: relative;
top: 2px;
width: 10px;
} #eut-header .eut-horizontal-menu.eut-arrow ul.eut-menu ul .menu-item-has-children > a:after,
#eut-header .eut-horizontal-menu.eut-arrow-not-first-level ul.eut-menu ul .menu-item-has-children > a:after {
content: '\f105';
font-family: "Font Awesome 5 Free";
font-weight: 900;
position: absolute;
margin-top: -1px;
top: 10px;
right: 0.500em;
height: 0;
width: 0;
} #eut-top-bar .eut-menu-icon,
#eut-footer .eut-menu-icon,
.eut-anchor-menu .eut-menu-icon,
.widget_nav_menu .eut-menu-icon,
#eut-header .eut-main-menu .eut-menu-icon,
#eut-hidden-menu .eut-menu-icon {
margin-right: 5px;
width: 1em;
text-align: center;
} #eut-header .eut-main-menu .eut-menu-no-link > a {
cursor: default;
}
#eut-main-header.eut-header-side .eut-main-menu .eut-menu-no-link > a {
cursor: pointer;
} #eut-header .eut-horizontal-menu .eut-hidden-menu-item > a {
display: none !important;
} #eut-header .eut-main-menu .eut-item .label,
#eut-hidden-menu .eut-item .label {
display: inline-block;
vertical-align: middle;
font-size: 9px;
margin-left: 8px;
position: relative;
line-height: 1.3;
text-transform: uppercase;
letter-spacing: 1px;
padding: 3px 5px;
-webkit-border-radius: 2px;
border-radius: 2px;
} #eut-header.eut-header-split-menu #eut-main-header > .eut-wrapper,
#eut-header.eut-header-split-menu #eut-main-header > .eut-wrapper > .eut-container {
height: inherit;
}
#eut-header .eut-split-menu .eut-menu,
#eut-header .eut-split-menu .eut-logo {
display: inline-block;
vertical-align: top;
}
#eut-header .eut-split-menu .eut-logo-text {
vertical-align: top;
}
#eut-header .eut-split-menu .eut-logo .eut-wrapper {
display: block;
padding: 0 20px;
}  #eut-header .eut-main-menu.eut-menu-type-button .eut-wrapper > ul > li > a {
padding: 0 3px;
}
#eut-header .eut-main-menu.eut-menu-type-button .eut-wrapper > ul > li > a .eut-item {
border: 1px solid;
border-color: transparent;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-transition : border-color .3s;
-moz-transition    : border-color .3s;
-ms-transition     : border-color .3s;
-o-transition      : border-color .3s;
transition         : border-color .3s;
}
.eut-menu-type-button > a .eut-item {
padding: 0.563em 1.250em;
-webkit-transition : color .5s ease, background-color .5s ease, border-color .5s ease;
-moz-transition    : color .5s ease, background-color .5s ease, border-color .5s ease;
-o-transition      : color .5s ease, background-color .5s ease, border-color .5s ease;
-ms-transition     : color .5s ease, background-color .5s ease, border-color .5s ease;
transition         : color .5s ease, background-color .5s ease, border-color .5s ease;
}
.sub-menu .eut-menu-type-button > a .eut-item {
padding: 8px 9px;
display: inline-block;
}
#eut-header .eut-main-menu.eut-menu-type-button .eut-wrapper > ul > li > a .eut-item {
padding: 4px 12px;
} #eut-header .eut-main-menu.eut-menu-type-underline .eut-wrapper > ul > li > a .eut-item {
position: relative;
}
#eut-header .eut-main-menu.eut-menu-type-underline .eut-wrapper > ul > li:not(.eut-menu-type-button) > a .eut-item:after {
content: '';
opacity: 0;
width: 0;
height: 2px;
left: 0;
bottom: -4px;
position: absolute;
-webkit-transition : opacity .4s ease, width .4s ease;
-moz-transition :    opacity .4s ease, width .4s ease;
-ms-transition :     opacity .4s ease, width .4s ease;
-o-transition :      opacity .4s ease, width .4s ease;
transition :         opacity .4s ease, width .4s ease;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
#eut-header .eut-main-menu.eut-menu-type-underline .eut-wrapper > ul > li.current-menu-item > a .eut-item:after,
#eut-header .eut-main-menu.eut-menu-type-underline .eut-wrapper > ul > li.current-menu-ancestor > a .eut-item:after,
#eut-header .eut-main-menu.eut-menu-type-underline .eut-wrapper > ul > li:hover > a .eut-item:after,
#eut-header .eut-main-menu.eut-menu-type-underline .eut-wrapper > ul > li.active > a .eut-item:after {
opacity: 1;
width: 100%;
} #eut-header .eut-horizontal-menu ul.eut-menu li.megamenu {
position: static;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu > ul.sub-menu {
width: 100%;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu > .sub-menu > li {
border-right: 1px solid;
float: left;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu > .sub-menu > li:last-child {
border-right: none;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu ul.sub-menu ul {
display: block !important;
opacity: 1 !important;
position: relative;
left: 0;
top: 0;
width: 100%;
margin: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
} #eut-header .eut-horizontal-menu.eut-arrow ul.eut-menu .megamenu ul .menu-item-has-children a:after,
#eut-header .eut-horizontal-menu.eut-arrow-not-first-level ul.eut-menu .megamenu ul .menu-item-has-children a:after {
display: none;
} #eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-6 > ul.sub-menu > li { width: 16.66666667%; }
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-5 > ul.sub-menu > li { width: 20%; }
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-4 > ul.sub-menu > li { width: 25%; }
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-3 > ul.sub-menu > li { width: 33.33333333%; }
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-2 > ul.sub-menu > li { width: 50%; }
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-3,
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-2 {
position: relative;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-3 > ul.sub-menu {
width: 650px;
}
#eut-header .eut-horizontal-menu ul.eut-menu li.megamenu.column-2 > ul.sub-menu {
width: 500px;
} #eut-header .eut-main-menu .eut-menu-description,
#eut-hidden-menu .eut-menu-description {
display: block;
white-space: normal;
line-height: 1.8;
margin-top: 10px;
}
#eut-header .eut-main-menu .eut-first-level > a .eut-menu-description {
margin-top: -10%;
} .eut-no-assigned-menu a {
line-height: 36px;
padding: 0 20px;
background-color: #000000;
color: #ffffff;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
display: inline-block;
-webkit-border-radius: 3px;
border-radius: 3px;
margin-left: 15px;
}
.eut-no-assigned-menu a:hover {
color: #f7f7f7;
}
.eut-header-side .eut-no-assigned-menu {
text-align: center;
display: block;
line-height: 20px;
}
.eut-header-side .eut-no-assigned-menu a {
margin-left: 0;
margin-top: 15px;
}
#eut-main-header.eut-light .eut-no-assigned-menu {
color: #ffffff;
}
#eut-main-header.eut-dark .eut-no-assigned-menu {
color: #000000;
} #eut-responsive-menu-wrapper {
display: none;
}
.eut-menu-wrapper {
margin-bottom: 6.000em;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}  .eut-toggle-menu ul {
list-style: none;
margin: 0;
}
.eut-toggle-menu ul.eut-menu ul,
#eut-main-header.eut-toggle-menu ul.eut-menu ul {
margin-left: 20px;
}
.eut-toggle-menu ul.eut-menu li a {
padding-top: 1.154em;
padding-bottom: 1.154em;
display: block;
position: relative;
overflow: hidden;
}
.eut-toggle-menu ul.eut-menu li {
border-bottom: 1px solid;
}
.eut-toggle-menu ul.eut-menu li.eut-hidden-menu-item > a {
display: none !important;
}
.eut-toggle-menu ul.eut-menu li.menu-item-has-children a {
padding-right: 40px;
}
.eut-toggle-menu ul.eut-menu li ul {
display: none;
} .eut-toggle-menu ul.eut-menu li a .eut-arrow {
position: absolute;
top: 0;
right: 0;
width: 30px;
height: 100%;
display: inline-block;
line-height: inherit;
text-align: right;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.eut-toggle-menu ul.eut-menu li a .eut-arrow:after,
.eut-toggle-menu ul.eut-menu li a .eut-arrow:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: rotate(0deg);
-moz-transform:    rotate(0deg);
-ms-transform:     rotate(0deg);
-o-transform:      rotate(0deg);
transform:         rotate(0deg);
-webkit-transition : all .3s ease .3s;
-moz-transition    : all .3s ease .3s;
-ms-transition     : all .3s ease .3s;
-o-transition      : all .3s ease .3s;
transition         : all .3s ease .3s;
background-color: #333333;
}
.eut-toggle-menu ul.eut-menu li a .eut-arrow:after {
width: 9px;
height: 1px;
margin-left: -5px;
margin-top: -1px;
}
.eut-toggle-menu ul.eut-menu li a .eut-arrow:before {
width: 1px;
height: 9px;
margin-left: -1px;
margin-top: -5px;
}
.eut-toggle-menu ul.eut-menu li.open > a .eut-arrow:after,
.eut-toggle-menu ul.eut-menu li.open > a .eut-arrow:before {
-webkit-transform: rotate(45deg);
-moz-transform:    rotate(45deg);
-ms-transform:     rotate(45deg);
-o-transform:      rotate(45deg);
transform:         rotate(45deg);
}
.eut-toggle-menu .eut-main-menu.eut-align-center ul li {
text-align: center;
}
.eut-toggle-menu .eut-main-menu.eut-align-center li.menu-item-has-children a {
padding-left: 20px;
padding-right: 20px;
}
#eut-main-header.eut-toggle-menu .eut-align-center ul.eut-menu ul {
margin-right: 10px;
margin-left: 10px;
}
.eut-toggle-menu ul.eut-menu li.eut-hidden-menu-item ul {
display: block;
} .eut-slide-menu .eut-main-menu .sub-menu .eut-menu-description {
margin-top: 0;
}
.eut-slide-menu .eut-main-menu > .eut-wrapper {
overflow: hidden;
}
.eut-slide-menu ul.eut-menu li a {
padding-top: 25px;
padding-bottom: 25px;
line-height: 1.200em;
display: inline-block;
vertical-align: middle;
position: relative;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-slide-menu ul.eut-menu .sub-menu li a {
padding-left: 30px;
}
.eut-slide-menu ul.eut-menu,
.eut-slide-menu ul.eut-menu ul {
display: inline-block;
position: relative;
height: auto;
width: 100%;
vertical-align: top;
margin: 0;
}
.eut-slide-menu ul.eut-menu li {
position: relative;
display: inline-block;
width: 100%;
padding: 0;
margin: 0;
vertical-align: top;
border-bottom: 1px solid;
}
.eut-slide-menu ul.eut-menu li.eut-hidden-menu-item {
display: block !important;
}
.eut-slide-menu ul.eut-menu {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-slide-menu ul.eut-menu ul {
position: absolute;
display: none;
top: 0;
left: 100%;
right: 0;
margin: 0;
opacity: 0;
-webkit-animation-duration: .3s;
-moz-animation-duration: .3s;
-o-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: slide_menu_animation;
-moz-animation-name: slide_menu_animation;
-o-animation-name: slide_menu_animation;
animation-name: slide_menu_animation;
}
.eut-slide-menu ul.eut-menu ul.show {
display: block;
z-index: 1;
}
@-webkit-keyframes slide_menu_animation {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes slide_menu_animation {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes slide_menu_animation {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes slide_menu_animation {
0% { opacity: 0; }
100% { opacity: 1; }
}
.eut-slide-menu ul.eut-menu .eut-goback a {
padding-left: 30px;
}
.eut-slide-menu ul.eut-menu .eut-arrow {
width: 30px;
height: 18px;
line-height: 18px;
font-size: 18px;
display: inline-block;
text-align: right;
vertical-align: middle;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.eut-slide-menu ul.eut-menu .eut-goback .eut-arrow {
position: absolute;
top: 50%;
left: 0;
text-align: left;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
.eut-slide-menu ul.eut-menu .eut-arrow:after {
content: '\e903';
font-family: 'crocal-icons' !important;
font-size: 18px;
}
.eut-slide-menu ul.eut-menu .eut-goback .eut-arrow:after {
content: '\e901';
} .eut-header-elements-wrapper {
position: relative;
z-index: 3;
}
.eut-header-elements,
.eut-hidden-menu-btn {
position: relative;
z-index: 2;
}
.eut-header-elements + .eut-header-elements {
border-left: none;
margin-left: 0;
}
.eut-header-elements ul {
list-style: none;
margin: 0;
}
.eut-header-element {
float: left;
font-size: 0;
letter-spacing: 0;
}
.eut-header-element > a {
display: inline-block;
padding-left: 18px;
}
.eut-header-element > a span.eut-label,
.eut-hidden-menu-btn a span.eut-label {
margin-left: 5px;
}
.eut-header-element .eut-item {
line-height: inherit;
display: inline-block;
vertical-align: middle;
position: relative;
}
.eut-header-element .eut-item:not(.eut-with-text) {
font-size: 18px;
line-height: 18px;
width: 18px;
height: 18px;
text-align: center;
}
.eut-header-element .eut-item i {
display: block;
font-size: inherit;
line-height: inherit;
} .eut-header-element .eut-purchased-items {
font-size: 12px;
display: inline-block;
line-height: 20px;
margin-right: 5px;
} .eut-header-text-element {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-main-header:not(.eut-header-side) .eut-header-text-element > .eut-wrapper {
display: table;
width: 100%;
height: inherit;
padding-left: 1.563rem;
}
#eut-main-header:not(.eut-header-side) .eut-header-text-element > .eut-wrapper > .eut-item {
display: table-cell;
vertical-align: middle;
line-height: 1.2em;
}
#eut-main-header.eut-header-side .eut-header-text-element {
width: 100%;
}
.eut-header-text-element .eut-btn {
margin: 0 !important;
} @media only screen and (max-width: 1200px) {
.eut-hidden-menu-btn a .eut-item {
font-size: 15px;
}
}
.eut-hidden-menu-btn a .eut-item:not(.eut-with-text) {
width: 24px;
}
.eut-hidden-menu-btn a .eut-item:not(.eut-with-text) span {
left: 0;
height: 2px;
opacity: 1;
-webkit-transition: all .3s cubic-bezier(.215,.61,.355,1);
transition: all .3s cubic-bezier(.215,.61,.355,1);
width: 100%;
position: absolute;
top: 0;
display: block;
}
.eut-hidden-menu-btn a .eut-item span:nth-child(2) {
top: 7px;
}
.eut-hidden-menu-btn a .eut-item span:nth-child(3) {
top: 14px;
}
#eut-header:not(.eut-advanced-hidden-menu) .eut-hidden-menu-btn a .eut-item:hover span:nth-child(1) {
width: 60%;
}
#eut-header:not(.eut-advanced-hidden-menu) .eut-hidden-menu-btn a .eut-item:hover span:nth-child(3) {
width: 60%;
} body.eut-side-area-open {
overflow-y: scroll;
}
#eut-theme-wrapper.eut-with-side-area {
z-index: 10;
-webkit-transition : transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
-moz-transition    : transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
-ms-transition     : transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
-o-transition      : transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
transition         : transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
#eut-theme-wrapper.eut-side-area-open {
position: relative;
overflow: hidden;
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform : scale(0.6) translateX(-40vw) translateZ(0);
-moz-transform    : scale(0.6) translateX(-40vw) translateZ(0);
-ms-transform     : scale(0.6) translateX(-40vw) translateZ(0);
-o-transform      : scale(0.6) translateX(-40vw) translateZ(0);
transform         : scale(0.6) translateX(-40vw) translateZ(0);
pointer-events: none;
}
#eut-sidearea {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
padding-left: 60vw;
display: none;
}
#eut-theme-wrapper.eut-side-area-shadow {
-webkit-box-shadow: 0 60px 100px -30px rgba(0,0,0,.25);
-moz-box-shadow:    0 60px 100px -30px rgba(0,0,0,.25);
box-shadow:         0 60px 100px -30px rgba(0,0,0,.25);
}
#eut-sidearea.eut-show {
display: block;
}
.eut-side-area-wrapper {
width: 80%;
max-width: 400px;
overflow: hidden;
height: 100%;
position: relative;
}
.eut-side-area-wrapper .eut-side-area-content {
position: absolute;
top: 0;
left: 0;
right: -30px;
height: 100%;
padding-right: 70px;
padding-bottom: 60px;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
} @media only screen and (max-width: 1023px) {
#eut-theme-wrapper.eut-side-area-open {
-webkit-transform : scale(0.6) translateX(-70vw) translateZ(0);
-moz-transform    : scale(0.6) translateX(-70vw) translateZ(0);
-ms-transform     : scale(0.6) translateX(-70vw) translateZ(0);
-o-transform      : scale(0.6) translateX(-70vw) translateZ(0);
transform         : scale(0.6) translateX(-70vw) translateZ(0);
}
#eut-sidearea {
padding-left: 45vw;
}
} @media only screen and (max-width: 767px) {
#eut-theme-wrapper.eut-side-area-open {
-webkit-transform : scale(0.8) translateX(-98vw) translateZ(0);
-moz-transform    : scale(0.8) translateX(-98vw) translateZ(0);
-ms-transform     : scale(0.8) translateX(-98vw) translateZ(0);
-o-transform      : scale(0.8) translateX(-98vw) translateZ(0);
transform         : scale(0.8) translateX(-98vw) translateZ(0);
}
#eut-sidearea {
padding-left: 25vw;
}
.eut-side-area-wrapper {
width: 100%;
}
} .eut-pullup-icon {
width: 48px;
height: 48px;
-webkit-border-radius: 50%;
border-radius: 50%;
-webkit-box-shadow: 0 4px 15px 0px rgba(0,0,0,.15);
-moz-box-shadow:    0 4px 15px 0px rgba(0,0,0,.15);
box-shadow:         0 4px 15px 0px rgba(0,0,0,.15);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-pullup-icon svg {
width: 18px;
height: 18px;
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-top: -9px;
margin-left: -9px;
}
.eut-pullup-icon:before {
content: '';
background-color: inherit;
width: inherit;
height: inherit;
display: block;
-webkit-border-radius: 50%;
border-radius: 50%;
-webkit-transition : transform .3s;
-moz-transition    : transform .3s;
-ms-transition     : transform .3s;
-o-transition      : transform .3s;
transition         : transform .3s;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-transform: scale(0.9);
-moz-transform:    scale(0.9);
-ms-transform:     scale(0.9);
-o-transform:      scale(0.9);
transform:         scale(0.9);
}
.eut-pullup-icon:hover:before {
-webkit-transform: scale(1.2);
-moz-transform:    scale(1.2);
-ms-transform:     scale(1.2);
-o-transform:      scale(1.2);
transform:         scale(1.2);
}
.eut-sidearea-btn,
.eut-sidearea-close-btn {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 99999;
background-color: #f00;
}
.eut-sidearea-btn.eut-push-up:not(.eut-hide) {
-webkit-transition-delay: .3s;
-moz-transition-delay:    .3s;
-ms-transition-delay:     .3s;
-o-transition-delay:      .3s;
transition-delay:         .3s;
-webkit-transform: translateY(-60px);
-moz-transform:    translateY(-60px);
-ms-transform:     translateY(-60px);
-o-transform:      translateY(-60px);
transform:         translateY(-60px);
}
.eut-sidearea-close-btn {
top: 30px;
bottom: auto;
background-color: #ffffff;
}
.eut-sidearea-btn path {
fill: #ffffff;
}
.eut-sidearea-btn.eut-hide,
.eut-sidearea-close-btn.eut-hide {
-webkit-transform: scale(0);
-moz-transform:    scale(0);
-ms-transform:     scale(0);
-o-transform:      scale(0);
transform:         scale(0);
visibility: hidden;
}
.eut-sidearea-btn.eut-push-up.eut-hide {
-webkit-transform: translateY(-60px) scale(0.1);
-moz-transform:    translateY(-60px) scale(0.1);
-ms-transform:     translateY(-60px) scale(0.1);
-o-transform:      translateY(-60px) scale(0.1);
transform:         translateY(-60px) scale(0.1);
visibility: hidden;
} .eut-header-responsive-elements {
display: none;
}
.eut-header-responsive-elements {
margin-bottom: 3.077em;
}
.eut-header-responsive-elements:before,
.eut-header-responsive-elements:after {
display: table;
content: " ";
}
.eut-header-responsive-elements:after {
clear: both;
}
.eut-header-responsive-elements ul {
margin: 0;
display: block;
list-style: none;
}
.eut-header-responsive-element {
height: 25px;
line-height: 25px;
float: left;
font-size: 0;
}
.eut-header-responsive-element > a {
display: inline-block;
padding: 0 10px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-header-responsive-element .eut-item {
line-height: inherit;
display: inline-block;
vertical-align: middle;
}
.eut-header-responsive-element .eut-item i {
display: block;
font-size: 18px;
} .eut-page-title .eut-title > span {
-ms-word-wrap: break-word;
word-wrap: break-word;
display: block
}
.eut-page-title,
#eut-feature-section {
position: relative;
overflow: hidden;
z-index: 5;
clear: both;
}
#eut-feature-section .eut-feature-inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
clip: rect(0, auto, auto, 0);
}
.eut-page-title .eut-title > span:empty {
display: none;
}
.eut-page-title .eut-content,
#eut-feature-section .eut-content {
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-page-title .eut-wrapper,
#eut-feature-section .eut-wrapper {
display: table;
width: 100%;
position: relative;
z-index: 5;
}
.eut-page-title .eut-content,
#eut-feature-section .eut-content {
display: table-cell;
width: 100%;
}
.eut-page-title .eut-subheading,
.eut-page-title .eut-title,
.eut-page-title .eut-description,
#eut-feature-section .eut-subheading,
#eut-feature-section .eut-title,
#eut-feature-section .eut-description {
display: block;
position: relative;
}
.eut-page-title .eut-title,
#eut-feature-section .eut-title,
#eut-feature-section .eut-subheading,
.eut-page-title .eut-subheading {
margin-bottom: 18px;
}
.eut-page-title .eut-title:last-child,
#eut-feature-section .eut-title:last-child {
margin-bottom: 0;
}
.eut-page-title .eut-description,
#eut-feature-section .eut-description {
margin-bottom: 18px;
}
.eut-page-title .eut-description:last-child,
#eut-feature-section .eut-description:last-child {
margin-bottom: 0;
}
#eut-feature-section a + .eut-description {
margin-top: 18px;
}
.eut-page-title .eut-subheading,
.eut-page-title .eut-description,
#eut-feature-section .eut-subheading,
#eut-feature-section .eut-description {
z-index: 10;
}
.eut-page-title .eut-subheading.eut-text-light,
.eut-page-title .eut-title.eut-text-light,
.eut-page-title .eut-description.eut-text-light,
#eut-feature-section .eut-subheading.eut-text-light,
#eut-feature-section .eut-title.eut-text-light,
#eut-feature-section .eut-description.eut-text-light {
color: #ffffff;
}
.eut-page-title .eut-subheading.eut-text-dark,
.eut-page-title .eut-title.eut-text-dark,
.eut-page-title .eut-description.eut-text-dark,
#eut-feature-section .eut-subheading.eut-text-dark,
#eut-feature-section .eut-title.eut-text-dark,
#eut-feature-section .eut-description.eut-text-dark {
color: #000000;
} .eut-page-title.eut-fullscreen .eut-wrapper,
#eut-feature-section.eut-fullscreen .eut-wrapper {
height: 100vh;
} body.eut-open-safebutton-area #eut-feature-section .eut-parallax-wrapper {
position: relative !important;
}
#eut-feature-section.eut-bg-fixed-section .eut-parallax-wrapper {
transform: translateZ(0);
}
#eut-feature-section .eut-slider-numbers {
list-style: none;
margin: 0;
text-align: center;
position: absolute;
z-index: 100;
top: 50%;
right: 43px;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
#eut-feature-section .eut-slider-numbers li {
line-height: 1;
margin-bottom: 24px;
opacity: 0.5;
cursor: pointer;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-feature-section .eut-slider-numbers li.active,
#eut-feature-section .eut-slider-numbers li:hover {
opacity: 1;
}
#eut-feature-section .eut-slider-numbers.eut-default,
#eut-feature-section .eut-slider-numbers.eut-dark {
color: #000000;
}
#eut-feature-section .eut-slider-numbers.eut-light {
color: #ffffff;
}
#eut-feature-section .eut-slider-numbers li:after {
content: '';
width: 1px;
height: 0;
opacity: 0.5;
border-left: 1px solid;
display: block;
position: relative;
top: 12px;
margin-left: auto;
margin-right: auto;
-webkit-transition : height .3s;
-moz-transition    : height .3s;
-ms-transition     : height .3s;
-o-transition      : height .3s;
transition         : height .3s;
}
#eut-feature-section .eut-slider-numbers li.active:after {
height: 10vh;
}
#eut-feature-section .eut-slider-numbers li:last-child:after {
display: none;
}
@media only screen and (max-width: 767px) {
#eut-feature-section .eut-slider-numbers {
display: none;
}
}  .eut-page-title.eut-small-height,
#eut-feature-section.eut-small-height,
.eut-page-title.eut-small-height .eut-wrapper,
#eut-feature-section.eut-small-height .eut-wrapper {
height: 350px;
} .eut-page-title.eut-medium-height,
#eut-feature-section.eut-medium-height,
.eut-page-title.eut-medium-height .eut-wrapper,
#eut-feature-section.eut-medium-height .eut-wrapper {
height: 500px;
} .eut-page-title.eut-large-height,
#eut-feature-section.eut-large-height,
.eut-page-title.eut-large-height .eut-wrapper,
#eut-feature-section.eut-large-height .eut-wrapper {
height: 700px;
}
@media only screen and (max-width: 1440px) {
.eut-page-title.eut-large-height,
#eut-feature-section.eut-large-height,
.eut-page-title.eut-large-height .eut-wrapper,
#eut-feature-section.eut-large-height .eut-wrapper {
height: 550px;
}
} @media only screen and (max-width: 1200px) { .eut-page-title.eut-medium-height,
#eut-feature-section.eut-medium-height,
.eut-page-title.eut-medium-height .eut-wrapper,
#eut-feature-section.eut-medium-height .eut-wrapper {
height: 400px;
} .eut-page-title.eut-large-height,
#eut-feature-section.eut-large-height,
.eut-page-title.eut-large-height .eut-wrapper,
#eut-feature-section.eut-large-height .eut-wrapper {
height: 500px;
}
} @media only screen and (max-width: 1023px) { .eut-page-title.eut-medium-height,
#eut-feature-section.eut-medium-height,
.eut-page-title.eut-medium-height .eut-wrapper,
#eut-feature-section.eut-medium-height .eut-wrapper {
height: 350px;
} .eut-page-title.eut-large-height,
#eut-feature-section.eut-large-height,
.eut-page-title.eut-large-height .eut-wrapper,
#eut-feature-section.eut-large-height .eut-wrapper {
height: 450px;
}
} @media only screen and (max-width: 767px) { .eut-page-title.eut-small-height,
#eut-feature-section.eut-small-height,
.eut-page-title.eut-small-height .eut-wrapper,
#eut-feature-section.eut-small-height .eut-wrapper {
height: 250px;
} .eut-page-title.eut-medium-height,
#eut-feature-section.eut-medium-height,
.eut-page-title.eut-medium-height .eut-wrapper,
#eut-feature-section.eut-medium-height .eut-wrapper {
height: 300px;
} .eut-page-title.eut-large-height,
#eut-feature-section.eut-large-height,
.eut-page-title.eut-large-height .eut-wrapper,
#eut-feature-section.eut-large-height .eut-wrapper {
height: 350px;
}
} .eut-content.eut-align-left-center,
.eut-content.eut-align-center-center,
.eut-content.eut-align-right-center {
vertical-align: middle;
}
.eut-content.eut-align-left-top,
.eut-content.eut-align-center-top,
.eut-content.eut-align-right-top {
vertical-align: top;
padding-top: 5%;
}
.eut-content.eut-align-left-bottom,
.eut-content.eut-align-center-bottom,
.eut-content.eut-align-right-bottom {
vertical-align: bottom;
padding-bottom: 5%;
}
.eut-content.eut-align-left-center,
.eut-content.eut-align-left-top,
.eut-content.eut-align-left-bottom {
text-align: left;
}
.eut-content.eut-align-right-center,
.eut-content.eut-align-right-top,
.eut-content.eut-align-right-bottom {
text-align: right;
}
.eut-content.eut-align-center-center,
.eut-content.eut-align-center-top,
.eut-content.eut-align-center-bottom {
text-align: center;
} .eut-title-content-wrapper:not(.eut-bg-none) {
display: inline-block;
vertical-align: middle;
padding: 4% 5%;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1023px) {
#eut-feature-section .eut-content {
padding-top: 30px;
padding-bottom: 30px;
}
} .eut-page-title .eut-fullwidth .eut-container,
#eut-feature-section .eut-fullwidth .eut-container {
padding-left: 5%;
padding-right: 5%;
}
.eut-page-title .eut-title-content-wrapper,
#eut-feature-section .eut-title-content-wrapper {
display: inline-block;
vertical-align: middle;
position: relative;
}
.eut-page-title .eut-title-content-wrapper.eut-content-small,
#eut-feature-section .eut-title-content-wrapper.eut-content-small {
max-width: 400px;
}
.eut-page-title .eut-title-content-wrapper.eut-content-medium,
#eut-feature-section .eut-title-content-wrapper.eut-content-medium {
max-width: 790px;
}
.eut-page-title .eut-title-content-wrapper.eut-content-large,
#eut-feature-section .eut-title-content-wrapper.eut-content-large {
max-width: 1170px;
}
.eut-boxed .eut-page-title .eut-title-content-wrapper.eut-content-large,
.eut-boxed #eut-feature-section .eut-title-content-wrapper.eut-content-large {
max-width: 900px;
}
@media only screen and (max-width: 767px) {
.eut-page-title .eut-title-content-wrapper.eut-content-small,
.eut-page-title .eut-title-content-wrapper.eut-content-medium,
#eut-feature-section .eut-title-content-wrapper.eut-content-small,
#eut-feature-section .eut-title-content-wrapper.eut-content-medium {
width: 100%;
max-width: none;
}
} #eut-feature-section .eut-button-wrapper {
margin-top: 27px;
} .eut-graphic {
margin-bottom: 40px;
display: inline-block;
vertical-align: top;
}
.eut-circle-graphic .eut-graphic img {
-webkit-border-radius: 50%;
border-radius: 50%;
}
.eut-content .eut-graphic img {
max-height: 150px;
width: auto;
display: block;
position: relative;
}
@media only screen and (max-width: 1023px) {
.eut-content.eut-align-left-center .eut-graphic,
.eut-content.eut-align-center-center .eut-graphic,
.eut-content.eut-align-right-center .eut-graphic {
position: relative;
}
} .eut-title-content-wrapper:not(.eut-bg-none),
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-graphic,
#eut-feature-section .eut-title-content-wrapper.eut-bg-none .eut-graphic,
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-subheading,
#eut-feature-section .eut-title-content-wrapper.eut-bg-none .eut-subheading,
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-title,
#eut-feature-section .eut-title-content-wrapper.eut-bg-none .eut-title,
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-description,
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-title-meta-content,
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-title-meta,
#eut-feature-section .eut-title-content-wrapper.eut-bg-none .eut-title-meta-content,
#eut-feature-section .eut-title-content-wrapper.eut-bg-none .eut-description,
.eut-page-title .eut-title-content-wrapper.eut-bg-none .eut-btn,
#eut-feature-section .eut-title-content-wrapper.eut-bg-none .eut-btn,
#eut-feature-section .eut-goto-section-wrapper {
opacity: 0;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-animation-duration : .5s;
-moz-animation-duration    : .5s;
-o-animation-duration      : .5s;
animation-duration         : .5s;
-webkit-animation-fill-mode : both;
-moz-animation-fill-mode    : both;
-o-animation-fill-mode      : both;
animation-fill-mode         : both;
-webkit-animation-timing-function : ease-out;
-moz-animation-timing-function    : ease-out;
-o-animation-timing-function      : ease-out;
animation-timing-function         : ease-out;
}
.eut-page-title .eut-content[data-animation="none"] .eut-graphic,
#eut-feature-section .eut-content[data-animation="none"] .eut-graphic,
.eut-page-title .eut-content[data-animation="none"] .eut-subheading,
#eut-feature-section .eut-content[data-animation="none"] .eut-subheading,
.eut-page-title .eut-content[data-animation="none"] .eut-title-meta-content,
.eut-page-title .eut-content[data-animation="none"] .eut-title,
#eut-feature-section .eut-content[data-animation="none"] .eut-title,
.eut-page-title .eut-content[data-animation="none"] .eut-description,
#eut-post-title .eut-content[data-animation="none"] .eut-title-meta,
#eut-feature-section .eut-content[data-animation="none"] .eut-description,
.eut-page-title .eut-content[data-animation="none"] .eut-btn,
#eut-feature-section .eut-content[data-animation="none"] .eut-btn,
#eut-feature-section .eut-content[data-animation="none"] .eut-goto-section-wrapper {
opacity: 1;
}
html.ie9 .eut-title-content-wrapper:not(.eut-bg-none),
html.ie9 .eut-page-title .eut-graphic,
html.ie9 #eut-feature-section .eut-graphic,
html.ie9 .eut-page-title .eut-subheading,
html.ie9 #eut-feature-section .eut-subheading,
html.ie9 .eut-page-title .eut-title-meta-content,
html.ie9 .eut-page-title .eut-title,
html.ie9 #eut-feature-section .eut-title,
html.ie9 .eut-page-title .eut-description,
html.ie9 #eut-post-title .eut-title-meta,
html.ie9 #eut-feature-section .eut-description,
html.ie9 .eut-page-title .eut-btn,
html.ie9 #eut-feature-section .eut-btn {
opacity: 1;
} @-webkit-keyframes content_fade_in {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes content_fade_in {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes content_fade_in {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes content_fade_in {
0% { opacity: 0; }
100% { opacity: 1; }
} @-webkit-keyframes content_fade_up {
0% { opacity: 0; -webkit-transform: translateY(50px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes content_fade_up {
0% { opacity: 0; -moz-transform: translateY(50px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes content_fade_up {
0% { opacity: 0; -o-transform: translateY(50px); }
100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes content_fade_up {
0% { opacity: 0; transform: translateY(50px); }
100% { opacity: 1; transform: translateY(0); }
} @-webkit-keyframes content_fade_down {
0% { opacity: 0; -webkit-transform: translateY(-50px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes content_fade_down {
0% { opacity: 0; -moz-transform: translateY(-50px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes content_fade_down {
0% { opacity: 0; -o-transform: translateY(-50px); }
100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes content_fade_down {
0% { opacity: 0; transform: translateY(-50px); }
100% { opacity: 1; transform: translateY(0); }
} @-webkit-keyframes content_fade_left {
0% { opacity: 0; -webkit-transform: translateX(-50px); }
100% { opacity: 1; -webkit-transform: translateX(0); }
}
@-moz-keyframes content_fade_left {
0% { opacity: 0; -moz-transform: translateX(-50px); }
100% { opacity: 1; -moz-transform: translateX(0); }
}
@-o-keyframes content_fade_left {
0% { opacity: 0; -o-transform: translateX(-50px); }
100% { opacity: 1; -o-transform: translateX(0); }
}
@keyframes content_fade_left {
0% { opacity: 0; transform: translateX(-50px); }
100% { opacity: 1; transform: translateX(0); }
} @-webkit-keyframes content_fade_right {
0% { opacity: 0; -webkit-transform: translateX(50px); }
100% { opacity: 1; -webkit-transform: translateX(0); }
}
@-moz-keyframes content_fade_right {
0% { opacity: 0; -moz-transform: translateX(50px); }
100% { opacity: 1; -moz-transform: translateX(0); }
}
@-o-keyframes content_fade_right {
0% { opacity: 0; -o-transform: translateX(50px); }
100% { opacity: 1; -o-transform: translateX(0); }
}
@keyframes content_fade_right {
0% { opacity: 0; transform: translateX(50px); }
100% { opacity: 1; transform: translateX(0); }
} @-webkit-keyframes content_zoom_in {
from { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3); }
100% { opacity: 1; }
}
@keyframes content_zoom_in {
from { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3); }
100% { opacity: 1; }
} @-webkit-keyframes content_zoom_out {
from { opacity: 0; -webkit-transform: scale3d(1.6, 1.6, 1.6); transform: scale3d(1.6, 1.6, 1.6); }
100% { opacity: 1; }
}
@keyframes content_zoom_out {
from { opacity: 0; -webkit-transform: scale3d(1.6, 1.6, 1.6); transform: scale3d(1.6, 1.6, 1.6); }
100% { opacity: 1; }
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-fade-in,
.eut-page-title .eut-animate-fade-in,
#eut-feature-section .eut-animate-fade-in {
-webkit-animation-name: content_fade_in;
-moz-animation-name: content_fade_in;
-o-animation-name: content_fade_in;
animation-name: content_fade_in;
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-fade-in-up,
.eut-page-title .eut-animate-fade-in-up,
#eut-feature-section .eut-animate-fade-in-up {
-webkit-animation-name: content_fade_up;
-moz-animation-name: content_fade_up;
-o-animation-name: content_fade_up;
animation-name: content_fade_up;
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-fade-in-down,
.eut-page-title .eut-animate-fade-in-down,
#eut-feature-section .eut-animate-fade-in-down {
-webkit-animation-name: content_fade_down;
-moz-animation-name: content_fade_down;
-o-animation-name: content_fade_down;
animation-name: content_fade_down;
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-fade-in-left,
.eut-page-title .eut-animate-fade-in-left,
#eut-feature-section .eut-animate-fade-in-left {
-webkit-animation-name: content_fade_left;
-moz-animation-name: content_fade_left;
-o-animation-name: content_fade_left;
animation-name: content_fade_left;
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-fade-in-right,
.eut-page-title .eut-animate-fade-in-right,
#eut-feature-section .eut-animate-fade-in-right {
-webkit-animation-name: content_fade_right;
-moz-animation-name: content_fade_right;
-o-animation-name: content_fade_right;
animation-name: content_fade_right;
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-zoom-in,
.eut-page-title .eut-animate-zoom-in,
#eut-feature-section .eut-animate-zoom-in {
-webkit-animation-name: content_zoom_in;
-moz-animation-name: content_zoom_in;
-o-animation-name: content_zoom_in;
animation-name: content_zoom_in;
}
.eut-title-content-wrapper:not(.eut-bg-none).eut-animate-zoom-out,
.eut-page-title .eut-animate-zoom-out,
#eut-feature-section .eut-animate-zoom-out {
-webkit-animation-name: content_zoom_out;
-moz-animation-name: content_zoom_out;
-o-animation-name: content_zoom_out;
animation-name: content_zoom_out;
} #eut-feature-section .eut-carousel-buttons div {
font-size: 24px;
cursor: pointer;
width: 60px;
height: 60px;
line-height: 60px;
display: inline-block;
vertical-align: middle;
text-align: center;
position: absolute;
top: 50%;
z-index: 10;
margin-top: -30px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-carousel-buttons div i {
font-size: inherit;
line-height: inherit;
}
#eut-feature-section .eut-carousel-buttons .eut-carousel-prev {
left: 0;
}
#eut-feature-section .eut-carousel-buttons .eut-carousel-next {
right: 0;
} #eut-feature-section .eut-carousel-buttons .eut-carousel-prev {
left: -60px;
}
#eut-feature-section .eut-carousel-buttons .eut-carousel-next {
right: -60px;
}
#eut-feature-section:hover .eut-carousel-buttons .eut-carousel-prev {
left: 30px;
}
#eut-feature-section:hover .eut-carousel-buttons .eut-carousel-next {
right: 30px;
} .single-post #eut-content:not(.eut-right-sidebar):not(.eut-left-sidebar) #eut-single-content .eut-container {
padding-left: 0;
padding-right: 0;
}
.single-post #eut-content:not(.eut-right-sidebar):not(.eut-left-sidebar) #eut-single-content img.aligncenter {
margin-left: -18%;
width: calc(100% + 36%);
max-width: initial;
} .eut-single-wrapper {
position: relative;
z-index: 5;
}
.eut-single-wrapper:before,
.eut-single-wrapper:after {
display: table;
content: " ";
}
.eut-single-wrapper:after {
clear: both;
}
.single-post #eut-single-media {
margin-bottom: 5%;
}
#eut-theme-wrapper .eut-single-section + .eut-navigation-bar.eut-layout-2 {
padding-top: 0;
} #eut-post-title .eut-title-meta-content,
#eut-feature-section .eut-title-meta-content {
margin-top: 30px;
} #eut-post-title .eut-title-categories {
margin-bottom: 24px;
}
#eut-post-title .eut-categories,
#eut-feature-section .eut-categories {
margin: 0;
list-style: none;
}
#eut-post-title .eut-categories li,
#eut-feature-section .eut-categories li {
display: inline-block;
vertical-align: top;
margin-bottom: 10px;
}
#eut-post-title .eut-categories li + li,
#eut-feature-section .eut-categories li + li {
margin-left: 6px;
}
#eut-post-title .eut-categories li a,
#eut-feature-section .eut-categories li a {
color: inherit;
display: block;
padding: 8px 10px;
border-width: 2px;
border-style: solid;
line-height: 1;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
#eut-post-title .eut-categories li a:hover,
#eut-feature-section .eut-categories li a:hover {
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow:    0 15px 35px -10px rgba(0,0,0,.3);
box-shadow:         0 15px 35px -10px rgba(0,0,0,.3);
-webkit-transform: translateY(-3px);
-moz-transform:    translateY(-3px);
-ms-transform:     translateY(-3px);
-o-transform:      translateY(-3px);
transform:         translateY(-3px);
} .eut-post-title-wrapper .eut-single-simple-title {
margin-bottom: 0;
}
.eut-post-title-wrapper .eut-post-meta {
margin-bottom: 0;
} #eut-single-media.eut-portfolio-media video {
width: 100%;
}
#eut-single-media.eut-fullwidth img {
width: 100%;
display: block;
}
#eut-single-media:not(.eut-fullwidth) img {
margin-left: auto;
margin-right: auto;
}
#eut-single-media .eut-gallery {
margin: 0;
list-style: none;
}
#eut-single-media .eut-gallery.eut-vertical-gallery li {
margin-bottom: 10px;
}
#eut-single-media .eut-gallery.eut-vertical-gallery li:last-child {
margin-bottom: 0;
} ul.eut-post-gallery {
overflow: hidden;
margin: 0 -15px -30px -15px;
list-style: none;
}
.eut-fullwidth ul.eut-post-gallery {
margin: 0 0 -30px 0;
padding: 0 15px;
}
ul.eut-post-gallery:before,
ul.eut-post-gallery:after {
display: table;
content: " ";
}
ul.eut-post-gallery:after {
clear: both;
}
ul.eut-post-gallery li {
float: left;
padding: 0 15px;
margin-bottom: 30px;
width: 33.33333333%;
}
@media only screen and (max-width: 1023px) {
ul.eut-post-gallery li {
float: none;
padding: 0;
margin-bottom: 30px;
width: 100%;
clear: both;
}
}
ul.eut-post-gallery li a {
display: block;
}
ul.eut-post-gallery li {
opacity: 1;
-webkit-transition : opacity .3s;
-moz-transition    : opacity .3s;
-ms-transition     : opacity .3s;
-o-transition      : opacity .3s;
transition         : opacity .3s;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
ul.eut-post-gallery li.hover {
opacity: 0.7;
} ul.eut-post-gallery.eut-vertical-style {
margin: 0;
list-style: none;
}
.eut-fullwidth ul.eut-post-gallery.eut-vertical-style {
padding: 0 30px;
}
ul.eut-post-gallery.eut-vertical-style li {
float: left;
padding: 0;
width: 100%;
}
ul.eut-post-gallery.eut-vertical-style li:last-child {
margin-bottom: 0;
} .eut-single-post-tags ul {
list-style: none;
margin: 0;
text-align: center;
}
.eut-single-post-tags ul li {
margin-right: 6px;
margin-bottom: 6px;
display: inline-block;
border-color: inherit;
}
.eut-single-post-tags ul li:last-child {
margin-right: 0;
}
.eut-single-post-tags ul li a {
padding: 5px 10px;
-webkit-border-radius: 3px;
border-radius: 3px;
line-height: 1.2em;
border: 2px solid;
border-color: inherit;
display: block;
color: inherit;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-box-shadow: none;
-moz-box-shadow:    none;
box-shadow:         none;
}
.eut-single-post-tags ul li a:hover {
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow:    0 15px 35px -10px rgba(0,0,0,.3);
box-shadow:         0 15px 35px -10px rgba(0,0,0,.3);
-webkit-transform: translateY(-3px);
-moz-transform:    translateY(-3px);
-ms-transform:     translateY(-3px);
-o-transform:      translateY(-3px);
transform:         translateY(-3px);
} .eut-about-author {
max-width: 590px;
margin: 0 auto;
padding: 0 7%;
text-align: center;
}
.eut-about-author .eut-about-author-text {
margin-bottom: 6px;
display: block;
position: relative;
}
.eut-about-author .eut-title {
margin-bottom: 18px;
}
.eut-about-author .eut-author-image {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
width: 16.3%;
}
.eut-about-author .eut-author-image img {
display: block;
-webkit-border-radius: 15%;
border-radius: 15%;
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow:    0 15px 35px -10px rgba(0,0,0,.3);
box-shadow:         0 15px 35px -10px rgba(0,0,0,.3);
} #eut-comments .eut-comment-nav li {
display: inline-block;
vertical-align: top;
padding-bottom: 0;
margin-bottom: 0;
margin-left: 1.154em;
}
#eut-comments .eut-comment-nav li a {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-comments .eut-comment-text {
margin-bottom: 18px;
}
#eut-comments .eut-comments-list,
#eut-comments .children {
margin: 0;
list-style: none;
}
#eut-comments .eut-comment-item {
margin-bottom: 2.500rem;
padding-bottom: 2.500rem;
}
#eut-comments .children .eut-comment-item {
margin-left: 2.500rem;
margin-top: 2.500rem;
padding-top: 2.500rem;
padding-bottom: 0;
}
#eut-comments .eut-comment-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
}
.eut-comment-item {
border-bottom: 1px solid;
}
.children .eut-comment-item {
border-top: 1px solid;
border-bottom: none;
}
.eut-comment-item:last-child {
border-bottom: none;
}
#eut-comments .eut-comment-header {
display: table;
width: 100%;
margin-bottom: 18px;
}
#eut-comments .eut-author-image {
display: table-cell;
width: 50px;
vertical-align: middle;
}
#eut-comments .eut-author-image img {
display: block;
max-width: 50px;
}
#eut-comments .eut-comment-title {
display: table-cell;
vertical-align: middle;
padding-left: 20px;
}
#eut-comments .eut-comment-date {
line-height: 1.2em;
font-size: 13px;
float: left;
color: inherit;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-comments .eut-comment-date:hover {
opacity: 1;
}
#eut-comments .eut-author {
line-height: 1.2em;
margin-bottom: 6px;
display: block;
}
#eut-comments .eut-comment-content {
padding-left: 70px;
} #eut-comments .eut-comment-type-pingback .eut-author-image,
#eut-comments .eut-comment-type-trackback .eut-author-image {
display: none;
}
#eut-comments .eut-comment-type-pingback .eut-comment-title,
#eut-comments .eut-comment-type-trackback .eut-comment-title {
padding-left: 0;
}
#eut-comments .eut-comment-type-pingback .eut-comment-content,
#eut-comments .eut-comment-type-trackback .eut-comment-content {
padding-left: 0;
}
#eut-comments .eut-reply-edit a {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-comments .eut-comment-reply + .eut-comment-edit {
margin-left: 1.154em;
}
#eut-comments .comment + #respond {
margin-top: 30px;
}
#eut-comments .eut-comment-nav ul {
list-style: none;
margin: 0;
}
@media only screen and (max-width: 767px) {
#eut-comments .eut-author-image {
display: block;
margin-bottom: 6px;
}
#eut-comments .eut-comment-title {
display: block;
padding: 0px;
}
#eut-comments .eut-comment-content {
padding: 0;
}
} #eut-comments-section #eut-comment-form {
background-color: #F7F7F7;
}
#eut-comment-form .eut-form-input.eut-half-size {
width: 50%;
float: left;
}
#eut-comment-form .comment-form {
margin: 0 -12px;
}
#eut-comment-form .eut-form-textarea,
#eut-comment-form .eut-form-input {
padding: 0 12px;
}
#eut-comment-form input[type="text"],
#eut-comment-form textarea {
background-color: #ffffff;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#eut-comment-form p.form-submit {
margin-bottom: 0;
}
#eut-comment-form #eut-comment-submit-button {
margin-top: 24px;
}
.eut-form-textarea textarea {
resize:none;
}
@media only screen and (max-width: 767px) {
#respond {
padding: 0;
}
#eut-comment-form .eut-form-input.eut-half-size {
width: 100%;
float: none;
}
#eut-comment-form .eut-form-input {
width: 100%;
float: none;
margin-right: 0;
}
}
#reply-title {
line-height: 1.2;
margin-bottom: 30px;
}
#eut-comment-form .logged-in-as {
margin-top: -24px;
margin-bottom: 30px;
}
#disqus_thread {
margin-left: auto;
margin-right: auto;
max-width: 1170px;
padding: 15px;
} .eut-portfolio-info {
border-bottom: 1px solid;
padding-bottom: 30px;
}
.eut-portfolio-info:last-child {
border-bottom: none;
padding-bottom: 0;
}
.eut-portfolio-info + .eut-widget {
padding-top: 30px;
}
.eut-portfolio-fields {
margin: 0;
list-style: none;
}
.eut-portfolio-fields li {
border-color: inherit;
line-height: 1.2;
margin-bottom: 15px;
display: table;
table-layout: fixed;
width: 100%;
}
.eut-portfolio-fields li .eut-fields-description {
line-height: 1.2;
}
.eut-portfolio-fields li span {
display: table-cell;
}
.eut-portfolio-fields .eut-field-label {
width: 150px;
}
.eut-portfolio-info .eut-portfolio-fields,
.eut-portfolio-info #eut-portfolio-social-bar {
border-top: 1px solid;
margin-top: 30px;
padding-top: 30px;
}
.eut-portfolio-info .eut-portfolio-fields:first-child,
.eut-portfolio-info #eut-portfolio-social-bar:first-child {
border-top: none;
padding-top: 0;
} .eut-portfolio-info #eut-portfolio-social-bar {
display: table;
table-layout: fixed;
width: 100%;
text-align: left;
}
.eut-portfolio-info .eut-social-bar .eut-socials-bar-title {
margin-bottom: 0;
display: table-cell;
vertical-align: middle;
width: 150px;
}
.eut-portfolio-info .eut-social-bar .eut-bar-socials {
display: table-cell;
vertical-align: middle;
line-height: 1.2;
font-size: 18px;
}
.eut-portfolio-info .eut-social-bar .eut-bar-socials li {
margin: 0 8px 0 0;
} .eut-related .eut-related-title {
margin-bottom: 0;
}
.eut-related .eut-related-title .eut-description {
margin-bottom: 6px;
}
.eut-related .eut-related-title .eut-title {
margin-bottom: 0;
}
.eut-related .eut-column-wrapper {
-webkit-border-radius: 10px;
border-radius: 10px;
overflow: hidden;
}
.eut-related .eut-with-shadow {
background-color: rgba(255, 255, 255, 0.1);
}
.eut-related .eut-post-content-wrapper {
padding: 10%;
}
.eut-related .eut-section {
margin-top: 36px;
}
.eut-related .eut-media {
position: relative;
padding-bottom: 80%;
}
.eut-related .eut-media .eut-bg-image {
opacity: 1;
}
.eut-related .eut-column {
-webkit-transition : transform .3s;
-moz-transition    : transform .3s;
-ms-transition     : transform .3s;
-o-transition      : transform .3s;
transition         : transform .3s;
}
.eut-related .eut-column:hover {
-webkit-transform: translateY(-10px);
-moz-transform:    translateY(-10px);
-ms-transform:     translateY(-10px);
-o-transform:      translateY(-10px);
transform:         translateY(-10px);
} #eut-post-social-bar {
margin-bottom: 30px;
}
#eut-post-social-bar:last-child {
margin-bottom: 60px;
}
.eut-social-bar {
display: block;
text-align: center;
line-height: 1;
}
.eut-social-bar .eut-socials-bar-title {
display: inline-block;
vertical-align: top;
margin-right: 18px;
line-height: inherit;
}
.eut-social-bar .eut-bar-socials {
list-style: none;
margin: 0;
display: inline-block;
vertical-align: top;
line-height: inherit;
}
.eut-social-bar .eut-bar-socials li {
display: inline-block;
vertical-align: middle;
}
.eut-social-bar .eut-bar-socials li + li {
margin-left: 12px;
}
.eut-social-bar .eut-bar-socials li a {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
color: inherit;
}
.eut-social-bar .eut-like-counter-link {
position: relative;
}
.eut-social-bar .eut-like-counter {
position: absolute;
top: 2px;
left: 100%;
margin-left: 2px;
text-align: left;
font-size: 12px;
line-height: 1.2;
} .eut-navigation-bar {
position: relative;
z-index: 100;
}
.eut-navigation-bar .eut-bg-overlay {
background-color: rgba(34,36,39,0.3);
}
.eut-post-bar-item:before,
.eut-post-bar-item:after {
display: table;
content: " ";
}
.eut-post-bar-item:after {
clear: both;
}
.eut-navigation-bar.eut-layout-1 .eut-arrow {
display: inline-block;
vertical-align: middle;
text-align: center;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-navigation-bar.eut-layout-1 .eut-prev .eut-arrow {
margin-right: 5px;
}
.eut-navigation-bar.eut-layout-1 .eut-next .eut-arrow {
margin-left: 5px;
}
@media only screen and (min-width: 768px) {
.eut-navigation-bar.eut-layout-1 .eut-prev:hover .eut-arrow {
-webkit-transform: translateX(-10px);
-moz-transform:    translateX(-10px);
-ms-transform:     translateX(-10px);
-o-transform:      translateX(-10px);
transform:         translateX(-10px);
}
.eut-navigation-bar.eut-layout-1 .eut-next:hover .eut-arrow {
-webkit-transform: translateX(10px);
-moz-transform:    translateX(10px);
-ms-transform:     translateX(10px);
-o-transform:      translateX(10px);
transform:         translateX(10px);
}
}
.eut-navigation-bar.eut-layout-1 .eut-title {
display: inline-block;
vertical-align: middle;
margin-bottom: 0;
font-size: 90%;
line-height: 1.3em;
max-width: calc(100% - 40px);
}
.eut-navigation-bar.eut-layout-1 a {
display: inline-block;
vertical-align: middle;
}
.eut-navigation-bar.eut-layout-1 .eut-nav-item {
width: 25%;
}
.eut-navigation-bar.eut-layout-1 .eut-prev {
float: left;
text-align: left;
}
.eut-navigation-bar.eut-layout-1 .eut-next {
float: right;
text-align: right;
}
@media only screen and (max-width: 767px) {
.eut-navigation-bar.eut-layout-1 .eut-title {
display: none;
}
.eut-navigation-bar.eut-layout-1 .eut-nav-item {
padding: 5px;
min-width: 70px;
}
.eut-navigation-bar.eut-layout-1 .eut-arrow {
margin: 0;
text-align: center;
}
} .eut-navigation-bar.eut-layout-2 .eut-bar-wrapper:before,
.eut-navigation-bar.eut-layout-2 .eut-bar-wrapper:after {
display: table;
content: " ";
}
.eut-navigation-bar.eut-layout-2 .eut-bar-wrapper:after {
clear: both;
}
.eut-navigation-bar.eut-layout-2 .eut-bar-wrapper {
margin: 0 -1px;
}
.eut-navigation-bar.eut-layout-2 .eut-nav-item {
float: left;
width: 50%;
padding: 0 1px;
}
.eut-navigation-bar.eut-layout-2 .eut-nav-item-wrapper {
position: relative;
height: 280px;
background-color: #222427;
overflow: hidden;
}
.eut-navigation-bar.eut-layout-2 .eut-title {
position: absolute;
top: 50%;
left: 0;
width: 100%;
padding: 0 17%;
text-align: center;
z-index: 3;
color: #ffffff;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
-webkit-transition : opacity .3s;
-moz-transition    : opacity .3s;
-ms-transition     : opacity .3s;
-o-transition      : opacity .3s;
transition         : opacity .3s;
}
.eut-navigation-bar.eut-layout-2 .eut-nav-item:hover .eut-bg-overlay {
opacity: 0;
}
.eut-navigation-bar.eut-layout-2 .eut-nav-item .eut-background-wrapper {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-navigation-bar.eut-layout-2 .eut-nav-item:hover .eut-background-wrapper {
-webkit-transform: scale(1.05);
-moz-transform:    scale(1.05);
-ms-transform:     scale(1.05);
-o-transform:      scale(1.05);
transform:         scale(1.05);
} .eut-navigation-bar .eut-backlink {
position: absolute;
top: 50%;
left: 50%;
background-color: #ffffff;
z-index: 4;
-webkit-transform: translate(-50%,-50%);
-moz-transform:    translate(-50%,-50%);
-ms-transform:     translate(-50%,-50%);
-o-transform:      translate(-50%,-50%);
transform:         translate(-50%,-50%);
}
.eut-navigation-bar.eut-layout-1 .eut-backlink {
width: 48px;
height: 48px;
line-height: 48px;
}
.eut-backlink svg {
width: 14px;
height: 14px;
margin-top: -7px;
margin-left: -7px;
} .eut-navigation-bar.eut-layout-3 .eut-container {
max-width: none !important;
width: 100% !important;
}
.eut-navigation-bar.eut-layout-3 .eut-title {
position: absolute;
top: 50%;
left: 50%;
z-index: 3;
-webkit-transform: translate(-50%,-50%);
-moz-transform:    translate(-50%,-50%);
-ms-transform:     translate(-50%,-50%);
-o-transform:      translate(-50%,-50%);
transform:         translate(-50%,-50%);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-navigation-bar.eut-layout-3 .eut-title-inner {
position: absolute;
left: 100%;
top: 0;
padding-left: 30px;
opacity: 0;
white-space: nowrap;
-webkit-transition : opacity .3s;
-moz-transition    : opacity .3s;
-ms-transition     : opacity .3s;
-o-transition      : opacity .3s;
transition         : opacity .3s;
}
.eut-navigation-bar.eut-layout-3 a:hover .eut-title {
-webkit-transform: translate(-100%,-50%);
-moz-transform:    translate(-100%,-50%);
-ms-transform:     translate(-100%,-50%);
-o-transform:      translate(-100%,-50%);
transform:         translate(-100%,-50%);
}
.eut-navigation-bar.eut-layout-3 a:hover .eut-title-inner {
opacity: 1;
}
.eut-navigation-bar.eut-layout-3 .eut-background-wrapper {
opacity: 0;
-webkit-transition : opacity .3s;
-moz-transition    : opacity .3s;
-ms-transition     : opacity .3s;
-o-transition      : opacity .3s;
transition         : opacity .3s;
}
.eut-navigation-bar.eut-layout-3 a:hover .eut-background-wrapper {
opacity: 0.5;
}
@media only screen and (max-width: 767px) {
.eut-navigation-bar.eut-layout-3 a:hover .eut-title {
-webkit-transform: translate(-50%,-50%);
-moz-transform:    translate(-50%,-50%);
-ms-transform:     translate(-50%,-50%);
-o-transform:      translate(-50%,-50%);
transform:         translate(-50%,-50%);
}
.eut-navigation-bar.eut-layout-3 .eut-title-inner {
display: none;
}
} .eut-pagination {
margin-top: 2.500rem;
}
.eut-pagination ul {
list-style: none;
margin: 0;
text-align: center;
}
.eut-pagination ul li {
display: inline-block;
vertical-align: top;
margin: 0 6px;
text-align: center;
}
.eut-pagination ul li > span,
.eut-pagination ul li a {
display: block;
color: inherit;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-pagination ul li a {
opacity: 0.3;
}
.eut-pagination li .current a,
.eut-pagination li a:hover {
opacity: 1;
}
.eut-pagination ul li i {
font-size: inherit;
line-height: inherit;
} .eut-breadcrumbs {
border-top: 1px solid;
border-bottom: 1px solid;
position: relative;
z-index: 5;
}
.eut-breadcrumbs.eut-fullwidth {
padding: 0 20px;
}
.eut-breadcrumbs ul {
list-style: none;
margin: 0;
}
.eut-breadcrumbs ul li {
display: inline-block;
}
.eut-breadcrumbs ul li a:hover {
text-decoration: underline;
} #eut-content.eut-left-sidebar,
#eut-content.eut-right-sidebar {
overflow: hidden;
}
#eut-content.eut-left-sidebar .eut-content-wrapper,
#eut-content.eut-right-sidebar .eut-content-wrapper {
max-width: 1220px;
margin-right: auto;
margin-left: auto;
position: relative;
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
body:not(.eut-boxed).single-post #eut-theme-wrapper:not(.eut-header-side) #eut-content.eut-left-sidebar .eut-content-wrapper,
body:not(.eut-boxed).single-post #eut-theme-wrapper:not(.eut-header-side) #eut-content.eut-right-sidebar .eut-content-wrapper {
padding-left: 100px;
padding-right: 100px;
}
}
#eut-content.eut-right-sidebar .eut-content-wrapper:before,
#eut-content.eut-right-sidebar .eut-content-wrapper:after,
#eut-content.eut-left-sidebar .eut-content-wrapper:before,
#eut-content.eut-left-sidebar .eut-content-wrapper:after {
display: table;
content: " ";
}
#eut-content.eut-right-sidebar .eut-content-wrapper:after,
#eut-content.eut-left-sidebar .eut-content-wrapper:after {
clear: both;
}
#eut-content.eut-left-sidebar .eut-container,
#eut-content.eut-right-sidebar .eut-container {
padding-left: 0;
padding-right: 0;
width: 100%;
}
#eut-content.eut-left-sidebar #eut-main-content {
width: 70%;
float: right;
padding-left: 30px;
}
#eut-content.eut-right-sidebar #eut-main-content {
width: 70%;
float: left;
padding-right: 30px;
}
#eut-sidebar {
position: relative;
z-index: 5;
}
#eut-sidebar.eut-fixed-sidebar {
visibility: hidden;
}
#eut-content.eut-left-sidebar #eut-sidebar {
width: 30%;
float: left;
}
#eut-content.eut-right-sidebar #eut-sidebar {
width: 30%;
float: right;
}
@media only screen and (max-width: 1023px) {
#eut-content.eut-right-sidebar #eut-main-content,
#eut-content.eut-left-sidebar #eut-main-content {
width: auto;
padding-left: 0;
padding-right: 0;
float: none;
}
#eut-content.eut-right-sidebar #eut-sidebar,
#eut-content.eut-left-sidebar #eut-sidebar {
width: 90%;
float: none;
margin-left: auto;
margin-right: auto;
padding-left: 0;
padding-right: 0;
padding-top: 30px !important;
padding-bottom: 30px !important;
}
} .eut-hidden-area {
display: none;
position: fixed;
width: 650px;
height: 100%;
top: 0;
right: -30px;
bottom: 0;
z-index: 10000;
background-color: #ffffff;
-webkit-transform: translate3d(100%, 0, 0);
-moz-transform:    translate3d(100%, 0, 0);
-ms-transform:     translate3d(100%, 0, 0);
-o-transform:      translate3d(100%, 0, 0);
transform:         translate3d(100%, 0, 0);
-webkit-transition: -webkit-transform 0.5s ease-in-out;
-moz-transition:    -moz-transform 0.5s ease-in-out;
-o-transition:      -o-transform 0.5s ease-in-out;
transition:         transform 0.5s ease-in-out;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-hidden-area.open {
-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);
}
.eut-hiddenarea-wrapper {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
padding-right: 30px;
padding-bottom: 90px;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.eut-hidden-area.prepare-anim {
display: block;
}
.eut-hidden-area .eut-hiddenarea-content {
width: 50%;
min-width: 270px;
margin: 0 auto;
display: block;
overflow: hidden;
}
.eut-hidden-area .eut-hidden-menu-text {
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
-moz-transition:    -moz-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
-o-transition:      -o-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
transition:         transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s;
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(100px);
-moz-transform:    translateY(100px);
-ms-transform:     translateY(100px);
-o-transform:      translateY(100px);
transform:         translateY(100px);
}
.eut-hidden-area.open .eut-hidden-menu-text {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
}
.eut-hidden-area .eut-hidden-menu-text + .eut-header-responsive-elements {
margin-top: 60px;
}
.eut-hidden-area .eut-scroller {
padding: 0 30px 0 0;
}
.eut-toggle-sidearea {
cursor: pointer;
}
.eut-scroller {
overflow: auto;
position: relative;
}
.eut-hidden-area .eut-close-btn {
-webkit-transform: translate3d(0, -200%, 0);
-moz-transform:    translate3d(0, -200%, 0);
-ms-transform:     translate3d(0, -200%, 0);
-o-transform:      translate3d(0, -200%, 0);
transform:         translate3d(0, -200%, 0);
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
-moz-transition:    -moz-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
-o-transition:      -o-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
transition:         transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s;
}
.eut-hidden-area.open .eut-close-btn {
-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);
}
.eut-hidden-area.eut-animated-menu-items ul.eut-menu .eut-first-level {
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(100px);
-moz-transform:    translateY(100px);
-ms-transform:     translateY(100px);
-o-transform:      translateY(100px);
transform:         translateY(100px);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-hidden-area.eut-animated-menu-items ul.eut-menu .eut-first-level.show {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
} .eut-close-btn-wrapper {
display: block;
margin: 30px auto 60px auto;
width: 50%;
min-width: 270px;
}
.eut-close-btn {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 18px;
text-align: left;
cursor: pointer;
display: inline-block;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.eut-close-btn i {
font-size: inherit;
line-height: inherit;
} .eut-close-btn.eut-close-arrow:hover span {
width: 40px;
}
.eut-close-btn.eut-close-arrow:hover:before {
width: 15px;
-webkit-transform: translateX(2px) translateY(-5px) rotate(-45deg);
-moz-transform:    translateX(2px) translateY(-5px) rotate(-45deg);
-ms-transform:     translateX(2px) translateY(-5px) rotate(-45deg);
-o-transform:      translateX(2px) translateY(-5px) rotate(-45deg);
transform:         translateX(2px) translateY(-5px) rotate(-45deg);
}
.eut-close-btn.eut-close-arrow:hover:after {
width: 15px;
-webkit-transform: translateX(2px) translateY(5px) rotate(-135deg);
-moz-transform:    translateX(2px) translateY(5px) rotate(-135deg);
-ms-transform:     translateX(2px) translateY(5px) rotate(-135deg);
-o-transform:      translateX(2px) translateY(5px) rotate(-135deg);
transform:         translateX(2px) translateY(5px) rotate(-135deg);
} .eut-close-modal {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 24px;
text-align: center;
cursor: pointer;
display: inline-block;
position: fixed;
top: 30px;
right: 30px;
z-index: 9999;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-modal-dialog .eut-close-modal {
position: absolute;
top: 0px;
right: 0px;
font-size: 24px;
}
.eut-close-modal:before {
font-size: inherit;
line-height: inherit;
}
.eut-close-modal:hover {
-webkit-transform: scale(1.2);
-moz-transform:    scale(1.2);
-ms-transform:     scale(1.2);
-o-transform:      scale(1.2);
transform:         scale(1.2);
}
.eut-modal {
display: none;
visibility: hidden;
opacity: 0;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10000;
overflow-x: hidden;
overflow-y: auto;
-webkit-filter: blur(0);
-webkit-overflow-scrolling: touch;
outline: 0;
height: 100%;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-modal-wrapper {
position: relative;
max-width: 600px;
width: 100%;
height: 100%;
display: table;
margin: 0 auto;
}
.eut-modal-content {
position: relative;
display: table-cell;
vertical-align: middle;
padding: 100px 15px;
}
.eut-modal.prepare-anim {
display: block;
}
.eut-modal.animate {
display: block;
visibility: visible;
opacity: 1;
} #eut-search-modal .eut-search {
max-width: 100%;
position: relative;
text-align: center;
}
#eut-theme-wrapper .eut-modal .eut-search input[type='text'] {
background: none;
padding: 20px;
border: none;
border-bottom: 1px solid;
border-color: inherit;
line-height: 1.2 !important;
height: auto;
text-align: center;
z-index: 4;
margin-bottom: 11%;
}
#eut-theme-wrapper .eut-modal .eut-search .eut-search-input-wrapper {
position: relative;
}
#eut-search-modal ::-webkit-input-placeholder {
color: inherit;
}
#eut-search-modal :-moz-placeholder { color: inherit;
}
#eut-search-modal ::-moz-placeholder { color: inherit;
}
#eut-search-modal :-ms-input-placeholder {
color: inherit;
} #eut-socials-modal .eut-social {
margin: 0;
margin-bottom: -15px;
list-style: none;
}
#eut-socials-modal .eut-social li {
display: inline-block;
margin: 0px 8px 15px 8px;
}
#eut-socials-modal .eut-social li a {
width: 56px;
height: 56px;
line-height: 52px;
text-align: center;
border: 2px solid;
font-size: 18px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
} #eut-language-modal {
text-align: center;
}
#eut-language-modal ul {
display: block;
list-style: none;
margin: 0;
}
#eut-language-modal ul li {
display: inline-block;
}
#eut-language-modal ul li a {
display: block;
padding: 0px 20px;
line-height: 40px;
margin: 10px;
border: 2px solid;
-webkit-border-radius: 50px;
border-radius: 50px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
} #eut-login-modal .eut-modal-item {
width: 320px;
}
#eut-login-modal .eut-login-modal-footer {
padding-top: 20px;
}
#eut-login-modal .eut-form-errors {
padding: 15px 0;
}
#eut-login-modal .eut-form-field,
#eut-login-modal .eut-login-form-title {
display: block;
text-align: center;
}
#eut-login-modal .eut-login-form-description {
display: block;
margin-bottom: 15px;
}
#eut-theme-wrapper #eut-login-modal input[type='text'],
#eut-theme-wrapper #eut-login-modal input[type='email'],
#eut-theme-wrapper #eut-login-modal input[type='password'] {
border-top: none;
border-left: none;
border-right: none;
text-align: center;
}
#eut-theme-wrapper #eut-login-modal button[type="submit"] {
margin-bottom: 2.222rem;
}
#eut-theme-wrapper .eut-reset-password-form-btn,
#eut-theme-wrapper .eut-login-link a,
#eut-theme-wrapper .eut-alert-info a {
display: inline-block;
color: inherit;
opacity: 0.5;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
#eut-theme-wrapper .eut-reset-password-form-btn:hover,
#eut-theme-wrapper .eut-login-link a:hover,
#eut-theme-wrapper .eut-alert-info a:hover {
opacity: 1;
} .eut-mask-wrapper {
width: 100vw;
height: 100vh;
position: fixed;
z-index: 9999;
bottom: 100%;
left: 0;
visibility: hidden;
pointer-events: none;
}
.eut-mask-wrapper.eut-layer-animate {
visibility: visible;
}
.eut-mask-layer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 9998;
}
.eut-layer-animate .eut-mask-layer {
-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);
-webkit-animation: anim-layer-1 1.5s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;
animation: anim-layer-1 1.5s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;
}
.eut-layer-animate .eut-layer-2 {
-webkit-animation-name: anim-layer-2;
animation-name: anim-layer-2;
}
.eut-layer-animate .eut-layer-3 {
-webkit-animation-name: anim-layer-3;
animation-name: anim-layer-3;
}
@-webkit-keyframes anim-layer-1 {
0% {
-webkit-transform: translate3d(0, 0, 0);
}
25%,
75% {
-webkit-transform: translate3d(0, 100%, 0);
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
100% {
-webkit-transform: translate3d(0, 200%, 0);
}
}
@keyframes anim-layer-1 {
0% {
transform: translate3d(0, 0, 0);
}
25%,
75% {
transform: translate3d(0, 100%, 0);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
100% {
transform: translate3d(0, 200%, 0);
}
}
@-webkit-keyframes anim-layer-2 {
0%,
12.5% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
37.5%,
62.5% {
-webkit-transform: translate3d(0, 100%, 0);
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
87.5%,
100% {
-webkit-transform: translate3d(0, 200%, 0);
}
}
@keyframes anim-layer-2 {
0%,
12.5% {
transform: translate3d(0, 0, 0);
}
37.5%,
62.5% {
transform: translate3d(0, 100%, 0);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
87.5%,
100% {
transform: translate3d(0, 200%, 0);
}
}
@-webkit-keyframes anim-layer-3 {
0%,
25% {
-webkit-transform: translate3d(0, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
75%,
100% {
-webkit-transform: translate3d(0, 200%, 0);
}
}
@keyframes anim-layer-3 {
0%,
25% {
transform: translate3d(0, 0, 0);
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
75%,
100% {
transform: translate3d(0, 200%, 0);
}
}
.eut-safebutton-logo {
position: absolute;
top: 150%;
left: 50%;
z-index: 9999;
-webkit-transform: translate(-50%, -50%);
-moz-transform:    translate(-50%, -50%);
-ms-transform:     translate(-50%, -50%);
-o-transform:      translate(-50%, -50%);
transform:         translate(-50%, -50%);
-webkit-animation: mask-logo-anim 1s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;
animation: mask-logo-anim 1s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;
display: none;
}
.eut-safebutton-logo.show {
display: block;
}
@-webkit-keyframes mask-logo-anim {
0% {
-webkit-transform: translate(-50%, -50%);
opacity: 0;
}
35%,
75% {
-webkit-transform: translate(-50%, -50%);
opacity: 1;
}
100% {
-webkit-transform: translate(-50%, 50%);
opacity: 0;
}
}
@keyframes mask-logo-anim {
0% {
transform: translate(-50%, -50%);
opacity: 0;
}
35%,
75% {
transform: translate(-50%, -50%);
opacity: 1;
}
100% {
transform: translate(-50%, 50%);
opacity: 0;
}
} #eut-theme-wrapper .wpcf7 {
color: inherit !important;
}
.wpcf7 {
position: relative;
}
span.wpcf7-form-control-wrap {
display: block;
width: 100%;
}
div.wpcf7-mail-sent-ok {
left: 0;
border: none;
margin: 0 0 10px 0;
z-index: 1;
color: #f00000 !important;
}
span.wpcf7-not-valid-tip {
position: relative;
border: none;
margin: -12px 0 18px 0;
text-align: left;
padding: 0;
z-index: 1;
font-size: 12px !important;
color: #f00000 !important;
}
div.wpcf7-validation-errors {
position: relative;
border: none;
margin: 18px 0 0 0;
text-align: left;
padding: 0;
z-index: 1;
color: #f00000 !important;
}
div.wpcf7-mail-sent-ok {
border: none;
margin: 20px 0 0 0;
text-align: center;
left: 0;
z-index: 1;
color: #79ca99 !important;
}
.eut-fields-wrapper > div {
padding: 0 9px;
width: 100%;
}
.eut-fields-wrapper {
margin: 0 -9px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
} .eut-fields-wrapper .eut-one-third {
width: 33.33333333%;
}
.eut-fields-wrapper .eut-one-half {
width: 50%;
}
.eut-fields-wrapper .eut-one-quarter {
width: 25%;
}
.eut-fields-wrapper .eut-one-fifth {
width: 20%;
}
.eut-fields-wrapper .eut-one-third,
.eut-fields-wrapper .eut-one-half,
.eut-fields-wrapper .eut-one-quarter,
.eut-fields-wrapper .eut-one-fifth {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
margin-bottom: 18px;
}
.eut-last-column + * {
clear: both;
}
.eut-fields-wrapper .eut-one-third input,
.eut-fields-wrapper .eut-one-half input,
.eut-fields-wrapper .eut-one-quarter input,
.eut-fields-wrapper .eut-one-fifth input {
height: 100%;
margin: 0;
}
.eut-fields-wrapper .eut-one-third input[type="submit"],
.eut-fields-wrapper .eut-one-half input[type="submit"],
.eut-fields-wrapper .eut-one-quarter input[type="submit"],
.eut-fields-wrapper .eut-one-fifth input[type="submit"] {
width: 100%;
}
div.wpcf7 .ajax-loader,
.wpcf7-spinner {
display: none;
}
@media only screen and (max-width: 900px) {
.eut-fields-wrapper .eut-one-third,
.eut-fields-wrapper .eut-one-half,
.eut-fields-wrapper .eut-one-quarter,
.eut-fields-wrapper .eut-one-fifth {
width: 50%;
}
.eut-fields-wrapper .eut-one-quarter {
width: 50%;
}
.eut-fields-wrapper .eut-one-third.eut-last-column,
.eut-fields-wrapper .eut-one-fifth.eut-last-column {
width: 100%;
}
}
@media only screen and (max-width: 767px) {
.eut-fields-wrapper .eut-one-third,
.eut-fields-wrapper .eut-one-half,
.eut-fields-wrapper .eut-one-quarter,
.eut-fields-wrapper .eut-one-fifth {
width: 100%;
}
}
#eut-theme-wrapper .eut-modal p,
#eut-theme-wrapper .eut-modal input[type='text'],
#eut-theme-wrapper .eut-modal input[type='input'],
#eut-theme-wrapper .eut-modal input[type='password'],
#eut-theme-wrapper .eut-modal input[type='email'],
#eut-theme-wrapper .eut-modal input[type='number'],
#eut-theme-wrapper .eut-modal input[type='url'],
#eut-theme-wrapper .eut-modal input[type='tel'],
#eut-theme-wrapper .eut-modal input[type='search'],
#eut-theme-wrapper .eut-modal textarea,
#eut-theme-wrapper .eut-modal select {
color: inherit;
border-color: inherit;
} #eut-theme-wrapper .eut-fields-white-bg input,
#eut-theme-wrapper .eut-fields-white-bg textarea,
#eut-theme-wrapper .eut-fields-white-bg select {
background-color: #ffffff;
}
#eut-theme-wrapper .eut-fields-grey-bg input,
#eut-theme-wrapper .eut-fields-grey-bg textarea,
#eut-theme-wrapper .eut-fields-grey-bg select {
background-color: #f7f7f7;
} #eut-theme-wrapper .eut-fields-round input,
#eut-theme-wrapper .eut-fields-round textarea,
#eut-theme-wrapper .eut-fields-round select {
-webkit-border-radius: 3px;
border-radius: 3px;
}
#eut-theme-wrapper .eut-fields-extra-round input,
#eut-theme-wrapper .eut-fields-extra-round textarea,
#eut-theme-wrapper .eut-fields-extra-round select {
-webkit-border-radius: 50px;
border-radius: 50px;
} #eut-theme-wrapper  .eut-underline input,
#eut-theme-wrapper  .eut-underline textarea,
#eut-theme-wrapper  .eut-underline select {
border: none;
border-bottom: 1px solid;
border-color: inherit;
} #eut-theme-wrapper  .eut-form-light div span {
color: #ffffff;
border-color: rgba(255,255,255,0.3);
} #eut-theme-wrapper .eut-newsletter .eut-fields-wrapper {
margin: 0;
display: flex;
flex-direction: row;
align-items: stretch;
height: 100%;
}
#eut-theme-wrapper .eut-newsletter span.wpcf7-form-control-wrap {
width: 70%;
}
.eut-body #eut-theme-wrapper .eut-newsletter .eut-fields-wrapper input[type='email'] {
height: 100%;
margin: 0;
border-right: none;
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}
.eut-body #eut-theme-wrapper .eut-newsletter .eut-fields-wrapper input[type="submit"] {
width: 30%;
min-height: 45px;
min-width: auto;
margin: 0 !important;
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}
@media only screen and (max-width: 767px) {
#eut-theme-wrapper .eut-newsletter .eut-fields-wrapper {
flex-direction: column;
}
#eut-theme-wrapper .eut-newsletter span.wpcf7-form-control-wrap {
width: 100%;
}
.eut-body #eut-theme-wrapper .eut-newsletter .eut-fields-wrapper input[type='email'] {
border-right-width: 1px;
border-right-style: solid;
border-right-color: inherit;
-webkit-border-radius: 0px !important;
border-radius: 0px !important;
text-align: center;
}
.eut-body #eut-theme-wrapper .eut-newsletter .eut-fields-wrapper input[type="submit"] {
width: 100%;
margin: 18px 0 !important;
-webkit-border-radius: 0px !important;
border-radius: 0px !important;
}
} .wpcf7-form .eut-with-icon {
position: relative;
}
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
margin-bottom: 20px;
display: block;
}
.wpcf7-form .eut-with-icon i {
position: absolute;
top: 14px;
left: 16px;
width: 40px;
text-align: center;
}
#eut-theme-wrapper .wpcf7-form .eut-with-icon input {
padding-left: 40px;
} .wpcf7-form span.wpcf7-list-item {
line-height: 1;
margin: 0 18px 0 0;
position: relative;
}
.wpcf7-form .wpcf7-list-item-label {
padding-left: 28px;
display: inline-block;
vertical-align: top;
line-height: 20px;
}
.wpcf7-form input[type='radio']:checked,
.wpcf7-form input[type='radio']:not(:checked),
.wpcf7-form input[type='checkbox']:checked,
.wpcf7-form input[type='checkbox']:not(:checked) {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 20px;
height: 20px;
margin: 0;
cursor: pointer;
opacity: 0;
}
.wpcf7-form .wpcf7-list-item-label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 18px;
height: 18px;
border-width: 1px;
border-style: solid;
border-color: inherit;
background: #fff;
}
.wpcf7-form input:checked + .wpcf7-list-item-label:after {
content: '';
width: 12px;
height: 12px;
background: #F87DA9;
position: absolute;
top: 4px;
left: 4px;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.wpcf7-form input[type='radio'] + .wpcf7-list-item-label:before {
-webkit-border-radius: 100%;
border-radius: 100%;
}
.wpcf7-form input[type='radio']:checked + .wpcf7-list-item-label:after {
-webkit-border-radius: 100%;
border-radius: 100%;
} #eut-theme-wrapper .frm_forms select {
padding: 0 15px;
min-height: 42px;
}
#eut-theme-wrapper .frm_rootline_single input[type='button'] {
padding: 0 !important;
margin: 0 !important;
-webkit-border-radius: 100% !important;
border-radius: 100% !important;
} .eut-anchor-menu {
position: relative;
}
.eut-anchor-menu .eut-anchor-wrapper {
width: 100%;
z-index: 999;
border-top: 1px solid;
border-bottom: 1px solid;
position: relative;
}
.eut-anchor-menu .eut-container,
.eut-anchor-menu > ul > li {
line-height: inherit;
}
.eut-anchor-menu ul {
margin: 0;
list-style: none;
font-size: 0;
line-height: inherit;
}
.eut-anchor-menu ul li {
text-align: left;
}
.eut-anchor-menu .eut-container ul.sub-menu li {
display: block;
}
.eut-anchor-menu .eut-container a {
position: relative;
line-height: inherit !important;
}
.eut-anchor-menu .eut-container ul.sub-menu li a {
padding: 15px 20px;
display: block;
}
.eut-anchor-menu .eut-anchor-btn {
text-align: left;
vertical-align: top;
font-size: 18px;
display: block;
}
.eut-anchor-menu .eut-anchor-btn i {
display: inline-block;
vertical-align: middle;
}
.eut-anchor-menu .eut-container > ul > li > a {
display: block;
padding: 0 20px;
}
.eut-anchor-menu .eut-container ul.sub-menu {
line-height: 1.4;
display: none;
} .eut-anchor-menu a .eut-arrow {
position: absolute;
top: 0;
right: 0;
width: 30px;
height: 100%;
z-index: 10;
margin-top: 1px;
display: inline-block;
line-height: inherit;
text-align: right;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.eut-anchor-menu a .eut-arrow:after,
.eut-anchor-menu a .eut-arrow:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: rotate(0deg);
-moz-transform:    rotate(0deg);
-ms-transform:     rotate(0deg);
-o-transform:      rotate(0deg);
transform:         rotate(0deg);
-webkit-transition : all .3s ease .3s;
-moz-transition    : all .3s ease .3s;
-ms-transition     : all .3s ease .3s;
-o-transition      : all .3s ease .3s;
transition         : all .3s ease .3s;
background-color: #333333;
}
.eut-anchor-menu a .eut-arrow:after {
width: 9px;
height: 1px;
margin-left: -5px;
margin-top: -1px;
}
.eut-anchor-menu a .eut-arrow:before {
width: 1px;
height: 9px;
margin-left: -1px;
margin-top: -5px;
}
.eut-anchor-menu .open > a .eut-arrow:after,
.eut-anchor-menu .open > a .eut-arrow:before {
-webkit-transform: rotate(45deg);
-moz-transform:    rotate(45deg);
-ms-transform:     rotate(45deg);
-o-transform:      rotate(45deg);
transform:         rotate(45deg);
}
.eut-anchor-menu .eut-anchor-btn {
display: none;
}
.eut-anchor-menu ul li {
display: inline-block;
vertical-align: top;
position: relative;
}
.eut-anchor-menu a .eut-arrow {
display: none;
}
.eut-anchor-menu li a {
border-left: 1px solid;
}
.eut-anchor-menu li:last-child a {
border-right: 1px solid;
}
.eut-anchor-menu .eut-container ul.sub-menu {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
-webkit-animation-duration: .15s;
-moz-animation-duration: .15s;
-o-animation-duration: .15s;
animation-duration: .15s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: menu_animation;
-moz-animation-name: menu_animation;
-o-animation-name: menu_animation;
animation-name: menu_animation;
}
.eut-anchor-menu .eut-container li:hover > ul.sub-menu {
display: block;
}
.eut-anchor-menu .eut-container ul.sub-menu ul {
top: 0;
left: 100%;
} .eut-anchor-responsive.eut-anchor-menu .eut-container > ul {
display: none;
}
.eut-anchor-responsive.eut-anchor-menu .eut-anchor-btn {
display: block;
}
.eut-anchor-responsive.eut-anchor-menu ul li,
.eut-anchor-responsive.eut-anchor-menu .eut-container ul.sub-menu {
display: block;
position: static;
}
.eut-anchor-responsive.eut-anchor-menu .eut-container > ul > li > a {
border-bottom: 1px solid;
padding: 0;
}
.eut-anchor-responsive.eut-anchor-menu li a {
border-left: none;
border-right: none;
} .eut-anchor-menu .eut-anchor-wrapper.eut-sticky {
position: fixed;
left: auto;
width: 100%;
}
.eut-anchor-menu.eut-go-down .eut-anchor-wrapper.eut-sticky {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-transition-delay: .3s;
-moz-transition-delay:    .3s;
-ms-transition-delay:     .3s;
-o-transition-delay:      .3s;
transition-delay:         .3s;
}
.eut-anchor-menu.eut-go-up .eut-anchor-wrapper.eut-sticky {
-webkit-transition-delay: .0s;
-moz-transition-delay:    .0s;
-ms-transition-delay:     .0s;
-o-transition-delay:      .0s;
transition-delay:         .0s;
} #eut-section-nav {
z-index: 999;
width: 30px;
height: 100vh;
position: fixed;
top: 0;
left: 30px;
overflow: hidden;
}
@media only screen and (max-width: 767px) {
#eut-section-nav {
display: none;
}
}
#eut-section-nav .eut-inner-nav {
position: absolute;
top: 50%;
white-space: nowrap;
-webkit-transform: rotate(-90deg) translateX(-50%);
-moz-transform:    rotate(-90deg) translateX(-50%);
-ms-transform:     rotate(-90deg) translateX(-50%);
-o-transform:      rotate(-90deg) translateX(-50%);
transform:         rotate(-90deg) translateX(-50%);
-webkit-transform-origin: top left;
-moz-transform-origin:    top left;
-ms-transform-origin:     top left;
-o-transform-origin:      top left;
transform-origin:         top left;
}
#eut-section-nav .eut-nav-item {
position: relative;
display: inline-block;
line-height: 2;
color: #bbbbbb;
-webkit-transition : color .3s;
-moz-transition    : color .3s;
-ms-transition     : color .3s;
-o-transition      : color .3s;
transition         : color .3s;
}
#eut-section-nav .eut-nav-item:after {
content: "";
width: 36px;
border-color: #bbbbbb;
border-top: 1px solid;
display: inline-block;
vertical-align: middle;
margin: 0px 5px 2px 5px;
opacity: 0.3;
}
#eut-section-nav .eut-nav-item.active,
#eut-section-nav .eut-nav-item:hover {
color: #757575;
}
#eut-section-nav .eut-nav-item.active:after,
#eut-section-nav .eut-nav-item:hover:after {
border-color: #bbbbbb !important;
}
@media only screen and (max-width: 1900px) {
#eut-section-nav .eut-nav-item:after {
width: 26px;
}
}
#eut-section-nav .eut-nav-item:last-child:after {
display: none;
} #eut-content {
position: relative;
z-index: 100;
overflow: hidden;
clear: both;
}
#eut-main-content .eut-main-content-wrapper {
position: relative;
}
#eut-theme-content {
position: relative;
z-index: 2;
overflow: hidden;
clear: both;
} #eut-footer {
position: relative;
z-index: 1;
}
#eut-footer .eut-footer-wrapper {
position: relative;
}
.eut-body:not(.eut-open-safebutton-area) #eut-footer.eut-fixed-footer {
position: fixed;
z-index: 1;
width: 100%;
bottom: 0;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-body.eut-boxed #eut-footer.eut-fixed-footer {
max-width: 1220px;
}
#eut-footer .eut-widget-area .eut-container {
border-bottom: 1px solid;
}
#eut-footer .eut-widget-area:last-child .eut-container {
border-bottom: none;
}
#eut-footer .eut-widget-area.eut-fullwidth .eut-container {
padding-left: 1.875rem;
padding-right: 1.875rem;
}
@media only screen and (max-width: 1200px) {
#eut-footer .eut-footer-wrapper .eut-tablet-column-1-2:nth-child(2n+1){
clear: both;
}
#eut-footer .eut-footer-wrapper .eut-column {
margin-top: 30px;
margin-bottom: 30px;
}
} #eut-footer .eut-footer-bar {
position: relative;
z-index: 3;
}
#eut-footer .eut-footer-bar ul {
margin: 0;
text-align: right;
list-style: none;
}
#eut-footer .eut-footer-bar ul li {
display: inline-block;
margin-left: 15px;
}
#eut-footer .eut-footer-bar .eut-left-side {
float: left;
text-align: left;
width: 50%;
font-size: 13px;
line-height: 2.000em;
}
#eut-footer .eut-footer-bar .eut-right-side {
float: right;
text-align: right;
width: 50%;
font-size: 13px;
line-height: 2.000em;
}
#eut-footer .eut-footer-bar[data-align-center="yes"] .eut-left-side,
#eut-footer .eut-footer-bar[data-align-center="yes"] .eut-right-side {
float: none;
text-align: center;
width: 100%;
}
#eut-footer .eut-footer-bar[data-align-center="yes"] ul {
margin: 0 8px;
text-align: center;
}
#eut-footer .eut-footer-bar[data-align-center="yes"] .eut-left-side + .eut-right-side {
margin-top: 25px;
}
#eut-footer .eut-footer-bar.eut-fullwidth .eut-left-side,
#eut-footer .eut-footer-bar.eut-fullwidth .eut-right-side {
padding-left: 1.875rem;
padding-right: 1.875rem;
} @media only screen and (max-width: 959px) {
#eut-footer .eut-footer-bar .eut-left-side,
#eut-footer .eut-footer-bar .eut-right-side {
float: none;
text-align: center;
width: 100%;
padding: 0;
}
#eut-footer .eut-footer-bar ul {
margin: 0 8px;
text-align: center;
}
#eut-footer .eut-footer-bar .eut-left-side + .eut-right-side {
margin-top: 25px;
}
} .eut-paraller,
.eut-paraller-2 {
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
} .eut-background-wrapper {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
-webkit-border-radius: inherit;
border-radius: inherit;
}
.eut-bg-image {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
opacity: 0;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-transition : opacity .4s ease;
-moz-transition    : opacity .4s ease;
-ms-transition     : opacity .4s ease;
-o-transition      : opacity .4s ease;
transition         : opacity .4s ease;
}
.eut-bg-parallax .eut-bg-image {
visibility: hidden;
} .eut-bg-pattern .eut-bg-image {
background-repeat: repeat;
background-size: inherit;
} .eut-bg-fixed > .eut-background-wrapper .eut-bg-image {
clip: rect(auto, auto, auto, auto);
}
.eut-bg-fixed > .eut-background-wrapper .eut-bg-image:before {
content: '';
background-image: inherit;
background-repeat: inherit;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: inherit;
position:fixed;
top:0;
width: 100vw;
height: 100vh;
z-index: -1;
left:0;
right:0;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
} #eut-feature-section.eut-bg-animated .eut-bg-image,
#eut-feature-section.eut-bg-animated .eut-bg-video,
.eut-bg-animated .eut-bg-image,
.eut-bg-animated .eut-bg-video {
-webkit-transform : scale(1.02);
-moz-transform    : scale(1.02);
-o-transform      : scale(1.02);
transform         : scale(1.02);
-webkit-transition : -webkit-transform 45s ease, opacity 0.4s;
-moz-transition    : -moz-transform 45s ease, opacity 0.4s;
-ms-transition     : -ms-transform 45s ease, opacity 0.4s;
-o-transition      : -o-transform 45s ease, opacity 0.4s;
transition         : transform 45s ease, opacity 0.4s;
}
#eut-feature-section.eut-bg-animated:hover .eut-bg-image,
#eut-feature-section.eut-bg-animated:hover .eut-bg-video,
.eut-bg-animated.zoom .eut-bg-image,
.eut-bg-animated.zoom .eut-bg-video {
-webkit-transform : scale(1.4);
-moz-transform    : scale(1.4);
-o-transform      : scale(1.4);
transform         : scale(1.4);
}
.eut-bg-horizontal .eut-bg-image {
background-size: contain;
}
.eut-bg-image.show {
opacity: 1;
}
.eut-bg-image.lazyloaded {
opacity: 1;
} .eut-bg-image.eut-bg-left-top {
background-position: left top;
}
.eut-bg-image.eut-bg-left-center {
background-position: left center;
}
.eut-bg-image.eut-bg-left-bottom {
background-position: left bottom;
}
.eut-bg-image.eut-bg-center-top {
background-position: center top;
}
.eut-bg-image.eut-bg-center-center {
background-position: center center;
}
.eut-bg-image.eut-bg-center-bottom {
background-position: center bottom;
}
.eut-bg-image.eut-bg-right-top {
background-position: right top;
}
.eut-bg-image.eut-bg-right-center {
background-position: right center;
}
.eut-bg-image.eut-bg-right-bottom {
background-position: right bottom;
}
@media only screen and (max-width: 1023px) {
.eut-bg-image.eut-bg-tablet-sm-left-top {
background-position: left top;
}
.eut-bg-image.eut-bg-tablet-sm-left-center {
background-position: left center;
}
.eut-bg-image.eut-bg-tablet-sm-left-bottom {
background-position: left bottom;
}
.eut-bg-image.eut-bg-tablet-sm-center-top {
background-position: center top;
}
.eut-bg-image.eut-bg-tablet-sm-center-center {
background-position: center center;
}
.eut-bg-image.eut-bg-tablet-sm-center-bottom {
background-position: center bottom;
}
.eut-bg-image.eut-bg-tablet-sm-right-top {
background-position: right top;
}
.eut-bg-image.eut-bg-tablet-sm-right-center {
background-position: right center;
}
.eut-bg-image.eut-bg-tablet-sm-right-bottom {
background-position: right bottom;
}
} #eut-theme-wrapper .eut-bg-wrapper-item img {
display: none;
}
.eut-bg-wrapper {
position: relative;
}
.eut-bg-wrapper:before {
display: block;
content: '';
}
.eut-bg-wrapper.eut-full-size {
height: 100%;
}
.eut-bg-wrapper.eut-custom-size {
padding-bottom: 75%;
}
.eut-bg-wrapper.eut-large-rect-horizontal {
padding-bottom: 56.239316%;
}
.eut-bg-wrapper.eut-small-square {
padding-bottom: 100%;
}
.eut-bg-wrapper.eut-small-rect-horizontal {
padding-bottom: 75%;
}
.eut-bg-wrapper.eut-small-rect-horizontal-wide {
padding-bottom: 56.25%;
}
.eut-bg-wrapper.eut-small-rect-vertical {
padding-bottom: 133.3333333%;
}
.eut-bg-wrapper.eut-medium-rect-vertical {
padding-bottom: 200%;
}
.eut-bg-wrapper.eut-medium-square {
padding-bottom: 100%;
} .eut-bg-video,
.eut-bg-video-wrapper {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index: 0;
opacity: 0;
object-fit: cover;
-webkit-backface-visibility: hidden;
-webkit-transition : opacity .4s ease;
-moz-transition    : opacity .4s ease;
-ms-transition     : opacity .4s ease;
-o-transition      : opacity .4s ease;
transition         : opacity .4s ease;
}
.eut-section .eut-bg-video,
.eut-bg-video.show {
opacity: 1;
}
.eut-bg-video iframe {
position: absolute;
max-width: none;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
.eut-bg-video + .eut-bg-image.show {
opacity: 0 !important;
}
.eut-bg-video-wrapper {
opacity: 1;
}
.eut-bg-video-wrapper .vc_hidden-xs {
display: block !important;
}
.eut-yt-bg-video,
.eut-iframe-bg-video {
pointer-events: none;
}
.eut-background-wrapper .eut-video-icon {
position: absolute;
top: 50%;
left: 50%;
}
.eut-background-wrapper .eut-video-icon.eut-icon-left-top {
top: 45px;
left: 45px;
}
.eut-background-wrapper .eut-video-icon.eut-icon-right-top {
top: 45px;
left: initial;
right: 15px;
}
.eut-background-wrapper .eut-video-icon.eut-icon-left-bottom {
top: initial;
left: 45px;
bottom: 15px;
}
.eut-background-wrapper .eut-video-icon.eut-icon-right-bottom {
top: initial;
left: initial;
right: 15px;
bottom: 15px;
} .eut-bg-overlay {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
#eut-content .eut-bg-overlay {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-image-hover.hover .eut-custom-overlay {
opacity: 1;
}
.eut-page-title .eut-bg-overlay,
#eut-feature-section .eut-bg-overlay,
.eut-hover-style-3.eut-image-hover.hover .eut-hover-overlay,
.eut-hover-style-5.eut-image-hover.hover .eut-hover-overlay {
opacity: 0;
}
.eut-page-title .eut-bg-overlay.show,
#eut-feature-section .eut-bg-overlay.show {
opacity: 1;
}
.eut-opacity-0,
.eut-image-hover.hover .eut-opacity-0,
.eut-hover-style-3.eut-image-hover .eut-opacity-0,
.eut-hover-style-5.eut-image-hover .eut-opacity-0 {
opacity: 0;
}
.eut-opacity-10,
.eut-image-hover.hover .eut-opacity-10,
.eut-hover-style-3.eut-image-hover .eut-opacity-10,
.eut-hover-style-5.eut-image-hover .eut-opacity-10 {
opacity: 0.1;
}
.eut-opacity-15,
.eut-image-hover.hover .eut-opacity-15,
.eut-hover-style-3.eut-image-hover .eut-opacity-15,
.eut-hover-style-5.eut-image-hover .eut-opacity-15 {
opacity: 0.15;
}
.eut-opacity-20,
.eut-image-hover.hover .eut-opacity-20,
.eut-hover-style-3.eut-image-hover .eut-opacity-20,
.eut-hover-style-5.eut-image-hover .eut-opacity-20 {
opacity: 0.2;
}
.eut-opacity-25,
.eut-image-hover.hover .eut-opacity-25,
.eut-hover-style-3.eut-image-hover .eut-opacity-25,
.eut-hover-style-5.eut-image-hover .eut-opacity-25 {
opacity: 0.25;
}
.eut-opacity-30,
.eut-image-hover.hover .eut-opacity-30,
.eut-hover-style-3.eut-image-hover .eut-opacity-30,
.eut-hover-style-5.eut-image-hover .eut-opacity-30 {
opacity: 0.3;
}
.eut-opacity-35,
.eut-image-hover.hover .eut-opacity-35,
.eut-hover-style-3.eut-image-hover .eut-opacity-35,
.eut-hover-style-5.eut-image-hover .eut-opacity-35 {
opacity: 0.35;
}
.eut-opacity-40,
.eut-image-hover.hover .eut-opacity-40,
.eut-hover-style-3.eut-image-hover .eut-opacity-40,
.eut-hover-style-5.eut-image-hover .eut-opacity-40 {
opacity: 0.4;
}
.eut-opacity-45,
.eut-image-hover.hover .eut-opacity-45,
.eut-hover-style-3.eut-image-hover .eut-opacity-45,
.eut-hover-style-5.eut-image-hover .eut-opacity-45 {
opacity: 0.45;
}
.eut-opacity-50,
.eut-image-hover.hover .eut-opacity-50,
.eut-hover-style-3.eut-image-hover .eut-opacity-50,
.eut-hover-style-5.eut-image-hover .eut-opacity-50 {
opacity: 0.5;
}
.eut-opacity-55,
.eut-image-hover.hover .eut-opacity-55,
.eut-hover-style-3.eut-image-hover .eut-opacity-55,
.eut-hover-style-5.eut-image-hover .eut-opacity-55 {
opacity: 0.55;
}
.eut-opacity-60,
.eut-image-hover.hover .eut-opacity-60,
.eut-hover-style-3.eut-image-hover .eut-opacity-60,
.eut-hover-style-5.eut-image-hover .eut-opacity-60 {
opacity: 0.6;
}
.eut-opacity-65,
.eut-image-hover.hover .eut-opacity-65,
.eut-hover-style-3.eut-image-hover .eut-opacity-65,
.eut-hover-style-5.eut-image-hover .eut-opacity-65 {
opacity: 0.65;
}
.eut-opacity-70,
.eut-image-hover.hover .eut-opacity-70,
.eut-hover-style-3.eut-image-hover .eut-opacity-70,
.eut-hover-style-5.eut-image-hover .eut-opacity-70 {
opacity: 0.7;
}
.eut-opacity-75,
.eut-image-hover.hover .eut-opacity-75,
.eut-hover-style-3.eut-image-hover .eut-opacity-75,
.eut-hover-style-5.eut-image-hover .eut-opacity-75 {
opacity: 0.75;
}
.eut-opacity-80,
.eut-image-hover.hover .eut-opacity-80,
.eut-hover-style-3.eut-image-hover .eut-opacity-80,
.eut-hover-style-5.eut-image-hover .eut-opacity-80 {
opacity: 0.8;
}
.eut-opacity-85,
.eut-image-hover.hover .eut-opacity-85,
.eut-hover-style-3.eut-image-hover .eut-opacity-85,
.eut-hover-style-5.eut-image-hover .eut-opacity-85 {
opacity: 0.85;
}
.eut-opacity-90,
.eut-image-hover.hover .eut-opacity-90,
.eut-hover-style-3.eut-image-hover .eut-opacity-90,
.eut-hover-style-5.eut-image-hover .eut-opacity-90 {
opacity: 0.9;
}
.eut-opacity-95,
.eut-image-hover.hover .eut-opacity-95,
.eut-hover-style-3.eut-image-hover .eut-opacity-95,
.eut-hover-style-5.eut-image-hover .eut-opacity-95 {
opacity: 0.95;
}
.eut-opacity-100,
.eut-image-hover.hover .eut-opacity-100,
.eut-hover-style-3.eut-image-hover .eut-opacity-100,
.eut-hover-style-5.eut-image-hover .eut-opacity-100 {
opacity: 1;
} .eut-pattern {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index: 0;
background-image: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/graphics/pattern.png);
background-repeat: repeat;
} .eut-separator-top {
position: absolute;
top: -1px;
left: 0;
width: 100%;
height: 90px;
z-index: 1;
}
.eut-separator-bottom {
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 90px;
z-index: 0;
}
.eut-separator {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
}
.eut-separator-top .eut-separator {
top: 0;
bottom: auto;
-webkit-transform: scale(-1);
-moz-transform:    scale(-1);
-ms-transform:     scale(-1);
-o-transform:      scale(-1);
transform:         scale(-1);
} .eut-separator-top .eut-separator.eut-round-split-separator {
top: 0;
}
.eut-separator-bottom .eut-separator.eut-round-split-separator {
bottom: 0;
}
.eut-separator-top .eut-separator.eut-round-split-separator {
left: 50%;
-webkit-transform: translateX(-50%) scale(-1);
-moz-transform:    translateX(-50%) scale(-1);
-ms-transform:     translateX(-50%) scale(-1);
-o-transform:      translateX(-50%) scale(-1);
transform:         translateX(-50%) scale(-1);
}
.eut-separator-bottom .eut-separator.eut-round-split-separator {
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform:    translateX(-50%);
-ms-transform:     translateX(-50%);
-o-transform:      translateX(-50%);
transform:         translateX(-50%);
} #eut-feature-section .eut-separator-bottom {
z-index: 2;
}
#eut-feature-section.eut-with-map .eut-separator-bottom {
z-index: 6;
} .eut-body-overlay {
background-color: #000000;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
display: none;
cursor: pointer;
z-index: 9999;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
} .eut-shadow-wrapper {
-webkit-box-shadow: 0px 40px 80px -40px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 40px 80px -40px rgba(0,0,0,0.4);
box-shadow: 0px 40px 80px -40px rgba(0,0,0,0.4);
} .eut-image-hover,
.eut-image-hover .eut-media {
position: relative;
overflow: hidden;
} .eut-item-details {
margin-top: 30px;
} .eut-image-hover.eut-layout-2 figcaption {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
z-index: 3;
word-spacing: -0.26em;
}
.eut-image-hover.eut-layout-2 figcaption:before {
content: '';
height: 100%;
display: inline-block;
vertical-align: middle;
}
.eut-image-hover.eut-layout-2 .eut-item-details {
width: 100%;
height: auto;
display: inline-block;
vertical-align: middle;
padding: 0 30px;
margin: 0;
}
.eut-image-hover .eut-hover-overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
opacity: 0;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-transition: opacity .3s;
-moz-transition: opacity .3s;
-ms-transition: opacity .3s;
-o-transition: opacity .3s;
transition: opacity .3s;
}
.eut-gradient-overlay:after {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
content: ' ';
display: block;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
opacity: 1;
z-index: 4;
-webkit-border-radius: inherit;
border-radius: inherit;
background-image: -webkit-linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.60) 100%);
background-image: -moz-linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.60) 100%);
background-image: -ms-linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.60) 100%);
background-image: -o-linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.60) 100%);
background-image: linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.60) 100%);
}  .eut-image-hover img {
position: relative;
display: block;
max-width: none;
width: 100%;
-webkit-border-radius: inherit;
border-radius: inherit;
}
.eut-image-hover img {
-webkit-transition : -webkit-transform 0.35s;
-moz-transition    : -moz-transform 0.35s;
-ms-transition     : -ms-transform 0.35s;
-o-transition      : -o-transform 0.35s;
transition         : transform 0.35s;
}
.eut-image-hover img.eut-lazy-load  {
-webkit-transition : opacity .4s, -webkit-transform 0.35s;
-moz-transition    : opacity .4s, -moz-transform 0.35s;
-ms-transition     : opacity .4s , -ms-transform 0.35s;
-o-transition      : opacity .4s, -o-transform 0.35s;
transition         : opacity .4s, transform 0.35s;
} .eut-image-hover.eut-zoom-in img {
-webkit-transform: scale(1);
transform: scale(1);
}
.eut-image-hover.eut-zoom-in.hover img {
-webkit-transform: scale(1.12);
transform: scale(1.12);
} .eut-element:not(.eut-isotope-column-1) .eut-image-landscape .eut-image-hover.eut-zoom-in img {
-webkit-transform: scale(1) translate(0, -50%);
-moz-transform:    scale(1) translate(0, -50%);
-ms-transform:     scale(1) translate(0, -50%);
-o-transform:      scale(1) translate(0, -50%);
transform:         scale(1) translate(0, -50%);
-webkit-transform-origin: 50% 0;
-moz-transform-origin:    50% 0;
-ms-transform-origin:     50% 0;
-o-transform-origin:      50% 0;
transform-origin:         50% 0;
}
.eut-element:not(.eut-isotope-column-1) .eut-image-landscape .eut-image-hover.eut-zoom-in.hover img {
-webkit-transform: scale(1.12) translate(0, -50%);
-moz-transform:    scale(1.12) translate(0, -50%);
-ms-transform:     scale(1.12) translate(0, -50%);
-o-transform:      scale(1.12) translate(0, -50%);
transform:         scale(1.12) translate(0, -50%);
} .eut-element:not(.eut-isotope-column-1) .eut-image-portrait .eut-image-hover.eut-zoom-in img {
-webkit-transform: scale(1) translate(-50%, 0);
-moz-transform:    scale(1) translate(-50%, 0);
-ms-transform:     scale(1) translate(-50%, 0);
-o-transform:      scale(1) translate(-50%, 0);
transform:         scale(1) translate(-50%, 0);
-webkit-transform-origin: 0 50%;
-moz-transform-origin:    0 50%;
-ms-transform-origin:     0 50%;
-o-transform-origin:      0 50%;
transform-origin:         0 50%;
}
.eut-element:not(.eut-isotope-column-1) .eut-image-portrait .eut-image-hover.eut-zoom-in.hover img {
-webkit-transform: scale(1.12) translate(-50%, 0);
-moz-transform:    scale(1.12) translate(-50%, 0);
-ms-transform:     scale(1.12) translate(-50%, 0);
-o-transform:      scale(1.12) translate(-50%, 0);
transform:         scale(1.12) translate(-50%, 0);
} .eut-image-hover.eut-zoom-out img {
-webkit-transform: scale(1.12);
transform: scale(1.12);
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
}
.eut-image-hover.eut-zoom-out.hover img {
-webkit-transform: scale(1);
transform: scale(1);
} .eut-element:not(.eut-isotope-column-1) .eut-image-landscape .eut-image-hover.eut-zoom-out img {
-webkit-transform: scale(1.12) translate(0, -50%);
-moz-transform:    scale(1.12) translate(0, -50%);
-ms-transform:     scale(1.12) translate(0, -50%);
-o-transform:      scale(1.12) translate(0, -50%);
transform:         scale(1.12) translate(0, -50%);
-webkit-transform-origin: 50% 0;
-moz-transform-origin:    50% 0;
-ms-transform-origin:     50% 0;
-o-transform-origin:      50% 0;
transform-origin:         50% 0;
}
.eut-element:not(.eut-isotope-column-1) .eut-image-landscape .eut-image-hover.eut-zoom-out.hover img {
-webkit-transform: scale(1) translate(0, -50%);
-moz-transform:    scale(1) translate(0, -50%);
-ms-transform:     scale(1) translate(0, -50%);
-o-transform:      scale(1) translate(0, -50%);
transform:         scale(1) translate(0, -50%);
} .eut-element:not(.eut-isotope-column-1) .eut-image-portrait  .eut-image-hover.eut-zoom-out img {
-webkit-transform: scale(1.12) translate(-50%, 0);
-moz-transform:    scale(1.12) translate(-50%, 0);
-ms-transform:     scale(1.12) translate(-50%, 0);
-o-transform:      scale(1.12) translate(-50%, 0);
transform:         scale(1.12) translate(-50%, 0);
-webkit-transform-origin: 0 50%;
-moz-transform-origin:    0 50%;
-ms-transform-origin:     0 50%;
-o-transform-origin:      0 50%;
transform-origin:         0 50%;
}
.eut-element:not(.eut-isotope-column-1) .eut-image-portrait  .eut-image-hover.eut-zoom-out.hover img {
-webkit-transform: scale(1) translate(-50%, 0);
-moz-transform:    scale(1) translate(-50%, 0);
-ms-transform:     scale(1) translate(-50%, 0);
-o-transform:      scale(1) translate(-50%, 0);
transform:         scale(1) translate(-50%, 0);
} .eut-grayscale-image img,
.eut-grayscale-image-hover img {
-webkit-filter: grayscale(1);
-webkit-filter: grayscale(100%);
filter: gray;
filter: grayscale(100%);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-grayscale-image-hover:hover img {
-webkit-filter: grayscale(0);
-webkit-filter: grayscale(0);
filter: none;
filter: grayscale(0);
} .eut-hover-item .eut-item-url {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 6;
}
.eut-hover-item .eut-content .eut-title {
line-height: 1.400em;
margin-bottom: 6px;
}
.eut-hover-item .eut-content .eut-title:last-child {
margin-bottom: 0;
}
.eut-hover-item .eut-content {
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
} .eut-hover-item .eut-like-counter i {
padding: 2px;
-webkit-animation: like_counter_animation 1.5s infinite;
-moz-animation: like_counter_animation 1.5s infinite;
-o-animation: like_counter_animation 1.5s infinite;
animation: like_counter_animation 1.5s infinite;
}
@-webkit-keyframes like_counter_animation {
0% { -webkit-transform: scale(1); }
50% { -webkit-transform: scale(1.1); }
100% { -webkit-transform: scale(1); }
}
@-moz-keyframes like_counter_animation {
0% { -moz-transform: scale(1); }
50% { -moz-transform: scale(1.1); }
100% { -moz-transform: scale(1); }
}
@-o-keyframes like_counter_animation {
0% { -o-transform: scale(1); }
50% { -o-transform: scale(1.1); }
100% { -o-transform: scale(1); }
}
@keyframes like_counter_animation {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
} .eut-hover-item.eut-hover-style-1 figure + .eut-content,
.eut-hover-item.eut-hover-style-1 .eut-shadow-wrapper + .eut-content {
margin-top: 30px;
}
.eut-hover-item.eut-hover-style-1 .eut-content {
margin-bottom: 30px;
}
.eut-hover-item.eut-hover-style-1 .eut-shadow-wrapper + .eut-content {
padding-top: 10px;
margin-bottom: 40px;
}
#eut-theme-wrapper .eut-hover-item .eut-title.eut-text-black {
color: #000000;
} .eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) {
position: absolute;
padding: 30px;
top: 50%;
left: 0;
z-index: 2;
width: 100%;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
} .eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-title {
opacity: 0;
-webkit-transform: translateY(-50px);
-moz-transform:    translateY(-50px);
-ms-transform:     translateY(-50px);
-o-transform:      translateY(-50px);
transform:         translateY(-50px);
-webkit-transition : transform .7s, opacity .7s;
-moz-transition    : transform .7s, opacity .7s;
-ms-transition     : transform .7s, opacity .7s;
-o-transition      : transform .7s, opacity .7s;
transition         : transform .7s, opacity .7s;
} .eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-description {
position: relative;
display: block;
opacity: 0;
-webkit-transform: translateY(50px);
-moz-transform:    translateY(50px);
-ms-transform:     translateY(50px);
-o-transform:      translateY(50px);
transform:         translateY(50px);
-webkit-transition : all .7s;
-moz-transition    : all .7s;
-ms-transition     : all .7s;
-o-transition      : all .7s;
transition         : all .7s;
} .eut-hover-item.eut-hover-style-2 .hover .eut-content:not(.eut-custom-overview) .eut-title,
.eut-hover-item.eut-hover-style-2 .hover .eut-content:not(.eut-custom-overview) .eut-description {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .2s;
-moz-transition-delay:    .2s;
-ms-transition-delay:     .2s;
-o-transition-delay:      .2s;
transition-delay:         .2s;
} .eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-like-counter {
position: absolute;
bottom: 100%;
left: 0;
width: 100%;
opacity: 0;
-webkit-transform: translateY(-20px);
-moz-transform:    translateY(-20px);
-ms-transform:     translateY(-20px);
-o-transform:      translateY(-20px);
transform:         translateY(-20px);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-hover-item.eut-hover-style-2 .hover .eut-content:not(.eut-custom-overview) .eut-like-counter {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .4s;
-moz-transition-delay:    .4s;
-ms-transition-delay:     .4s;
-o-transition-delay:      .4s;
transition-delay:         .4s;
}
.eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-like-counter i {
font-size: 18px;
margin-bottom: 6px;
}
.eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-like-counter span {
display: block;
} .eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-line {
display: block;
font-size: 0px;
margin-top: 14px;
margin-bottom: 20px;
opacity: 0.5;
line-height: 1;
}
.eut-hover-item.eut-hover-style-2 .eut-content:not(.eut-custom-overview) .eut-line span {
display: inline-block;
vertical-align: top;
border-top: 1px solid;
width: 0;
-webkit-transition : all .6s;
-moz-transition    : all .6s;
-ms-transition     : all .6s;
-o-transition      : all .6s;
transition         : all .6s;
}
.eut-hover-item.eut-hover-style-2 .hover .eut-content:not(.eut-custom-overview) .eut-line span {
width: 50px;
} .eut-hover-item.eut-hover-style-3 .eut-hover-overlay {
top: 10px;
left: 10px;
bottom: 10px;
right: 10px;
}
.eut-hover-item.eut-hover-style-3 .eut-content:not(.eut-custom-overview) {
position: absolute;
padding: 30px;
top: 50%;
left: 0;
z-index: 2;
width: 100%;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
} .eut-hover-item.eut-hover-style-3 .eut-content:not(.eut-custom-overview) .eut-title {
opacity: 0;
-webkit-transform: translateX(-50px);
-moz-transform:    translateX(-50px);
-ms-transform:     translateX(-50px);
-o-transform:      translateX(-50px);
transform:         translateX(-50px);
-webkit-transition : transform .7s, opacity .7s;
-moz-transition    : transform .7s, opacity .7s;
-ms-transition     : transform .7s, opacity .7s;
-o-transition      : transform .7s, opacity .7s;
transition         : transform .7s, opacity .7s;
} .eut-hover-item.eut-hover-style-3 .eut-content:not(.eut-custom-overview) .eut-description {
position: relative;
display: block;
opacity: 0;
-webkit-transform: translateX(50px);
-moz-transform:    translateX(50px);
-ms-transform:     translateX(50px);
-o-transform:      translateX(50px);
transform:         translateX(50px);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
} .eut-hover-item.eut-hover-style-3 .hover .eut-content:not(.eut-custom-overview) .eut-title,
.eut-hover-item.eut-hover-style-3 .hover .eut-content:not(.eut-custom-overview) .eut-description {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform:    translateX(0);
-ms-transform:     translateX(0);
-o-transform:      translateX(0);
transform:         translateX(0);
-webkit-transition-delay: .2s;
-moz-transition-delay:    .2s;
-ms-transition-delay:     .2s;
-o-transition-delay:      .2s;
transition-delay:         .2s;
} .eut-hover-item.eut-hover-style-3 .eut-content:not(.eut-custom-overview) .eut-like-counter {
margin-top: 30px;
opacity: 0;
-webkit-transform: translateY(-20px);
-moz-transform:    translateY(-20px);
-ms-transform:     translateY(-20px);
-o-transform:      translateY(-20px);
transform:         translateY(-20px);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-hover-item.eut-hover-style-3 .hover .eut-content:not(.eut-custom-overview) .eut-like-counter {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .4s;
-moz-transition-delay:    .4s;
-ms-transition-delay:     .4s;
-o-transition-delay:      .4s;
transition-delay:         .4s;
}
.eut-hover-item.eut-hover-style-3 .eut-content:not(.eut-custom-overview) .eut-like-counter i {
font-size: 24px;
margin-bottom: 6px;
}
.eut-hover-item.eut-hover-style-3 .eut-content:not(.eut-custom-overview) .eut-like-counter span {
display: block;
} .eut-hover-item.eut-hover-style-4 .eut-content:not(.eut-custom-overview) {
position: absolute;
padding: 30px;
left: 20px;
bottom: 20px;
right: 20px;
z-index: 2;
} .eut-hover-item.eut-hover-style-5 .eut-content:not(.eut-custom-overview) {
position: absolute;
padding: 30px;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0) !important;
-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0) !important;
box-shadow: 0px 0px 50px 0px rgba(0,0,0,0) !important;
-webkit-transition : all 0.3s cubic-bezier(.05,.8,.5,1);
-moz-transition    : all 0.3s cubic-bezier(.05,.8,.5,1);
-ms-transition     : all 0.3s cubic-bezier(.05,.8,.5,1);
-o-transition      : all 0.3s cubic-bezier(.05,.8,.5,1);
transition         : all 0.3s cubic-bezier(.05,.8,.5,1);
-webkit-transform: translateY(110%);
-moz-transform:    translateY(110%);
-ms-transform:     translateY(110%);
-o-transform:      translateY(110%);
transform:         translateY(110%);
}
.eut-hover-item.eut-hover-style-5 .hover .eut-content:not(.eut-custom-overview) {
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
}
.eut-hover-item.eut-hover-style-5 .eut-content:not(.eut-custom-overview) .eut-title,
.eut-hover-item.eut-hover-style-5 .eut-content:not(.eut-custom-overview) .eut-description {
opacity: 0;
-webkit-transition : transform 0.3s cubic-bezier(.05,.8,.5,1), opacity 0.3s;
-moz-transition    : transform 0.3s cubic-bezier(.05,.8,.5,1), opacity 0.3s;
-ms-transition     : transform 0.3s cubic-bezier(.05,.8,.5,1), opacity 0.3s;
-o-transition      : transform 0.3s cubic-bezier(.05,.8,.5,1), opacity 0.3s;
transition         : transform 0.3s cubic-bezier(.05,.8,.5,1), opacity 0.3s;
-webkit-transform: translateY(50px);
-moz-transform:    translateY(50px);
-ms-transform:     translateY(50px);
-o-transform:      translateY(50px);
transform:         translateY(50px);
}
.eut-hover-item.eut-hover-style-5 .hover .eut-content:not(.eut-custom-overview) .eut-title {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .1s;
-moz-transition-delay:    .1s;
-ms-transition-delay:     .1s;
-o-transition-delay:      .1s;
transition-delay:         .1s;
}
.eut-hover-item.eut-hover-style-5 .hover .eut-content:not(.eut-custom-overview) .eut-description {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .2s;
-moz-transition-delay:    .2s;
-ms-transition-delay:     .2s;
-o-transition-delay:      .2s;
transition-delay:         .2s;
} .eut-hover-item.eut-hover-style-6 .eut-content:not(.eut-custom-overview) {
position: absolute;
padding: 0 30px;
left: 0;
bottom: 30px;
right: 0;
z-index: 5;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-hover-item.eut-hover-style-6 .eut-content:not(.eut-custom-overview) .eut-title,
.eut-hover-item.eut-hover-style-6 .eut-content:not(.eut-custom-overview) .eut-description {
-webkit-transition : transform .7s, opacity .7s;
-moz-transition    : transform .7s, opacity .7s;
-ms-transition     : transform .7s, opacity .7s;
-o-transition      : transform .7s, opacity .7s;
transition         : transform .7s, opacity .7s;
text-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}
.eut-hover-item.eut-hover-style-6 .hover .eut-content:not(.eut-custom-overview) .eut-title,
.eut-hover-item.eut-hover-style-6 .hover .eut-content:not(.eut-custom-overview) .eut-description {
-webkit-transition-delay: .1s;
-moz-transition-delay:    .1s;
-ms-transition-delay:     .1s;
-o-transition-delay:      .1s;
transition-delay:         .1s;
text-shadow: 0px 2px 4px rgba(0,0,0,0.4);
}
.eut-hover-item.eut-hover-style-6 .hover .eut-content:not(.eut-custom-overview) {
bottom: 50%;
-webkit-transition-delay: .1s;
-moz-transition-delay:    .1s;
-ms-transition-delay:     .1s;
-o-transition-delay:      .1s;
transition-delay:         .1s;
-webkit-transform: translateY(50%);
-moz-transform:    translateY(50%);
-ms-transform:     translateY(50%);
-o-transform:      translateY(50%);
transform:         translateY(50%);
}
.eut-hover-item.eut-hover-style-6 .eut-gradient-overlay {
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 50%;
opacity: 0.5;
z-index: 2;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-hover-item.eut-hover-style-6 .hover .eut-gradient-overlay {
opacity: 1;
height: 100%;
}
.eut-hover-item.eut-hover-style-6 img {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
} #eut-theme-wrapper .eut-hover-item.eut-hover-style-7 .eut-content:not(.eut-custom-overview) {
position: absolute;
padding: 30px;
left: 25%;
bottom: 0;
right: 0;
display: inline-block;
z-index: 5;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-transform: translateY(100%);
-moz-transform:    translateY(100%);
-ms-transform:     translateY(100%);
-o-transform:      translateY(100%);
transform:         translateY(100%);
-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0);
-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0);
box-shadow: 0px 0px 50px 0px rgba(0,0,0,0);
}
#eut-theme-wrapper .eut-hover-item.eut-hover-style-7 .hover .eut-content:not(.eut-custom-overview) {
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
} .eut-hover-item.eut-hover-style-7 .eut-content:not(.eut-custom-overview) .eut-like-counter {
opacity: 0;
margin-top: 8px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-transform: translateY(50px);
-moz-transform:    translateY(50px);
-ms-transform:     translateY(50px);
-o-transform:      translateY(50px);
transform:         translateY(50px);
}
.eut-hover-item.eut-hover-style-7 .hover .eut-content:not(.eut-custom-overview) .eut-like-counter {
opacity: 1;
-webkit-transition-delay: .6s;
-moz-transition-delay:    .6s;
-ms-transition-delay:     .6s;
-o-transition-delay:      .6s;
transition-delay:         .6s;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
}
.eut-hover-item.eut-hover-style-7 .eut-content:not(.eut-custom-overview) .eut-like-counter i {
font-size: 14px;
display: inline-block;
vertical-align: middle;
}
.eut-hover-item.eut-hover-style-7 .eut-content:not(.eut-custom-overview) .eut-like-counter span {
display: inline-block;
vertical-align: middle;
margin-left: 5px;
} .eut-hover-item.eut-hover-style-7 .eut-content:not(.eut-custom-overview) .eut-title {
padding-top: 0;
-webkit-transition : transform .3s, opacity .3s;
-moz-transition    : transform .3s, opacity .3s;
-ms-transition     : transform .3s, opacity .3s;
-o-transition      : transform .3s, opacity .3s;
transition         : transform .3s, opacity .3s;
} .eut-hover-item.eut-hover-style-7 .eut-content:not(.eut-custom-overview) .eut-description {
opacity: 0;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-transform: translateY(50px);
-moz-transform:    translateY(50px);
-ms-transform:     translateY(50px);
-o-transform:      translateY(50px);
transform:         translateY(50px);
}
.eut-hover-item.eut-hover-style-7 .hover .eut-content:not(.eut-custom-overview) .eut-description {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .4s;
-moz-transition-delay:    .4s;
-ms-transition-delay:     .4s;
-o-transition-delay:      .4s;
transition-delay:         .4s;
} #eut-loader-overflow {
display:block;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: #fefefe;
z-index: 99999;
} #eut-loader-overflow.eut-page-transition {
-webkit-animation-fill-mode:both;
-moz-animation-fill-mode:both;
-ms-animation-fill-mode:both;
-o-animation-fill-mode:both;
animation-fill-mode:both;
-webkit-animation-duration:.6s;
-moz-animation-duration:.6s;
-ms-animation-duration:.6s;
-o-animation-duration:.6s;
animation-duration:.6s;
} #eut-loader-overflow.eut-fade-in-transition.eut-visible {
-webkit-animation-name: eut_fade_in_transition;
-moz-animation-name: eut_fade_in_transition;
-o-animation-name: eut_fade_in_transition;
animation-name: eut_fade_in_transition;
}
#eut-loader-overflow.eut-fade-in-transition.eut-hide {
-webkit-animation-name: eut_fade_out_transition;
-moz-animation-name: eut_fade_out_transition;
-o-animation-name: eut_fade_out_transition;
animation-name: eut_fade_out_transition;
} #eut-loader-overflow.eut-left-to-right-transition.eut-visible {
-webkit-animation-name: eut_left_to_right_transition;
-moz-animation-name: eut_left_to_right_transition;
-o-animation-name: eut_left_to_right_transition;
animation-name: eut_left_to_right_transition;
}
#eut-loader-overflow.eut-left-to-right-transition.eut-hide {
-webkit-animation-name: eut_left_to_right_out_transition;
-moz-animation-name: eut_left_to_right_out_transition;
-o-animation-name: eut_left_to_right_out_transition;
animation-name: eut_left_to_right_out_transition;
} #eut-loader-overflow.eut-right-to-left-transition.eut-visible {
-webkit-animation-name: eut_right_to_left_transition;
-moz-animation-name: eut_right_to_left_transition;
-o-animation-name: eut_right_to_left_transition;
animation-name: eut_right_to_left_transition;
}
#eut-loader-overflow.eut-right-to-left-transition.eut-hide {
-webkit-animation-name: eut_right_to_left_out_transition;
-moz-animation-name: eut_right_to_left_out_transition;
-o-animation-name: eut_right_to_left_out_transition;
animation-name: eut_right_to_left_out_transition;
} #eut-loader-overflow.eut-top-to-bottom-transition.eut-visible {
-webkit-animation-name: eut_top_to_bottom_transition;
-moz-animation-name: eut_top_to_bottom_transition;
-o-animation-name: eut_top_to_bottom_transition;
animation-name: eut_top_to_bottom_transition;
}
#eut-loader-overflow.eut-top-to-bottom-transition.eut-hide {
-webkit-animation-name: eut_top_to_bottom_out_transition;
-moz-animation-name: eut_top_to_bottom_out_transition;
-o-animation-name: eut_top_to_bottom_out_transition;
animation-name: eut_top_to_bottom_out_transition;
} #eut-loader-overflow.eut-bottom-to-top-transition.eut-visible {
-webkit-animation-name: eut_bottom_to_top_transition;
-moz-animation-name: eut_bottom_to_top_transition;
-o-animation-name: eut_bottom_to_top_transition;
animation-name: eut_bottom_to_top_transition;
}
#eut-loader-overflow.eut-bottom-to-top-transition.eut-hide {
-webkit-animation-name: eut_bottom_to_top_out_transition;
-moz-animation-name: eut_bottom_to_top_out_transition;
-o-animation-name: eut_bottom_to_top_out_transition;
animation-name: eut_bottom_to_top_out_transition;
} @-webkit-keyframes eut_fade_in_transition {
0% {opacity: 0; visibility: hidden;}
100% {opacity: 1; visibility: visible;}
}
@-moz-keyframes eut_fade_in_transition {
0% {opacity: 0; visibility: hidden;}
100% {opacity: 1; visibility: visible;}
}
@-o-keyframes eut_fade_in_transition {
0% {opacity: 0; visibility: hidden;}
100% {opacity: 1; visibility: visible;}
}
@keyframes eut_fade_in_transition {
0% {opacity: 0; visibility: hidden;}
100% {opacity: 1; visibility: visible;}
} @-webkit-keyframes eut_fade_out_transition {
0% {opacity: 1; visibility: visible;}
100% {opacity: 0; visibility: hidden;}
}
@-moz-keyframes eut_fade_out_transition {
0% {opacity: 1; visibility: visible;}
100% {opacity: 0; visibility: hidden;}
}
@-o-keyframes eut_fade_out_transition {
0% {opacity: 1; visibility: visible;}
100% {opacity: 0; visibility: hidden;}
}
@keyframes eut_fade_out_transition {
0% {opacity: 1; visibility: visible;}
100% {opacity: 0; visibility: hidden;}
} @-webkit-keyframes eut_left_to_right_transition {
0% {-webkit-transform: translateX(-100%); visibility: hidden;}
100% {-webkit-transform: translateX(0); visibility: visible;}
}
@-moz-keyframes eut_left_to_right_transition {
0% {-moz-transform: translateX(-100%); visibility: hidden;}
100% {-moz-transform: translateX(0); visibility: visible;}
}
@-o-keyframes eut_left_to_right_transition {
0% {-o-transform: translateX(-100%); visibility: hidden;}
100% {-o-transform: translateX(0); visibility: visible;}
}
@keyframes eut_left_to_right_transition {
0% {transform: translateX(-100%); visibility: hidden;}
100% {transform: translateX(0); visibility: visible;}
} @-webkit-keyframes eut_left_to_right_out_transition {
0% {-webkit-transform: translateX(0); visibility: visible;}
100% {-webkit-transform: translateX(100%); visibility: hidden;}
}
@-moz-keyframes eut_left_to_right_out_transition {
0% {-moz-transform: translateX(0); visibility: visible;}
100% {-moz-transform: translateX(100%); visibility: hidden;}
}
@-o-keyframes eut_left_to_right_out_transition {
0% {-o-transform: translateX(0); visibility: visible;}
100% {-o-transform: translateX(100%); visibility: hidden;}
}
@keyframes eut_left_to_right_out_transition {
0% {transform: translateX(0); visibility: visible;}
100% {transform: translateX(100%); visibility: hidden;}
} @-webkit-keyframes eut_right_to_left_transition {
0% {-webkit-transform: translateX(100%); visibility: hidden;}
100% {-webkit-transform: translateX(0); visibility: visible;}
}
@-moz-keyframes eut_right_to_left_transition {
0% {-moz-transform: translateX(100%); visibility: hidden;}
100% {-moz-transform: translateX(0); visibility: visible;}
}
@-o-keyframes eut_right_to_left_transition {
0% {-o-transform: translateX(100%); visibility: hidden;}
100% {-o-transform: translateX(0); visibility: visible;}
}
@keyframes eut_right_to_left_transition {
0% {transform: translateX(100%); visibility: hidden;}
100% {transform: translateX(0); visibility: visible;}
} @-webkit-keyframes eut_right_to_left_out_transition {
0% {-webkit-transform: translateX(0); visibility: visible;}
100% {-webkit-transform: translateX(-100%); visibility: hidden;}
}
@-moz-keyframes eut_right_to_left_out_transition {
0% {-moz-transform: translateX(0); visibility: visible;}
100% {-moz-transform: translateX(-100%); visibility: hidden;}
}
@-o-keyframes eut_right_to_left_out_transition {
0% {-o-transform: translateX(0); visibility: visible;}
100% {-o-transform: translateX(-100%); visibility: hidden;}
}
@keyframes eut_right_to_left_out_transition {
0% {transform: translateX(0); visibility: visible;}
100% {transform: translateX(-100%); visibility: hidden;}
} @-webkit-keyframes eut_top_to_bottom_transition {
0% {-webkit-transform: translateY(-100%); visibility: hidden;}
100% {-webkit-transform: translateY(0); visibility: visible;}
}
@-moz-keyframes eut_top_to_bottom_transition {
0% {-moz-transform: translateY(-100%); visibility: hidden;}
100% {-moz-transform: translateY(0); visibility: visible;}
}
@-o-keyframes eut_top_to_bottom_transition {
0% {-o-transform: translateY(-100%); visibility: hidden;}
100% {-o-transform: translateY(0); visibility: visible;}
}
@keyframes eut_top_to_bottom_transition {
0% {transform: translateY(-100%); visibility: hidden;}
100% {transform: translateY(0); visibility: visible;}
} @-webkit-keyframes eut_top_to_bottom_out_transition {
0% {-webkit-transform: translateY(0); visibility: visible;}
100% {-webkit-transform: translateY(100%); visibility: hidden;}
}
@-moz-keyframes eut_top_to_bottom_out_transition {
0% {-moz-transform: translateY(0); visibility: visible;}
100% {-moz-transform: translateY(100%); visibility: hidden;}
}
@-o-keyframes eut_top_to_bottom_out_transition {
0% {-o-transform: translateY(0); visibility: visible;}
100% {-o-transform: translateY(100%); visibility: hidden;}
}
@keyframes eut_top_to_bottom_out_transition {
0% {transform: translateY(0); visibility: visible;}
100% {transform: translateY(100%); visibility: hidden;}
} @-webkit-keyframes eut_bottom_to_top_transition {
0% {-webkit-transform: translateY(100%); visibility: hidden;}
100% {-webkit-transform: translateY(0); visibility: visible;}
}
@-moz-keyframes eut_bottom_to_top_transition {
0% {-moz-transform: translateY(100%); visibility: hidden;}
100% {-moz-transform: translateY(0); visibility: visible;}
}
@-o-keyframes eut_bottom_to_top_transition {
0% {-o-transform: translateY(100%); visibility: hidden;}
100% {-o-transform: translateY(0); visibility: visible;}
}
@keyframes eut_bottom_to_top_transition {
0% {transform: translateY(100%); visibility: hidden;}
100% {transform: translateY(0); visibility: visible;}
} @-webkit-keyframes eut_bottom_to_top_out_transition {
0% {-webkit-transform: translateY(0); visibility: visible;}
100% {-webkit-transform: translateY(-100%); visibility: hidden;}
}
@-moz-keyframes eut_bottom_to_top_out_transition {
0% {-moz-transform: translateY(0); visibility: visible;}
100% {-moz-transform: translateY(-100%); visibility: hidden;}
}
@-o-keyframes eut_bottom_to_top_out_transition {
0% {-o-transform: translateY(0); visibility: visible;}
100% {-o-transform: translateY(-100%); visibility: hidden;}
}
@keyframes eut_bottom_to_top_out_transition {
0% {transform: translateY(0); visibility: visible;}
100% {transform: translateY(-100%); visibility: hidden;}
} #eut-loader-overflow.eut-zoom-out-transition.eut-visible {
-webkit-animation-name: eut_fade_in_transition;
-moz-animation-name: eut_fade_in_transition;
-o-animation-name: eut_fade_in_transition;
animation-name: eut_fade_in_transition;
}
#eut-loader-overflow.eut-zoom-out-transition.eut-hide {
-webkit-animation-name: eut_fade_out_transition;
-moz-animation-name: eut_fade_out_transition;
-o-animation-name: eut_fade_out_transition;
animation-name: eut_fade_out_transition;
}
#eut-loader-overflow.eut-zoom-out-transition.eut-visible + #eut-theme-wrapper {
height: 100vh;
overflow: hidden;
-webkit-animation-fill-mode:both;
-moz-animation-fill-mode:both;
-ms-animation-fill-mode:both;
-o-animation-fill-mode:both;
animation-fill-mode:both;
-webkit-animation-duration:.5s;
-moz-animation-duration:.5s;
-ms-animation-duration:.5s;
-o-animation-duration:.5s;
animation-duration:.5s;
-webkit-animation-name: eut_zoom_out_transition;
-moz-animation-name: eut_zoom_out_transition;
-o-animation-name: eut_zoom_out_transition;
animation-name: eut_zoom_out_transition;
}
#eut-loader-overflow.eut-zoom-out-transition.eut-hide + #eut-theme-wrapper {
-webkit-animation-name: eut_fade_in_transition;
-moz-animation-name: eut_fade_in_transition;
-o-animation-name: eut_fade_in_transition;
animation-name: eut_fade_in_transition;
} @-webkit-keyframes eut_zoom_out_transition {
0% {-webkit-transform: scale(1);}
100% {-webkit-transform: scale(0.5);}
}
@-moz-keyframes eut_zoom_out_transition {
0% {-moz-transform: scale(1);}
100% {-moz-transform: scale(0.5);}
}
@-o-keyframes eut_zoom_out_transition {
0% {-o-transform: scale(1);}
100% {-o-transform: scale(0.5);}
}
@keyframes eut_zoom_out_transition {
0% {transform: scale(1);}
100% {transform: scale(0.5);}
} .eut-zoom-effect {
overflow: hidden;
}
.eut-zoom-effect img {
-moz-transform: scale(1);
-webkit-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: -webkit-transform 0.3s;
-moz-transition:    -moz-transform 0.3s;
-ms-transition:     -ms-transform 0.3s;
-o-transition:      -o-transform 0.3s;
transition:         transform 0.3s;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-zoom-effect:hover img {
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
-o-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
} .eut-goto-section-wrapper {
position: relative;
z-index: 100;
line-height: 1;
margin-top: 24px;
margin-bottom: 24px;
}
.eut-goto-section-wrapper {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.eut-goto-section-wrapper .eut-goto-section {
cursor: pointer;
text-align: center;
line-height:1;
display: inline-block;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-goto-section-text:before {
content: '';
position: absolute;
width: 1px;
height: 60px;
border-right: 1px solid;
bottom: calc(100% + 24px);
-webkit-transition : all 0.2s cubic-bezier(0.12,0.75,0.4,1);
-moz-transition    : all 0.2s cubic-bezier(0.12,0.75,0.4,1);
-ms-transition     : all 0.2s cubic-bezier(0.12,0.75,0.4,1);
-o-transition      : all 0.2s cubic-bezier(0.12,0.75,0.4,1);
transition         : all 0.2s cubic-bezier(0.12,0.75,0.4,1);
}
.eut-align-right-center .eut-goto-section-text:before,
.eut-align-right-bottom .eut-goto-section-text:before,
.eut-align-right-top .eut-goto-section-text:before {
right: 0;
}
.eut-align-center-center .eut-goto-section-text:before,
.eut-align-center-bottom .eut-goto-section-text:before,
.eut-align-center-top .eut-goto-section-text:before {
left: 50%;
margin-left: -1px;
}
.eut-goto-section:hover:before {
height: 0;
}
@media only screen and (max-width: 959px) {
.eut-goto-section-wrapper {
display: none;
}
} .eut-back-top {
position: fixed;
width: 48px;
height: 48px;
bottom: -60px;
right: 30px;
text-align: center;
z-index: 900;
cursor: pointer;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-transition : all .3s ease;
-moz-transition    : all .3s ease;
-ms-transition     : all .3s ease;
-o-transition      : all .3s ease;
transition         : all .3s ease;
}
.eut-back-top .eut-arrow-wrapper {
width: 48px;
height: 48px;
}
.eut-back-top .eut-arrow-wrapper.eut-wrapper-color {
-webkit-box-shadow: 0 4px 15px 0px rgba(0,0,0,.15);
-moz-box-shadow:    0 4px 15px 0px rgba(0,0,0,.15);
box-shadow:         0 4px 15px 0px rgba(0,0,0,.15);
}
.eut-back-top .eut-back-top-icon {
width: 18px;
height: 18px;
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-top: -9px;
margin-left: -9px;
}
.eut-back-top.show {
-webkit-transform: translate(0, -80px);
-moz-transform:    translate(0, -80px);
-ms-transform:     translate(0, -80px);
-o-transform:      translate(0, -80px);
transform:         translate(0, -80px);
} #eut-theme-wrapper .eut-round {
-webkit-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
}
#eut-theme-wrapper .eut-extra-round {
-webkit-border-radius: 50px;
border-radius: 50px;
overflow: hidden;
}
#eut-theme-wrapper .eut-circle {
-webkit-border-radius: 100%;
border-radius: 100%;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-3 {
-webkit-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-5 {
-webkit-border-radius: 5px;
border-radius: 5px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-10 {
-webkit-border-radius: 10px;
border-radius: 10px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-15 {
-webkit-border-radius: 15px;
border-radius: 15px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-20 {
-webkit-border-radius: 20px;
border-radius: 20px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-25 {
-webkit-border-radius: 25px;
border-radius: 25px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-30 {
-webkit-border-radius: 30px;
border-radius: 30px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-35 {
-webkit-border-radius: 35px;
border-radius: 35px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-40 {
-webkit-border-radius: 40px;
border-radius: 40px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-45 {
-webkit-border-radius: 45px;
border-radius: 45px;
overflow: hidden;
}
#eut-theme-wrapper .eut-radius-50 {
-webkit-border-radius: 50px;
border-radius: 50px;
overflow: hidden;
} @font-face {
font-family: 'crocal-icons';
src:url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/crocal-icons.eot?v=1.0.0);
src:url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/crocal-icons.eot?#iefix&v=1.0.0) format('embedded-opentype'),
url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/crocal-icons.woff?v=1.0.0) format('woff'),
url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/crocal-icons.ttf?v=1.0.0) format('truetype'),
url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/crocal-icons.svg?v=1.0.0#crocal-icons) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="eut-icon-"], [class*=" eut-icon-"] {
font-family: 'crocal-icons' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
font-size: 24px; text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.eut-icon-nav-left-small:before {
content: "\e91a";
}
.eut-icon-nav-right-small:before {
content: "\e91b";
}
.eut-icon-nav-down-small:before {
content: "\e919";
}
.eut-icon-nav-up-small:before {
content: "\e91c";
}
.eut-icon-nav-left:before {
content: "\e901";
}
.eut-icon-nav-right:before {
content: "\e903";
}
.eut-icon-nav-up:before {
content: "\e90b";
}
.eut-icon-nav-down:before {
content: "\e90c";
}
.eut-icon-nav-left-large:before {
content: "\e900";
}
.eut-icon-nav-right-large:before {
content: "\e902";
}
.eut-icon-search:before {
content: "\e905";
}
.eut-icon-socials:before {
content: "\e90d";
}
.eut-icon-envelope:before {
content: "\e90a";
}
.eut-icon-globe:before {
content: "\e907";
}
.eut-icon-shop:before {
content: "\e908";
}
.eut-icon-user:before {
content: "\e90f";
}
.eut-icon-date:before {
content: "\e910";
}
.eut-icon-safebutton:before {
content: "\e911";
}
.eut-icon-menu:before {
content: "\e906";
}
.eut-icon-plus:before {
content: "\e904";
}
.eut-icon-close:before {
content: "\e912";
}
.eut-icon-video:before {
content: "\e909";
}
.eut-icon-heart-o:before {
content: "\e913";
}
.eut-icon-heart:before {
content: "\e914";
}
.eut-icon-comment:before {
content: "\e915";
}
.eut-icon-quote:before {
content: "\e916";
}
.eut-icon-link:before {
content: "\e917";
}
.eut-icon-pencil:before {
content: "\e918";
}
.eut-icon-th-large:before {
content: "\e90e";
} .eut-video-icon {
display: inline-block;
vertical-align: middle;
position: relative;
width: 1.000em;
height: 1.000em;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.eut-video-icon:not(.eut-icon-position-relative) {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform:    translate(-50%, -50%);
-ms-transform:     translate(-50%, -50%);
-o-transform:      translate(-50%, -50%);
transform:         translate(-50%, -50%);
z-index: 5;
}
.eut-video-icon svg {
position: absolute;
z-index: 5;
left: 50%;
top: 50%;
width: 25%;
margin-left: 1px;
-webkit-transform: translate(-50%, -50%);
-moz-transform:    translate(-50%, -50%);
-ms-transform:     translate(-50%, -50%);
-o-transform:      translate(-50%, -50%);
transform:         translate(-50%, -50%);
}
.eut-video-icon:before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 130%;
height: 130%;
-webkit-transform: translate(-50%, -50%);
-moz-transform:    translate(-50%, -50%);
-ms-transform:     translate(-50%, -50%);
-o-transform:      translate(-50%, -50%);
transform:         translate(-50%, -50%);
z-index: 4;
-webkit-border-radius: 50%;
border-radius: 50%;
background-color: inherit;
opacity: 0.2;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
a:hover .eut-video-icon:before {
-webkit-transform: translate(-50%, -50%) scale(1.1);
-moz-transform:    translate(-50%, -50%) scale(1.1);
-ms-transform:     translate(-50%, -50%) scale(1.1);
-o-transform:      translate(-50%, -50%) scale(1.1);
transform:         translate(-50%, -50%) scale(1.1);
} .eut-video-icon.eut-small {
font-size: 24px;
} .eut-video-icon.eut-medium {
font-size: 36px;
} .eut-video-icon.eut-large {
font-size: 60px;
} .eut-video-icon.eut-extra-large {
font-size: 90px;
} .eut-single-icon .eut-video-icon-title {
display: inline-block;
vertical-align: middle;
}
.eut-video-icon.eut-small + .eut-video-icon-title {
margin-left: 12px;
}
.eut-video-icon.eut-medium + .eut-video-icon-title {
margin-left: 16px;
}
.eut-video-icon.eut-large + .eut-video-icon-title {
margin-left: 24px;
}
.eut-video-icon.eut-extra-large + .eut-video-icon-title {
margin-left: 30px;
} .eut-html5-video-popup-container {
max-width: 900px;
margin: 0 auto;
}
.eut-html5-video-popup-container video {
width: 100%;
} .mfp-container {
opacity: 0;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10001;
overflow: hidden;
position: fixed;
background: #000000;
}
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10001;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden;
}
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
display: none;
}
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto;
}
.mfp-ajax-cur {
cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
}
.mfp-close:before {
content: "\e912";
font-family: 'crocal-icons';
}
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
cursor: auto;
}
.mfp-close, .mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.mfp-loading.mfp-figure {
display: none;
}
.mfp-hide {
display: none !important;
}
.mfp-preloader {
color: #cccccc;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044;
}
.mfp-preloader a {
color: #cccccc;
}
.mfp-preloader a:hover {
color: white;
}
.mfp-s-ready .mfp-preloader {
display: none;
}
.mfp-s-error .mfp-content {
display: none;
}
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
-webkit-box-shadow: none;
box-shadow: none;
}
button::-moz-focus-inner {
padding: 0;
border: 0;
}
.mfp-close {
cursor: pointer !important;
}
.mfp-close:hover,
.mfp-close:focus {
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
}
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #cccccc;
font-size: 12px;
line-height: 18px;
}
.mfp-arrow {
position: fixed;
margin: 0;
padding: 0;
width: 60px;
height: 60px;
}
button.mfp-arrow {
width: 60px;
height: 60px;
font-size: 24px;
overflow: hidden;
top: 50%;
margin-top: -30px;
}
button.mfp-arrow:before {
font-family: 'crocal-icons' !important;
-webkit-transition : all .2s;
-moz-transition    : all .2s;
-ms-transition     : all .2s;
-o-transition      : all .2s;
transition         : all .2s;
}
.mfp-arrow-left {
left: 30px;
}
.mfp-arrow-right {
right: 30px;
}
.mfp-arrow-left:before {
content: '\e900';
}
.mfp-arrow-right:before {
content: '\e902';
}
.mfp-arrow-left:before {
position: absolute;
left: 30px;
top: 50%;
-webkit-transform: translate(0, -50%);
-moz-transform:    translate(0, -50%);
-ms-transform:     translate(0, -50%);
-o-transform:      translate(0, -50%);
transform:         translate(0, -50%);
}
.mfp-arrow-left:hover:before {
-webkit-transform: translate(-18px, -50%);
-moz-transform:    translate(-18px, -50%);
-ms-transform:     translate(-18px, -50%);
-o-transform:      translate(-18px, -50%);
transform:         translate(-18px, -50%);
}
.mfp-arrow-right:before {
position: absolute;
top: 50%;
left: -18px;
-webkit-transform: translate(0, -50%);
-moz-transform:    translate(0, -50%);
-ms-transform:     translate(0, -50%);
-o-transform:      translate(0, -50%);
transform:         translate(0, -50%);
}
.mfp-arrow-right:hover:before {
-webkit-transform: translate(18px, -50%);
-moz-transform:    translate(18px, -50%);
-ms-transform:     translate(18px, -50%);
-o-transform:      translate(18px, -50%);
transform:         translate(18px, -50%);
}
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 1280px;
}
@media only screen and (max-width: 1400px) {
.mfp-iframe-holder .mfp-content {
max-width: 1024px;
}
}
@media only screen and (max-width: 1200px) {
.mfp-iframe-holder .mfp-content {
max-width: 900px;
}
}
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: black;
} img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 100px 0 70px;
margin: 0 auto;
}
.mfp-figure small {
color: #bdbdbd;
display: block;
font-size: 12px;
line-height: 14px;
}
.mfp-figure figure {
margin: 0;
}
.mfp-bottom-bar {
margin-top: -55px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto;
}
.mfp-title {
text-align: left;
line-height: 24px;
color: #ffffff;
word-wrap: break-word;
padding-right: 36px;
}
.mfp-image-holder .mfp-content {
max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0;
}
.mfp-img-mobile img.mfp-img {
padding: 0;
}
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0;
}
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px;
}
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0;
}
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px;
}
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0;
}
}
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0;
}
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%;
}
.mfp-container {
padding-left: 6px;
padding-right: 6px;
}
}
.mfp-ie7 .mfp-img {
padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
width: 600px;
left: 50%;
margin-left: -300px;
margin-top: 5px;
padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
padding: 0;
}
.mfp-ie7 .mfp-content {
padding-top: 44px;
}
.mfp-ie7 .mfp-close {
top: 0;
right: 0;
padding-top: 0;
} .eut-animated-item {
opacity: 0;
}
html.ie9 .eut-animated-item {
opacity: 1;
}
.eut-animated {
-webkit-animation-fill-mode:both;
-moz-animation-fill-mode:both;
-ms-animation-fill-mode:both;
-o-animation-fill-mode:both;
animation-fill-mode:both;
-webkit-animation-duration:.8s;
-moz-animation-duration:.8s;
-ms-animation-duration:.8s;
-o-animation-duration:.8s;
animation-duration:.8s;
opacity: 1;
}
.eut-animated.eut-duration-very-fast {
-webkit-animation-duration:.4s;
-moz-animation-duration:.4s;
-ms-animation-duration:.4s;
-o-animation-duration:.4s;
animation-duration:.4s;
}
.eut-animated.eut-duration-fast {
-webkit-animation-duration:.6s;
-moz-animation-duration:.6s;
-ms-animation-duration:.6s;
-o-animation-duration:.6s;
animation-duration:.6s;
}
.eut-animated.eut-duration-slow {
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-ms-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
}
.eut-animated.eut-duration-very-slow {
-webkit-animation-duration: 1.2s;
-moz-animation-duration: 1.2s;
-ms-animation-duration: 1.2s;
-o-animation-duration: 1.2s;
animation-duration: 1.2s;
} @-webkit-keyframes eut_fade_in {
0% {opacity: 0;}
100% {opacity: 1;}
}
@-moz-keyframes eut_fade_in {
0% {opacity: 0;}
100% {opacity: 1;}
}
@-o-keyframes eut_fade_in {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes eut_fade_in {
0% {opacity: 0;}
100% {opacity: 1;}
}
.eut-fade-in.eut-animated {
-webkit-animation-name: eut_fade_in;
-moz-animation-name: eut_fade_in;
-o-animation-name: eut_fade_in;
animation-name: eut_fade_in;
} @-webkit-keyframes eut_fade_in_up {
0% { opacity: 0; -webkit-transform: translateY(50px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes eut_fade_in_up {
0% { opacity: 0; -moz-transform: translateY(50px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes eut_fade_in_up {
0% { opacity: 0; -o-transform: translateY(50px); }
100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes eut_fade_in_up {
0% { opacity: 0; transform: translateY(50px); }
100% { opacity: 1; transform: translateY(0); }
}
.eut-fade-in-up.eut-animated {
-webkit-animation-name: eut_fade_in_up;
-moz-animation-name: eut_fade_in_up;
-o-animation-name: eut_fade_in_up;
animation-name: eut_fade_in_up;
} @-webkit-keyframes eut_fade_in_up_big {
0% { opacity: 0; -webkit-transform: translateY(200px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes eut_fade_in_up_big {
0% { opacity: 0; -moz-transform: translateY(200px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes eut_fade_in_up_big {
0% { opacity: 0; -o-transform: translateY(200px); }
100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes eut_fade_in_up_big {
0% { opacity: 0; transform: translateY(200px); }
100% { opacity: 1; transform: translateY(0); }
}
.eut-fade-in-up-big.eut-animated {
-webkit-animation-name: eut_fade_in_up_big;
-moz-animation-name: eut_fade_in_up_big;
-o-animation-name: eut_fade_in_up_big;
animation-name: eut_fade_in_up_big;
} @-webkit-keyframes eut_fade_in_down {
0% { opacity: 0; -webkit-transform: translateY(-50px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes eut_fade_in_down {
0% { opacity: 0; -moz-transform: translateY(-50px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes eut_fade_in_down {
0% { opacity: 0; -o-transform: translateY(-50px); }
100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes eut_fade_in_down {
0% { opacity: 0; transform: translateY(-50px); }
100% { opacity: 1; transform: translateY(0); }
}
.eut-fade-in-down.eut-animated {
-webkit-animation-name: eut_fade_in_down;
-moz-animation-name: eut_fade_in_down;
-o-animation-name: eut_fade_in_down;
animation-name: eut_fade_in_down;
} @-webkit-keyframes eut_fade_in_down_big {
0% { opacity: 0; -webkit-transform: translateY(-200px); }
100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes eut_fade_in_down_big {
0% { opacity: 0; -moz-transform: translateY(-200px); }
100% { opacity: 1; -moz-transform: translateY(0); }
}
@-o-keyframes eut_fade_in_down_big {
0% { opacity: 0; -o-transform: translateY(-200px); }
100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes eut_fade_in_down_big {
0% { opacity: 0; transform: translateY(-200px); }
100% { opacity: 1; transform: translateY(0); }
}
.eut-fade-in-down-big.eut-animated {
-webkit-animation-name: eut_fade_in_down_big;
-moz-animation-name: eut_fade_in_down_big;
-o-animation-name: eut_fade_in_down_big;
animation-name: eut_fade_in_down_big;
} @-webkit-keyframes eut_fade_in_left {
0% { opacity: 0; -webkit-transform: translateX(-50px); }
100% { opacity: 1; -webkit-transform: translateX(0); }
}
@-moz-keyframes eut_fade_in_left {
0% { opacity: 0; -moz-transform: translateX(-50px); }
100% { opacity: 1; -moz-transform: translateX(0); }
}
@-o-keyframes eut_fade_in_left {
0% { opacity: 0; -o-transform: translateX(-50px); }
100% { opacity: 1; -o-transform: translateX(0); }
}
@keyframes eut_fade_in_left {
0% { opacity: 0; transform: translateX(-50px); }
100% { opacity: 1; transform: translateX(0); }
}
.eut-fade-in-left.eut-animated {
-webkit-animation-name: eut_fade_in_left;
-moz-animation-name: eut_fade_in_left;
-o-animation-name: eut_fade_in_left;
animation-name: eut_fade_in_left;
} @-webkit-keyframes eut_fade_in_left_big {
0% { opacity: 0; -webkit-transform: translateX(-200px); }
100% { opacity: 1; -webkit-transform: translateX(0); }
}
@-moz-keyframes eut_fade_in_left_big {
0% { opacity: 0; -moz-transform: translateX(-200px); }
100% { opacity: 1; -moz-transform: translateX(0); }
}
@-o-keyframes eut_fade_in_left_big {
0% { opacity: 0; -o-transform: translateX(-200px); }
100% { opacity: 1; -o-transform: translateX(0); }
}
@keyframes eut_fade_in_left_big {
0% { opacity: 0; transform: translateX(-200px); }
100% { opacity: 1; transform: translateX(0); }
}
.eut-fade-in-left-big.eut-animated {
-webkit-animation-name: eut_fade_in_left_big;
-moz-animation-name: eut_fade_in_left_big;
-o-animation-name: eut_fade_in_left_big;
animation-name: eut_fade_in_left_big;
} @-webkit-keyframes eut_fade_in_right {
0% { opacity: 0; -webkit-transform: translateX(50px); }
100% { opacity: 1; -webkit-transform: translateX(0); }
}
@-moz-keyframes eut_fade_in_right {
0% { opacity: 0; -moz-transform: translateX(50px); }
100% { opacity: 1; -moz-transform: translateX(0); }
}
@-o-keyframes eut_fade_in_right {
0% { opacity: 0; -o-transform: translateX(50px); }
100% { opacity: 1; -o-transform: translateX(0); }
}
@keyframes eut_fade_in_right {
0% { opacity: 0; transform: translateX(50px); }
100% { opacity: 1; transform: translateX(0); }
}
.eut-fade-in-right.eut-animated {
-webkit-animation-name: eut_fade_in_right;
-moz-animation-name: eut_fade_in_right;
-o-animation-name: eut_fade_in_right;
animation-name: eut_fade_in_right;
} @-webkit-keyframes eut_fade_in_right_big {
0% { opacity: 0; -webkit-transform: translateX(200px); }
100% { opacity: 1; -webkit-transform: translateX(0); }
}
@-moz-keyframes eut_fade_in_right_big {
0% { opacity: 0; -moz-transform: translateX(200px); }
100% { opacity: 1; -moz-transform: translateX(0); }
}
@-o-keyframes eut_fade_in_right_big {
0% { opacity: 0; -o-transform: translateX(200px); }
100% { opacity: 1; -o-transform: translateX(0); }
}
@keyframes eut_fade_in_right_big {
0% { opacity: 0; transform: translateX(200px); }
100% { opacity: 1; transform: translateX(0); }
}
.eut-fade-in-right-big.eut-animated {
-webkit-animation-name: eut_fade_in_right_big;
-moz-animation-name: eut_fade_in_right_big;
-o-animation-name: eut_fade_in_right_big;
animation-name: eut_fade_in_right_big;
} @-webkit-keyframes eut_zoom_in {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 1;
}
}
@keyframes eut_zoom_in {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 1;
}
}
.eut-zoom-in.eut-animated {
-webkit-animation-name: eut_zoom_in;
animation-name: eut_zoom_in;
} #eut-fullpage { }
#eut-fullpage .eut-section {
height: 100vh;
}
#eut-fullpage .eut-section {
margin-bottom: 0;
}
#eut-fullpage .eut-section > div {
visibility: hidden;
}
html.fp-enabled,
.fp-enabled body {
margin: 0;
padding: 0;
overflow:hidden; -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
height: 100%;
position: relative; -ms-touch-action: none; touch-action: none;
}
.fp-section {
position: relative;
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}
.fp-slide {
float: left;
}
.fp-slide, .fp-slidesContainer {
height: 100%;
display: block;
}
.fp-slides {
z-index:1;
height: 100%;
overflow: hidden;
position: relative;
-webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
display: table;
table-layout:fixed;
width: 100%;
}
.fp-tableCell {
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%;
}
.fp-slidesContainer {
float: left;
position: relative;
}
.fp-controlArrow {
position: absolute;
z-index: 4;
top: 50%;
cursor: pointer;
width: 0;
height: 0;
border-style: solid;
margin-top: -38px;
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
left: 15px;
width: 0;
border-width: 38.5px 34px 38.5px 0;
border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
right: 15px;
border-width: 38.5px 0 38.5px 34px;
border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
overflow: hidden;
position: relative;
}
.fp-scroller{
overflow: hidden;
}
.iScrollIndicator{
border: 0 !important;
}
.fp-notransition {
-webkit-transition: none !important;
transition: none !important;
}
#fp-nav {
position: fixed;
z-index: 100;
margin-top: -32px;
top: 50%;
opacity: 1;
-webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
right: 17px;
}
#fp-nav.left {
left: 17px;
}
.fp-slidesNav{
position: absolute;
z-index: 4;
left: 50%;
opacity: 1;
}
.fp-slidesNav.bottom {
bottom: 17px;
}
.fp-slidesNav.top {
top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
margin: 0;
padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
display: block;
width: 14px;
height: 13px;
margin: 7px;
position:relative;
}
.fp-slidesNav ul li {
display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
display: block;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer;
text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
height: 12px;
width: 12px;
margin: -6px 0 0 -6px;
border-radius: 100%;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
border-radius: 50%;
position: absolute;
z-index: 1;
height: 4px;
width: 4px;
border: 0;
background: #000000;
left: 50%;
top: 50%;
margin: -2px 0 0 -2px;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
#fp-nav.eut-dark ul li a span {
background-color: #000000;
}
#fp-nav.eut-light ul li a span {
background-color: #ffffff;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
width: 10px;
height: 10px;
margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
position: absolute;
top: -2px;
color: #fff;
font-size: 14px;
white-space: nowrap;
max-width: 220px;
overflow: hidden;
display: block;
opacity: 0;
width: 0;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
-webkit-transition: opacity 0.2s ease-in;
transition: opacity 0.2s ease-in;
width: auto;
opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
height: auto !important;
}
#fp-nav .fp-tooltip {
background-color: rgba(0,0,0,0.8);
color: #ffffff;
font-size: 11px;
line-height: 1.2em;
padding: 5px 8px;
-webkit-border-radius: 3px;
border-radius: 3px;
} #eut-pilling-page {
position: relative;
height: 100vh;
}
#eut-pilling-page .eut-section {
height: 100vh;
position: absolute;
}
#eut-pilling-page .eut-section {
margin-bottom: 0;
}
#eut-pilling-page .eut-section {
visibility: hidden;
}
html.fp-enabled #eut-pilling-page .eut-section {
visibility: visible;
} #eut-pilling-page.eut-disable-on-device {
height: auto;
}
#eut-pilling-page.eut-disable-on-device .eut-section {
visibility: visible;
min-height: 100vh;
position: relative;
display: table;
width: 100%;
}
html.fp-enabled,
.fp-enabled body {
margin: 0;
padding: 0;
overflow:hidden; -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.pp-section {
height:100%;
position:absolute;
width:100%;
}
.pp-easing {
-webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
-moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
-o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990); -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
-moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
-o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990); }
#pp-nav {
position: fixed;
z-index: 100;
margin-top: -32px;
top: 50%;
opacity: 1;
}
#pp-nav.right {
right: 17px;
}
#pp-nav.left {
left: 17px;
}
.pp-section.pp-table{
display: table;
}
.pp-tableCell {
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%;
}
.pp-slidesNav{
position: absolute;
z-index: 4;
left: 50%;
opacity: 1;
}
.pp-slidesNav.bottom {
bottom: 17px;
}
.pp-slidesNav.top {
top: 17px;
}
#pp-nav ul,
.pp-slidesNav ul {
margin: 0;
padding: 0;
}
#pp-nav li,
.pp-slidesNav li {
display: block;
width: 14px;
height: 13px;
margin: 7px;
position:relative;
}
.pp-slidesNav li {
display: inline-block;
}
#pp-nav li a,
.pp-slidesNav li a {
display: block;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer;
text-decoration: none;
}
#pp-nav li .active span,
.pp-slidesNav .active span {
height: 12px;
width: 12px;
margin: -6px 0 0 -6px;
border-radius: 100%;
}
#pp-nav span,
.pp-slidesNav span {
border-radius: 50%;
position: absolute;
z-index: 1;
height: 4px;
width: 4px;
border: 0;
background: #000000;
left: 50%;
top: 50%;
margin: -2px 0 0 -2px;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
#pp-nav.eut-dark li span {
background-color: #000000;
}
#pp-nav.eut-light li span {
background-color: #ffffff;
}
#pp-nav ul li .pp-tooltip {
position: absolute;
top: -7px;
color: #fff;
font-size: 14px;
white-space: nowrap;
max-width: 220px;
overflow: hidden;
display: block;
opacity: 0;
width: 0;
}
#pp-nav ul li:hover .pp-tooltip,
#pp-nav.pp-show-active a.active + .pp-tooltip {
-webkit-transition: opacity 0.2s ease-in;
transition: opacity 0.2s ease-in;
width: auto;
opacity: 1;
}
#pp-nav .pp-tooltip {
background-color: rgba(0,0,0,0.8);
color: #ffffff;
font-size: 11px;
line-height: 1.2em;
padding: 5px 8px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#pp-nav .pp-tooltip:empty {
display: none !important;
}
.pp-tooltip.right {
right: 20px;
}
.pp-tooltip.left {
left: 20px;
}
.pp-scrollable{
overflow-y: scroll;
height: 100%;
} .eut-show-list:not(.eut-responsive) > li {
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(20px);
-moz-transform:    translateY(20px);
-ms-transform:     translateY(20px);
-o-transform:      translateY(20px);
transform:         translateY(20px);
-webkit-transition : all .5s cubic-bezier(.215,.61,.355,1);
-moz-transition    : all .5s cubic-bezier(.215,.61,.355,1);
-ms-transition     : all .5s cubic-bezier(.215,.61,.355,1);
-o-transition      : all .5s cubic-bezier(.215,.61,.355,1);
transition         : all .5s cubic-bezier(.215,.61,.355,1);
}
.eut-show-list > li.eut-show {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
} body.eut-framed #eut-theme-wrapper {
width: 100%;
margin: 0;
overflow-y: hidden;
}
.eut-frame {
position: fixed;
z-index: 99999;
} #eut-theme-wrapper {
position: relative;
float: none;
width: 1220px;
margin: 0 auto;
}
body.eut-boxed #eut-theme-wrapper {
-webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
}
body.eut-stretched #eut-theme-wrapper {
width: 100%;
margin: 0;
overflow-y: hidden;
}
.eut-container {
max-width: 1170px;
width: 100%;
margin-right: auto;
margin-left: auto;
position: relative;
}
.eut-container:before,
.eut-container:after {
display: table;
content: " ";
}
.eut-container:after {
clear: both;
} .eut-section,
.eut-inner-section {
position: relative;
}
.eut-section.eut-custom-height .eut-row {
visibility: hidden;
} .eut-fullwidth .eut-container {
width: 100% !important;
max-width: 100% !important;
display: block;
}
#eut-header.eut-fullwidth #eut-main-header:not(.eut-side-default).eut-with-sidearea .eut-container,
.eut-boxed #eut-header.eut-fullwidth #eut-main-header:not(.eut-side-default).eut-with-sidearea .eut-container {
padding-right: 130px;
}
.eut-boxed #eut-header #eut-main-header:not(.eut-side-default).eut-with-sidearea .eut-container {
padding-right: 80px;
}
#eut-content.eut-left-sidebar .eut-section.eut-fullwidth,
#eut-content.eut-right-sidebar .eut-section.eut-fullwidth,
#eut-content.eut-left-sidebar .eut-section.eut-fullwidth-background,
#eut-content.eut-right-sidebar .eut-section.eut-fullwidth-background {
visibility: hidden;
} .eut-smallwidth .eut-container {
padding-left: 200px;
padding-right: 200px;
}
#eut-theme-wrapper.eut-header-side .eut-smallwidth .eut-container {
padding-left: 90px;
padding-right: 90px;
} .eut-percentage-height.eut-loading-height {
visibility: hidden;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="10"] {
min-height: 10vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="20"] {
min-height: 20vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="30"] {
min-height: 30vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="40"] {
min-height: 40vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="50"] {
min-height: 50vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="60"] {
min-height: 60vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="70"] {
min-height: 70vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="80"] {
min-height: 80vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="90"] {
min-height: 90vh;
}
.eut-section.eut-percentage-height.eut-loading-height[data-height-ratio="100"] {
min-height: 100vh;
} .eut-row,
.eut-row-inner {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.eut-column .eut-column-wrapper,
.eut-column-inner .eut-column-wrapper-inner {
position: relative;
}
.eut-column-content,
.eut-column-inner-content {
width: 100%;
z-index: 1;
} .eut-fullwidth .eut-row {
margin-right: 0;
margin-left: 0;
}
.eut-fullwidth .eut-row .eut-column {
padding-right: 0;
padding-left: 0;
} .eut-section.eut-equal-columns .eut-column,
.eut-inner-section.eut-equal-columns .eut-column-inner,
.eut-section .eut-column.eut-column-fullheight,
.eut-inner-section .eut-column-inner.eut-column-fullheight {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.eut-section .eut-column .eut-column-wrapper,
.eut-inner-section .eut-column-inner .eut-column-wrapper-inner {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-section.eut-tablet-landscape-not-equal-columns .eut-column,
.eut-inner-section.eut-tablet-landscape-not-equal-columns .eut-column-inner {
-webkit-box-align: flex-start;
-webkit-align-items: flex-start;
-ms-flex-align: flex-start;
align-items: flex-start;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-section.eut-tablet-portrait-not-equal-columns .eut-column,
.eut-inner-section.eut-tablet-portrait-not-equal-columns .eut-column-inner {
-webkit-box-align: flex-start;
-webkit-align-items: flex-start;
-ms-flex-align: flex-start;
align-items: flex-start;
}
} .eut-column.eut-horizontal-position-center .eut-column-content,
.eut-column-inner.eut-horizontal-position-center .eut-column-inner-content {
margin-left: auto;
margin-right: auto;
}
.eut-column.eut-horizontal-position-right .eut-column-content,
.eut-column-inner.eut-horizontal-position-right .eut-column-inner-content {
margin-left: auto;
margin-right: 0;
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-column.eut-tablet-reset-content-width .eut-column-content,
.eut-column-inner.eut-tablet-reset-content-width .eut-column-inner-content {
max-width: 100% !important;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-column.eut-tablet-sm-reset-content-width .eut-column-content,
.eut-column-inner.eut-tablet-sm-reset-content-width .eut-column-inner-content {
max-width: 100% !important;
}
} @media only screen and (max-width: 767px) {
.eut-column.eut-mobile-reset-content-width .eut-column-content,
.eut-column-inner.eut-mobile-reset-content-width .eut-column-inner-content {
max-width: 100% !important;
}
} .eut-section:not(.eut-equal-columns) .eut-column:not(.eut-column-fullheight).eut-vertical-position-bottom,
.eut-section .eut-column.eut-vertical-position-bottom .eut-column-content,
.eut-inner-section:not(.eut-equal-columns) .eut-column-inner:not(.eut-column-fullheight).eut-vertical-position-bottom,
.eut-inner-section .eut-column-inner.eut-vertical-position-bottom .eut-column-inner-content {
-webkit-align-self: flex-end;
align-self: flex-end;
}
.eut-section:not(.eut-equal-columns) .eut-column:not(.eut-column-fullheight).eut-vertical-position-middle,
.eut-section .eut-column.eut-vertical-position-middle .eut-column-content,
.eut-inner-section:not(.eut-equal-columns) .eut-column-inner:not(.eut-column-fullheight).eut-vertical-position-middle,
.eut-inner-section .eut-column-inner.eut-vertical-position-middle .eut-column-inner-content {
-webkit-align-self: center;
align-self: center;
} .eut-column-1-12,
.eut-column-5-12,
.eut-column-7-12,
.eut-column-11-12,
.eut-column-1-6,
.eut-column-1-5,
.eut-column-2-5,
.eut-column-3-5,
.eut-column-1-4,
.eut-column-1-2,
.eut-column-1-3,
.eut-column-2-3,
.eut-column-3-4,
.eut-column-4-5,
.eut-column-5-6,
.eut-column-1
{
position: relative;
min-height: 1px;
z-index: 1;
}
.eut-column-1-12 {
width: 8.33333333%;
}
.eut-column-5-12 {
width: 41.66666667%;
}
.eut-column-7-12 {
width: 58.33333333%;
}
.eut-column-11-12 {
width: 91.66666667%;
}
.eut-column-1-6 {
width: 16.66666667%;
}
.eut-column-1-5 {
width: 20%;
}
.eut-column-2-5 {
width: 40%;
}
.eut-column-3-5 {
width: 60%;
}
.eut-column-1-4 {
width: 25%;
}
.eut-column-1-3 {
width: 33.33333333%;
}
.eut-column-1-2 {
width: 50.0%;
}
.eut-column-2-3 {
width: 66.66666667%;
}
.eut-column-3-4 {
width: 75.0%;
}
.eut-column-4-5 {
width: 80.0%;
}
.eut-column-5-6 {
width: 83.33333333%;
}
.eut-column-1 {
width: 100.0%;
}
.clear {
clear: both;
display: block;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
.clearfix:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
} @media only screen and (min-width: 1200px) {
.eut-with-fullheight {
height: 100vh;
}
} .eut-row.eut-columns-gap-default {
margin-left: -15px;
margin-right: -15px;
}
.eut-row.eut-columns-gap-default .eut-column {
padding-left: 15px;
padding-right: 15px;
}
.eut-section.eut-fullwidth .eut-row.eut-columns-gap-default,
.eut-section.eut-fullwidth .eut-row.eut-columns-gap-default .eut-column {
padding-left: 0;
padding-right: 0;
}
.eut-section.eut-container-width .eut-row.eut-columns-gap-default {
padding-left: 15px;
padding-right: 15px;
}
.eut-row-inner.eut-columns-gap-default {
margin-left: -15px;
margin-right: -15px;
}
.eut-row-inner.eut-columns-gap-default .eut-column-inner {
padding-left: 15px;
padding-right: 15px;
} .eut-row.eut-columns-gap-none {
margin: 0;
}
.eut-row.eut-columns-gap-none .eut-column {
padding: 0;
}
.eut-section.eut-fullwidth .eut-row:not(.eut-columns-gap-none) {
margin-right: 0;
margin-left: 0;
} .eut-clipping-animation,
.eut-clipping-animation.eut-colored-clipping .eut-clipping-content,
.eut-appear-animation {
visibility: hidden;
opacity: 0;
display: block;
}
.eut-clipping-animation.eut-clipping-animated,
.eut-clipping-animation.eut-clipping-show-content.eut-colored-clipping .eut-clipping-content,
.eut-appear-animation.eut-appear-animated {
visibility: visible;
opacity: 1;
}
.eut-clipping-animation .eut-clipping-wrapper,
.eut-appear-animation .eut-appear-wrapper {
overflow: hidden;
position: relative;
} .eut-clipping-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
} .eut-clipping-animation.eut-clipping-animated.eut-clipping-up .eut-clipping-wrapper {
-webkit-animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
}
.eut-clipping-animation.eut-clipping-animated.eut-clipping-up .eut-clipping-content {
-webkit-animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
} .eut-clipping-animation.eut-clipping-animated.eut-clipping-down .eut-clipping-wrapper {
-webkit-animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_down_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
}
.eut-clipping-animation.eut-clipping-animated.eut-clipping-down .eut-clipping-content {
-webkit-animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_up_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
} .eut-clipping-animation.eut-clipping-animated.eut-clipping-left .eut-clipping-wrapper {
-webkit-animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
}
.eut-clipping-animation.eut-clipping-animated.eut-clipping-left .eut-clipping-content {
-webkit-animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
} .eut-clipping-animation.eut-clipping-animated.eut-clipping-right .eut-clipping-wrapper {
-webkit-animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_right_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
}
.eut-clipping-animation.eut-clipping-animated.eut-clipping-right .eut-clipping-content {
-webkit-animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
animation: clipping_left_in 0.7s cubic-bezier(0.85,0,0.12,1) both;
} .eut-appear-animated {
-webkit-animation-fill-mode:both;
-moz-animation-fill-mode:both;
-ms-animation-fill-mode:both;
-o-animation-fill-mode:both;
animation-fill-mode:both;
}
.eut-appear-animated.eut-duration-very-fast .eut-appear-content {
-webkit-animation-duration:.4s;
-moz-animation-duration:.4s;
-ms-animation-duration:.4s;
-o-animation-duration:.4s;
animation-duration:.4s;
}
.eut-appear-animated.eut-duration-fast .eut-appear-content {
-webkit-animation-duration:.6s;
-moz-animation-duration:.6s;
-ms-animation-duration:.6s;
-o-animation-duration:.6s;
animation-duration:.6s;
}
.eut-appear-animated.eut-duration-normal .eut-appear-content {
-webkit-animation-duration:.8s;
-moz-animation-duration:.8s;
-ms-animation-duration:.8s;
-o-animation-duration:.8s;
animation-duration:.8s;
}
.eut-appear-animated.eut-duration-slow .eut-appear-content {
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-ms-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
}
.eut-appear-animated.eut-duration-very-slow .eut-appear-content {
-webkit-animation-duration: 1.2s;
-moz-animation-duration: 1.2s;
-ms-animation-duration: 1.2s;
-o-animation-duration: 1.2s;
animation-duration: 1.2s;
} .eut-appear-animation.eut-appear-animated.eut-appear-up .eut-appear-content {
-webkit-animation-name: clipping_up_in;
-moz-animation-name: clipping_up_in;
-o-animation-name: clipping_up_in;
animation-name: clipping_up_in;
} .eut-appear-animation.eut-appear-animated.eut-appear-down .eut-appear-content {
-webkit-animation-name: clipping_down_in;
-moz-animation-name: clipping_down_in;
-o-animation-name: clipping_down_in;
animation-name: clipping_down_in;
} .eut-appear-animation.eut-appear-animated.eut-appear-left .eut-appear-content {
-webkit-animation-name: clipping_left_in;
-moz-animation-name: clipping_left_in;
-o-animation-name: clipping_left_in;
animation-name: clipping_left_in;
} .eut-appear-animation.eut-appear-animated.eut-appear-right .eut-appear-content {
-webkit-animation-name: clipping_right_in;
-moz-animation-name: clipping_right_in;
-o-animation-name: clipping_right_in;
animation-name: clipping_right_in;
} @-webkit-keyframes clipping_right_in {
from { -webkit-transform: translateX(100%); translateZ(0); }
to { -webkit-transform: translateX(0); translateZ(0); }
}
@-moz-keyframes clipping_right_in {
from { -moz-transform: translateX(100%); translateZ(0); }
to { -moz-transform: translateX(0); translateZ(0); }
}
@-o-keyframes clipping_right_in {
from { -o-transform: translateX(100%); translateZ(0); }
to { -o-transform: translateX(0); translateZ(0); }
}
@keyframes clipping_right_in {
from { transform: translateX(100%); translateZ(0); }
to { transform: translateX(0); translateZ(0); }
} @-webkit-keyframes clipping_left_in {
from { -webkit-transform: translateX(-100%); translateZ(0); }
to { -webkit-transform: translateX(0); translateZ(0); }
}
@-moz-keyframes clipping_left_in {
from { -moz-transform: translateX(-100%); translateZ(0); }
to { -moz-transform: translateX(0); translateZ(0); }
}
@-o-keyframes clipping_left_in {
from { -o-transform: translateX(-100%); translateZ(0); }
to { -o-transform: translateX(0); translateZ(0); }
}
@keyframes clipping_left_in {
from { transform: translateX(-100%); translateZ(0); }
to { transform: translateX(0); translateZ(0); }
} @-webkit-keyframes clipping_up_in {
from { -webkit-transform: translateY(-100%); translateZ(0); }
to { -webkit-transform: translateY(0); translateZ(0); }
}
@-moz-keyframes clipping_up_in {
from { -moz-transform: translateY(-100%); translateZ(0); }
to { -moz-transform: translateY(0); translateZ(0); }
}
@-o-keyframes clipping_up_in {
from { -o-transform: translateY(-100%); translateZ(0); }
to { -o-transform: translateY(0); translateZ(0); }
}
@keyframes clipping_up_in {
from { transform: translateY(-100%); translateZ(0); }
to { transform: translateY(0); translateZ(0); }
} @-webkit-keyframes clipping_down_in {
from { -webkit-transform: translateY(100%); translateZ(0); }
to { -webkit-transform: translateY(0); translateZ(0); }
}
@-moz-keyframes clipping_down_in {
from { -moz-transform: translateY(100%); translateZ(0); }
to { -moz-transform: translateY(0); translateZ(0); }
}
@-o-keyframes clipping_down_in {
from { -o-transform: translateY(100%); translateZ(0); }
to { -o-transform: translateY(0); translateZ(0); }
}
@keyframes clipping_down_in {
from { transform: translateY(100%); translateZ(0); }
to { transform: translateY(0); translateZ(0); }
} .eut-clipping-animation.eut-clipping-animated.eut-colored-clipping-up .eut-clipping-overlay {
-webkit-animation: colored_clipping_up_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: colored_clipping_up_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: colored_clipping_up_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
animation: colored_clipping_up_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
} .eut-clipping-animation.eut-clipping-animated.eut-colored-clipping-down .eut-clipping-overlay {
-webkit-animation: colored_clipping_down_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: colored_clipping_down_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: colored_clipping_down_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
animation: colored_clipping_down_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
} .eut-clipping-animation.eut-clipping-animated.eut-colored-clipping-left .eut-clipping-overlay {
-webkit-animation: colored_clipping_left_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: colored_clipping_left_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: colored_clipping_left_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
animation: colored_clipping_left_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
} .eut-clipping-animation.eut-clipping-animated.eut-colored-clipping-right .eut-clipping-overlay {
-webkit-animation: colored_clipping_right_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-moz-animation: colored_clipping_right_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
-o-animation: colored_clipping_right_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
animation: colored_clipping_right_in 1.4s cubic-bezier(0.85,0,0.12,1) both;
} @-webkit-keyframes colored_clipping_up_in {
0% { -webkit-transform: translateY(-100%); translateZ(0); }
50% { -webkit-transform: translateY(0); translateZ(0); }
100% { -webkit-transform: translateY(100%); translateZ(0); }
}
@-moz-keyframes colored_clipping_up_in {
0% { -moz-transform: translateY(-100%); translateZ(0); }
50% { -moz-transform: translateY(0); translateZ(0); }
100% { -moz-transform: translateY(100%); translateZ(0); }
}
@-o-keyframes colored_clipping_up_in {
0% { -o-transform: translateY(-100%); translateZ(0); }
50% { -o-transform: translateY(0); translateZ(0); }
100% { -o-transform: translateY(100%); translateZ(0); }
}
@keyframes colored_clipping_up_in {
0% { transform: translateY(-100%); translateZ(0); }
50% { transform: translateY(0); translateZ(0); }
100% { transform: translateY(100%); translateZ(0); }
} @-webkit-keyframes colored_clipping_down_in {
0% { -webkit-transform: translateY(100%); translateZ(0); }
50% { -webkit-transform: translateY(0); translateZ(0); }
100% { -webkit-transform: translateY(-100%); translateZ(0); }
}
@-moz-keyframes colored_clipping_down_in {
0% { -moz-transform: translateY(100%); translateZ(0); }
50% { -moz-transform: translateY(0); translateZ(0); }
100% { -moz-transform: translateY(-100%); translateZ(0); }
}
@-o-keyframes colored_clipping_down_in {
0% { -o-transform: translateY(100%); translateZ(0); }
50% { -o-transform: translateY(0); translateZ(0); }
100% { -o-transform: translateY(-100%); translateZ(0); }
}
@keyframes colored_clipping_down_in {
0% { transform: translateY(100%); translateZ(0); }
50% { transform: translateY(0); translateZ(0); }
100% { transform: translateY(-100%); translateZ(0); }
} @-webkit-keyframes colored_clipping_left_in {
0% { -webkit-transform: translateX(-100%); translateZ(0); }
50% { -webkit-transform: translateX(0); translateZ(0); }
100% { -webkit-transform: translateX(100%); translateZ(0); }
}
@-moz-keyframes colored_clipping_left_in {
0% { -moz-transform: translateX(-100%); translateZ(0); }
50% { -moz-transform: translateX(0); translateZ(0); }
100% { -moz-transform: translateX(100%); translateZ(0); }
}
@-o-keyframes colored_clipping_left_in {
0% { -o-transform: translateX(-100%); translateZ(0); }
50% { -o-transform: translateX(0); translateZ(0); }
100% { -o-transform: translateX(100%); translateZ(0); }
}
@keyframes colored_clipping_left_in {
0% { transform: translateX(-100%); translateZ(0); }
50% { transform: translateX(0); translateZ(0); }
100% { transform: translateX(100%); translateZ(0); }
} @-webkit-keyframes colored_clipping_right_in {
0% { -webkit-transform: translateX(100%); translateZ(0); }
50% { -webkit-transform: translateX(0); translateZ(0); }
100% { -webkit-transform: translateX(-100%); translateZ(0); }
}
@-moz-keyframes colored_clipping_right_in {
0% { -moz-transform: translateX(100%); translateZ(0); }
50% { -moz-transform: translateX(0); translateZ(0); }
100% { -moz-transform: translateX(-100%); translateZ(0); }
}
@-o-keyframes colored_clipping_right_in {
0% { -o-transform: translateX(100%); translateZ(0); }
50% { -o-transform: translateX(0); translateZ(0); }
100% { -o-transform: translateX(-100%); translateZ(0); }
}
@keyframes colored_clipping_right_in {
0% { transform: translateX(100%); translateZ(0); }
50% { transform: translateX(0); translateZ(0); }
100% { transform: translateX(-100%); translateZ(0); }
}
.eut-section.eut-middle-content .eut-clipping-content {
display: table;
width: 100%;
}
.eut-section.eut-middle-content .eut-clipping-content .eut-column-wrapper {
display: table-cell;
vertical-align: middle;
} .eut-expand-bg {
visibility: hidden;
}  @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-custom-position.eut-tablet-landscape-position-none {
top: 0px !important;
left: 0px !important;
right: 0px !important;
bottom: 0px !important;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-custom-position.eut-tablet-portrait-position-none {
top: 0px !important;
left: 0px !important;
right: 0px !important;
bottom: 0px !important;
}
} @media only screen and (max-width: 767px) {
.eut-custom-position.eut-mobile-position-none {
top: 0px !important;
left: 0px !important;
right: 0px !important;
bottom: 0px !important;
}
}  @media screen and (min-width: 1201px) {
.eut-desktop-column-hide,
.eut-desktop-row-hide {
display: none !important;
}
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-tablet-column-hide,
.eut-tablet-row-hide {
display: none !important;
}
}
@media only screen and (max-width: 1200px) {
.eut-smallwidth .eut-container {
padding-left: 90px;
padding-right: 90px;
} .eut-tablet-column-1-12 {
width: 8.33333333%;
}
.eut-tablet-column-5-12 {
width: 41.66666667%;
}
.eut-tablet-column-7-12 {
width: 58.33333333%;
}
.eut-tablet-column-11-12 {
width: 91.66666667%;
}
.eut-tablet-column-1-6 {
width: 16.66666667%;
}
.eut-tablet-column-1-5 {
width: 20%;
}
.eut-tablet-column-2-5 {
width: 40%;
}
.eut-tablet-column-3-5 {
width: 60%;
}
.eut-tablet-column-1-4 {
width: 25%;
}
.eut-tablet-column-1-3 {
width: 33.33333333%;
}
.eut-tablet-column-1-2 {
width: 50.0%;
}
.eut-tablet-column-2-3{
width: 66.66666667%;
}
.eut-tablet-column-3-4 {
width: 75.0%;
}
.eut-tablet-column-4-5 {
width: 80.0%;
}
.eut-tablet-column-5-6 {
width: 83.33333333%;
}
.eut-tablet-column-1 {
width: 100.0%;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-tablet-sm-column-hide,
.eut-tablet-sm-row-hide {
display: none !important;
}
}
@media only screen and (max-width: 959px) {
.eut-container {
max-width: 90% !important;
} .eut-tablet-sm-column-1-12 {
width: 8.33333333%;
}
.eut-tablet-sm-column-5-12 {
width: 41.66666667%;
}
.eut-tablet-sm-column-7-12 {
width: 58.33333333%;
}
.eut-tablet-sm-column-11-12 {
width: 91.66666667%;
}
.eut-tablet-sm-column-1-6 {
width: 16.66666667%;
}
.eut-tablet-sm-column-1-5 {
width: 20%;
}
.eut-tablet-sm-column-2-5 {
width: 40%;
}
.eut-tablet-sm-column-3-5 {
width: 60%;
}
.eut-tablet-sm-column-1-4 {
width: 25%;
}
.eut-tablet-sm-column-1-3 {
width: 33.33333333%;
}
.eut-tablet-sm-column-1-2 {
width: 50.0%;
}
.eut-tablet-sm-column-2-3{
width: 66.66666667%;
}
.eut-tablet-sm-column-3-4 {
width: 75.0%;
}
.eut-tablet-sm-column-4-5 {
width: 80.0%;
}
.eut-tablet-sm-column-5-6 {
width: 83.33333333%;
}
.eut-tablet-sm-column-1 {
width: 100.0%;
}
} @media only screen and (max-width: 767px) {
.eut-mobile-column-hide,
.eut-mobile-row-hide {
display: none !important;
}
.eut-smallwidth .eut-container {
padding-left: 1.875rem;
padding-right: 1.875rem;
}
.eut-column-1-12,
.eut-column-5-12,
.eut-column-7-12,
.eut-column-11-12,
.eut-column-1-6,
.eut-column-1-5,
.eut-column-2-5,
.eut-column-3-5,
.eut-column-1-4,
.eut-column-1-2,
.eut-column-1-3,
.eut-column-2-3,
.eut-column-3-4,
.eut-column-4-5,
.eut-column-5-6,
.eut-column-1 {
width: 100%;
}
.eut-mobile-column-1-5 {
width: 20%;
}
.eut-mobile-column-2-5 {
width: 40%;
}
.eut-mobile-column-3-5 {
width: 60%;
}
.eut-mobile-column-4-5 {
width: 80%;
}
.eut-mobile-column-1-4 {
width: 25%;
}
.eut-mobile-column-1-3 {
width: 33.33333333%;
}
.eut-mobile-column-1-2 {
width: 50.0%;
}
.eut-mobile-column-1 {
width: 100.0%;
}
#eut-main-content .eut-column-1-12,
#eut-main-content .eut-column-5-12,
#eut-main-content .eut-column-7-12,
#eut-main-content .eut-column-11-12,
#eut-main-content .eut-column-1-6,
#eut-main-content .eut-column-1-5,
#eut-main-content .eut-column-2-5,
#eut-main-content .eut-column-3-5,
#eut-main-content .eut-column-1-4,
#eut-main-content .eut-column-1-2,
#eut-main-content .eut-column-1-3,
#eut-main-content .eut-column-2-3,
#eut-main-content .eut-column-3-4,
#eut-main-content .eut-column-4-5,
#eut-main-content .eut-column-5-6,
#eut-main-content .eut-column-1 {
border: none !important;
}
.eut-column-wrapper {
padding-right: 0;
padding-left: 0;
}
.eut-section.eut-fullwidth .eut-row {
padding-right: 0 !important;
padding-left: 0 !important;
}
.eut-fullwidth .eut-row:not(.eut-columns-gap-none) .eut-column {
padding-right: 15px;
padding-left: 15px;
}
} @media only screen and (max-width: 479px) {
.eut-mobile-sm-column-hide,
.eut-mobile-sm-row-hide {
display: none;
}
.eut-mobile-sm-column-1-4 {
width: 25%;
}
.eut-mobile-sm-column-1-3 {
width: 33.33333333%;
}
.eut-mobile-sm-column-1-2 {
width: 50.0%;
}
.eut-mobile-sm-column-1 {
width: 100.0%;
}
} .eut-order-1 {
-ms-flex-order: 1;
order: 1;
}
.eut-order-2 {
-ms-flex-order: 2;
order: 2;
}
.eut-order-3 {
-ms-flex-order: 3;
order: 3;
}
.eut-order-4 {
-ms-flex-order: 4;
order: 4;
}
.eut-order-5 {
-ms-flex-order: 5;
order: 5;
}
.eut-order-6 {
-ms-flex-order: 6;
order: 6;
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-tablet-order-1 {
-ms-flex-order: 1;
order: 1;
}
.eut-tablet-order-2 {
-ms-flex-order: 2;
order: 2;
}
.eut-tablet-order-3 {
-ms-flex-order: 3;
order: 3;
}
.eut-tablet-order-4 {
-ms-flex-order: 4;
order: 4;
}
.eut-tablet-order-5 {
-ms-flex-order: 5;
order: 5;
}
.eut-tablet-order-6 {
-ms-flex-order: 6;
order: 6;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-tablet-sm-order-1 {
-ms-flex-order: 1;
order: 1;
}
.eut-tablet-sm-order-2 {
-ms-flex-order: 2;
order: 2;
}
.eut-tablet-sm-order-3 {
-ms-flex-order: 3;
order: 3;
}
.eut-tablet-sm-order-4 {
-ms-flex-order: 4;
order: 4;
}
.eut-tablet-sm-order-5 {
-ms-flex-order: 5;
order: 5;
}
.eut-tablet-sm-order-6 {
-ms-flex-order: 6;
order: 6;
}
} @media only screen and (max-width: 767px) {
.eut-mobile-order-1 {
-ms-flex-order: 1;
order: 1;
}
.eut-mobile-order-2 {
-ms-flex-order: 2;
order: 2;
}
.eut-mobile-order-3 {
-ms-flex-order: 3;
order: 3;
}
.eut-mobile-order-4 {
-ms-flex-order: 4;
order: 4;
}
.eut-mobile-order-5 {
-ms-flex-order: 5;
order: 5;
}
.eut-mobile-order-6 {
-ms-flex-order: 6;
order: 6;
}
} #eut-privacy-bar {
background: rgba(0, 0, 0, 0.9);
color: #ffffff;
left: 5%;
right: 5%;
bottom: 4%;
position: fixed;
width: 100%;
max-width: 90%;
z-index: 9999999;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
display: none;
}
.eut-privacy-wrapper {
padding: 30px;
position: relative;
font-size: 12px;
line-height: 16px;
overflow: hidden;
}
.eut-privacy-content {
padding-right: 300px;
}
.eut-privacy-buttons-wrapper {
position: absolute;
z-index: 3;
top: 50%;
right: 30px;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
.eut-privacy-btn {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
border-width: 0;
-webkit-box-shadow: none;
box-shadow: none;
line-height: 20px;
padding: 10px 27px 10px 27px;
text-shadow: none;
text-transform: none;
cursor: pointer;
background-color: #2bc137;
color: #ffffff;
outline: 0;
letter-spacing: 0 !important;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-privacy-btn + .eut-privacy-btn {
margin-left: 24px;
}
.eut-privacy-preferences {
background-color: transparent;
color: #ffffff;
padding-left: 0px;
padding-right: 0px;
}
.eut-privacy-preferences:hover {
opacity: 0.6;
color: inherit;
}
.eut-privacy-agreement:hover,
.eut-privacy-refresh-btn:hover {
background-color: #17a523;
} #eut-privacy-bar.eut-bar-position-left {
left: 15px;
right: auto;
bottom: 15px;
width: 30%;
}
#eut-privacy-bar.eut-bar-position-right {
left: auto;
right: 15px;
bottom: 15px;
width: 30%;
}
#eut-privacy-bar.eut-bar-position-left .eut-privacy-content,
#eut-privacy-bar.eut-bar-position-right .eut-privacy-content {
padding: 0;
margin-bottom: 24px;
}
#eut-privacy-bar.eut-bar-position-left .eut-privacy-buttons-wrapper,
#eut-privacy-bar.eut-bar-position-right .eut-privacy-buttons-wrapper {
position: relative;
top: 0;
right: 0;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
}
#eut-privacy-bar.eut-bar-position-left .eut-privacy-agreement,
#eut-privacy-bar.eut-bar-position-right .eut-privacy-agreement {
float: right;
}
#eut-privacy-bar.eut-bar-position-left .eut-privacy-refresh-btn,
#eut-privacy-bar.eut-bar-position-right .eut-privacy-refresh-btn {
width: 100%;
}
@media only screen and (max-width: 1023px) {
#eut-privacy-bar.eut-bar-position-left,
#eut-privacy-bar.eut-bar-position-right {
width: 50%;
}
}
@media only screen and (max-width: 767px) {
#eut-privacy-bar.eut-bar-position-left,
#eut-privacy-bar.eut-bar-position-right {
left: 5%;
right: 5%;
bottom: 15px;
width: 100%;
}
.eut-privacy-content {
padding: 0;
margin-bottom: 24px;
}
.eut-privacy-buttons-wrapper {
position: relative;
top: 0;
right: 0;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
}
.eut-privacy-agreement {
float: right;
}
.eut-privacy-refresh-btn {
width: 100%;
}
} .eut-privacy-fallback-content {
padding: 25% 12%;
color: #ffffff;
background-color: #252525;
background-size: 13px;
background-image: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/privacy/fallback-pattern.jpg);
}
#eut-feature-section .eut-privacy-fallback-content,
.eut-map .eut-privacy-fallback-content {
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-top: 0;
padding-bottom: 0;
}
#eut-feature-section .eut-map .eut-privacy-fallback-content {
height: 100vh;
}
#eut-feature-section .eut-privacy-fallback-inner,
.eut-map .eut-privacy-fallback-inner {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
}
.eut-privacy-fallback-content a {
color: inherit;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-privacy-fallback-content a:hover {
opacity: 0.6;
color: inherit;
}
.eut-privacy-fallback-icon {
display: block;
margin: 0 auto 12px auto;
width: 36px;
} #eut-privacy-overlay {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: #000000;
opacity: 0.9;
z-index: 99999999;
display: none;
}
#eut-privacy-popup {
position: fixed;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
max-height: 700px;
max-width: 800px;
-webkit-transform: translate(-50%, -50%);
-moz-transform:    translate(-50%, -50%);
-ms-transform:     translate(-50%, -50%);
-o-transform:      translate(-50%, -50%);
transform:         translate(-50%, -50%);
z-index: 999999999;
padding: 36px;
display: none;
}
.eut-privacy-popup-wrapper {
width: 100%;
height: 100%;
color: #000000;
background-color: #ffffff;
font-size: 14px;
line-height: 24px;
font-weight: normal;
position: relative;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
}
.eut-privacy-popup-inner {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 76px;
}
.eut-privacy-popup-content {
max-height: 100%;
padding: 48px 36px 36px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.eut-close-privacy-popup {
width: 36px;
height: 36px;
line-height: 36px;
font-size: 16px;
text-align: center;
cursor: pointer;
position: absolute;
top: 0;
right: 0px;
color: #ffffff;
}
.eut-close-privacy-popup:before {
content: "\e912";
font-family: 'crocal-icons';
}
.eut-privacy-refresh-btn-wrapper {
position: absolute;
width: 100%;
left: 0;
bottom: 0;
padding: 18px 36px;
background-color: #f7f7f7;
} .eut-privacy-switch {
border-bottom: 1px solid #eaeaea;
margin-bottom: 18px;
padding-bottom: 18px;
position: relative;
}
.eut-privacy-switch .eut-switch {
position: absolute;
display: inline-block;
font-size: 16px;
width: 3.000em;
height: 1.625em;
top: 2px;
right: 0;
}
.eut-privacy-switch .eut-switch.eut-switch-text {
width: auto;
}
.eut-privacy-switch .eut-switch input[type='checkbox'] {
font-size: inherit;
position: relative;
z-index: 2;
opacity: 0;
cursor: pointer;
width: 3.000em;
height: 1.625em;
margin: 0;
}
.eut-privacy-switch .eut-switch-value {
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.eut-privacy-switch .eut-switch-label {
display: inline-block;
vertical-align: middle;
line-height: 24px;
max-width: 70%;
font-weight: bold;
}
.eut-privacy-switch .eut-switch .eut-switch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #cccccc;
-webkit-transition: .4s;
transition: .4s;
-webkit-border-radius: 1.625em;
border-radius: 1.625em;
width: 3.000em;
}
.eut-privacy-switch .eut-switch .eut-switch-slider:before {
position: absolute;
content: "";
height: 1.125em;
width: 1.125em;
left: 0.250em;
bottom: 0.250em;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.eut-privacy-switch .eut-switch input[type='checkbox']:checked + .eut-switch-slider {
background-color: #2bc137;
}
.eut-privacy-switch .eut-switch input[type='checkbox']:checked + .eut-switch-slider:before {
-webkit-transform: translateX(1.375em);
-ms-transform: translateX(1.375em);
transform: translateX(1.375em);
} @media print { @page {
margin: 3.5cm;
}
img {
max-height: 200px !important;
width: auto !important;
}
.eut-body {
background-color: #ffffff !important;
} body,
.eut-quote-text,
blockquote p,
.single-post #eut-single-content {
font-size: 12pt !important;
font-family: Georgia, "Times New Roman", Times, serif !important;
line-height: 1.3 !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.eut-title,
.eut-description,
.eut-subheading,
.eut-link-text {
font-family: Georgia, "Times New Roman", Times, serif !important;
}
p a:link:after,
p a:visited:after {
content:" [" attr(href) "] ";
}
.eut-element {
margin-bottom: 40px !important;
}
.vc_empty_space {
display: none;
}
.eut-animated-item {
opacity: 1;
}
.eut-background-wrapper {
display: none;
}
#eut-footer,
#eut-sidebar,
.eut-single-post-tags,
#eut-about-author,
#eut-comment-form,
.eut-navigation-bar,
.eut-back-top {
display: none;
}
#eut-header,
.eut-hidden-area,
.eut-modal,
.eut-mask-wrapper {
display: none !important;
}
.eut-page-title,
.eut-page-title .eut-wrapper {
height: 200px !important;
min-height: 200px !important;
background-color: #ffffff;
position: static;
display: block;
}
.eut-page-title .eut-title-content-wrapper {
background-color: #ffffff !important;
max-width: 100% !important;
text-align: left;
}
.eut-page-title .eut-subheading,
.eut-page-title .eut-title,
.eut-page-title .eut-title-meta-content {
color: #000000 !important;
}
#eut-content.eut-right-sidebar #eut-main-content,
#eut-content.eut-left-sidebar #eut-main-content {
width: 100%;
float: none;
}
#eut-header.eut-fullwidth #eut-main-header:not(.eut-side-default) .eut-container {
padding: 0;
}
} @font-face {
font-family: 'lg';
src: url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/lightgallery/lg.eot?n1z373);
src: url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/lightgallery/lg.eot?#iefixn1z373) format("embedded-opentype"),
url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/lightgallery/lg.woff?n1z373) format("woff"),
url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/lightgallery/lg.ttf?n1z373) format("truetype"),
url(//zielgaattevoet.nl/wp-content/themes/crocal/fonts/lightgallery/lg.svg?n1z373#lg) format("svg");
font-weight: normal;
font-style: normal;
}
.lg-icon {
font-family: 'lg';
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;
}
.lg-actions .lg-next, .lg-actions .lg-prev {
background-color: rgba(0, 0, 0, 0.45);
border-radius: 2px;
color: #999;
cursor: pointer;
display: block;
font-size: 22px;
margin-top: -10px;
padding: 8px 10px 9px;
position: absolute;
top: 50%;
z-index: 1080;
border: none;
outline: none;
}
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
pointer-events: none;
opacity: 0.5;
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
color: #FFF;
}
.lg-actions .lg-next {
right: 20px;
}
.lg-actions .lg-next:before {
content: "\e095";
}
.lg-actions .lg-prev {
left: 20px;
}
.lg-actions .lg-prev:after {
content: "\e094";
}
@-webkit-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-moz-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-ms-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-webkit-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@-moz-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@-ms-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
.lg-outer.lg-right-end .lg-object {
-webkit-animation: lg-right-end 0.3s;
-o-animation: lg-right-end 0.3s;
animation: lg-right-end 0.3s;
position: relative;
}
.lg-outer.lg-left-end .lg-object {
-webkit-animation: lg-left-end 0.3s;
-o-animation: lg-left-end 0.3s;
animation: lg-left-end 0.3s;
position: relative;
}
.lg-toolbar {
z-index: 1082;
left: 0;
position: absolute;
top: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
color: #999;
cursor: pointer;
float: right;
font-size: 24px;
height: 47px;
line-height: 27px;
padding: 10px 0;
text-align: center;
width: 50px;
text-decoration: none !important;
outline: medium none;
-webkit-transition: color 0.2s linear;
-o-transition: color 0.2s linear;
transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
color: #FFF;
}
.lg-toolbar .lg-close:after {
content: "\e070";
}
.lg-toolbar .lg-download:after {
content: "\e0f2";
}
.lg-sub-html {
background-color: rgba(0, 0, 0, 0.45);
bottom: 0;
color: #EEE;
font-size: 16px;
left: 0;
padding: 10px 40px;
position: fixed;
right: 0;
text-align: center;
z-index: 1080;
}
.lg-sub-html h4 {
margin: 0;
font-size: 13px;
font-weight: bold;
}
.lg-sub-html p {
font-size: 12px;
margin: 5px 0 0;
}
.lg-sub-html .eut-title {
display: block;
margin: 0;
font-size: 13px;
font-weight: bold;
}
.lg-sub-html .eut-caption {
font-size: 12px;
margin: 5px 0 0;
}
#lg-counter {
color: #999;
display: inline-block;
font-size: 16px;
padding-left: 20px;
padding-top: 12px;
vertical-align: middle;
}
.lg-toolbar, .lg-prev, .lg-next {
opacity: 1;
-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
-moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
-o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}
.lg-hide-items .lg-prev {
opacity: 0;
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
opacity: 0;
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
opacity: 0;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
-webkit-transform: scale3d(0.5, 0.5, 0.5);
transform: scale3d(0.5, 0.5, 0.5);
opacity: 0;
-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
-moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
.lg-outer .lg-thumb-outer {
background-color: #0D0A0A;
bottom: 0;
position: absolute;
width: 100%;
z-index: 1080;
max-height: 350px;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
-webkit-transform: translate3d(0, 0%, 0);
transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
padding: 10px 0;
height: 100%;
margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
border-radius: 5px;
cursor: pointer;
float: left;
overflow: hidden;
height: 100%;
border: 2px solid #FFF;
border-radius: 4px;
margin-bottom: 5px;
}
@media (min-width: 1025px) {
.lg-outer .lg-thumb-item {
-webkit-transition: border-color 0.25s ease;
-o-transition: border-color 0.25s ease;
transition: border-color 0.25s ease;
}
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
-webkit-transition: bottom 0.25s ease;
-o-transition: bottom 0.25s ease;
transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
background-color: #0D0A0A;
border-radius: 2px 2px 0 0;
color: #999;
cursor: pointer;
font-size: 24px;
height: 39px;
line-height: 27px;
padding: 5px 0;
position: absolute;
right: 20px;
text-align: center;
top: -39px;
width: 50px;
}
.lg-outer .lg-toogle-thumb:after {
content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
color: #FFF;
}
.lg-outer .lg-video-cont {
display: inline-block;
vertical-align: middle;
max-width: 1140px;
max-height: 100%;
width: 100%;
padding: 0 5px;
}
.lg-outer .lg-video {
width: 100%;
height: 0;
padding-bottom: 56.25%;
overflow: hidden;
position: relative;
}
.lg-outer .lg-video .lg-object {
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
width: 84px;
height: 59px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -42px;
margin-top: -30px;
z-index: 1080;
cursor: pointer;
}
.lg-outer .lg-has-iframe .lg-video {
-webkit-overflow-scrolling: touch;
overflow: auto;
}
.lg-outer .lg-has-vimeo .lg-video-play {
background: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/lightgallery/vimeo-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
background: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/lightgallery/vimeo-play.png) no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
background: transparent url(//zielgaattevoet.nl/wp-content/themes/crocal/images/lightgallery/video-play.png) no-repeat scroll 0 0;
height: 64px;
margin-left: -32px;
margin-top: -32px;
width: 64px;
opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
background: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/lightgallery/youtube-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
background: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/lightgallery/youtube-play.png) no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
width: 100% !important;
height: 100% !important;
position: absolute;
top: 0;
left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
visibility: visible;
}
.lg-progress-bar {
background-color: #333;
height: 5px;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1083;
opacity: 0;
-webkit-transition: opacity 0.08s ease 0s;
-moz-transition: opacity 0.08s ease 0s;
-o-transition: opacity 0.08s ease 0s;
transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
background-color: #a90707;
height: 5px;
width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
opacity: 1;
}
.lg-autoplay-button:after {
content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
content: "\e01a";
}
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
-webkit-transition-duration: 0s;
transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
-moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
-o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}
#lg-zoom-in:after {
content: "\e311";
}
#lg-actual-size {
font-size: 20px;
}
#lg-actual-size:after {
content: "\e033";
}
#lg-zoom-out {
opacity: 0.5;
pointer-events: none;
}
#lg-zoom-out:after {
content: "\e312";
}
.lg-zoomed #lg-zoom-out {
opacity: 1;
pointer-events: auto;
}
.lg-outer .lg-pager-outer {
bottom: 60px;
left: 0;
position: absolute;
right: 0;
text-align: center;
z-index: 1080;
height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
overflow: visible;
}
.lg-outer .lg-pager-cont {
cursor: pointer;
display: inline-block;
overflow: hidden;
position: relative;
vertical-align: top;
margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
background-color: #fff;
color: #FFF;
bottom: 100%;
height: 83px;
left: 0;
margin-bottom: 20px;
margin-left: -60px;
opacity: 0;
padding: 5px;
position: absolute;
width: 120px;
border-radius: 3px;
-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
-moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
-o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
width: 100%;
height: 100%;
}
.lg-outer .lg-pager {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
display: block;
height: 12px;
-webkit-transition: box-shadow 0.3s ease 0s;
-o-transition: box-shadow 0.3s ease 0s;
transition: box-shadow 0.3s ease 0s;
width: 12px;
}
.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px dashed;
bottom: -10px;
display: inline-block;
height: 0;
left: 50%;
margin-left: -5px;
position: absolute;
vertical-align: middle;
width: 0;
}
.lg-fullscreen:after {
content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
content: "\e20d";
}
.lg-outer #lg-dropdown-overlay {
background-color: rgba(0, 0, 0, 0.25);
bottom: 0;
cursor: default;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1081;
opacity: 0;
visibility: hidden;
-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
-o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
-webkit-transition-delay: 0s;
transition-delay: 0s;
-moz-transform: translate3d(0, 0px, 0);
-o-transform: translate3d(0, 0px, 0);
-ms-transform: translate3d(0, 0px, 0);
-webkit-transform: translate3d(0, 0px, 0);
transform: translate3d(0, 0px, 0);
opacity: 1;
visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
color: #FFF;
}
.lg-outer .lg-dropdown {
background-color: #fff;
border-radius: 2px;
font-size: 14px;
list-style-type: none;
margin: 0;
padding: 10px 0;
position: absolute;
right: 0;
text-align: left;
top: 50px;
opacity: 0;
visibility: hidden;
-moz-transform: translate3d(0, 5px, 0);
-o-transform: translate3d(0, 5px, 0);
-ms-transform: translate3d(0, 5px, 0);
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
-webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
-moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
-o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
content: "";
display: block;
height: 0;
width: 0;
position: absolute;
border: 8px solid transparent;
border-bottom-color: #FFF;
right: 16px;
top: -16px;
}
.lg-outer .lg-dropdown > li:last-child {
margin-bottom: 0px;
}
.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
color: #333;
}
.lg-outer .lg-dropdown a {
color: #333;
display: block;
white-space: pre;
padding: 4px 12px;
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
display: inline-block;
line-height: 1;
margin-top: -3px;
vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
color: #333;
display: inline-block;
float: none;
font-size: 20px;
height: auto;
line-height: 1;
margin-right: 8px;
padding: 0;
vertical-align: middle;
width: auto;
}
.lg-outer #lg-share {
position: relative;
}
.lg-outer #lg-share:after {
content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
content: "\e901";
}
.lg-outer #lg-share-twitter .lg-icon {
color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
content: "\e904";
}
.lg-outer #lg-share-googleplus .lg-icon {
color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
content: "\e902";
}
.lg-outer #lg-share-pinterest .lg-icon {
color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
content: "\e903";
}
.lg-group:after {
content: "";
display: table;
clear: both;
}
.lg-outer {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99999;
text-align: left;
opacity: 0;
-webkit-transition: opacity 0.15s ease 0s;
-o-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-outer * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.lg-outer.lg-visible {
opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
-webkit-transition-duration: inherit !important;
transition-duration: inherit !important;
-webkit-transition-timing-function: inherit !important;
transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.lg-outer .lg {
height: 100%;
width: 100%;
position: relative;
overflow: hidden;
margin-left: auto;
margin-right: auto;
max-width: 100%;
max-height: 100%;
}
.lg-outer .lg-inner {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
}
.lg-outer .lg-item {
background: url(//zielgaattevoet.nl/wp-content/themes/crocal/images/lightgallery/loading.gif) no-repeat scroll center center transparent;
display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
display: inline-block !important;
}
.lg-outer .lg-item, .lg-outer .lg-img-wrap {
display: inline-block;
text-align: center;
position: absolute;
width: 100%;
height: 100%;
}
.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
content: "";
display: inline-block;
height: 50%;
width: 1px;
margin-right: -1px;
}
.lg-outer .lg-img-wrap {
position: absolute;
padding: 0 5px;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.lg-outer .lg-item.lg-complete {
background-image: none;
}
.lg-outer .lg-item.lg-current {
z-index: 1060;
}
.lg-outer .lg-image {
display: inline-block;
vertical-align: middle;
max-width: 100%;
max-height: 100%;
width: auto !important;
height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
opacity: 0;
-webkit-transition: opacity 0.15s ease 0s;
-o-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
opacity: 1;
}
.lg-outer .lg-empty-html {
display: none;
}
.lg-outer.lg-hide-download #lg-download {
display: none;
}
.lg-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;
background-color: #000;
opacity: 0;
-webkit-transition: opacity 0.15s ease 0s;
-o-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
opacity: 1;
}
.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
-webkit-transition: none 0s ease 0s !important;
-moz-transition: none 0s ease 0s !important;
-o-transition: none 0s ease 0s !important;
transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
-webkit-transition: opacity 0.1s ease 0s;
-moz-transition: opacity 0.1s ease 0s;
-o-transition: opacity 0.1s ease 0s;
transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
opacity: 0;
position: absolute;
left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
left: 0;
opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}.eut-element {
position: relative;
z-index: 1;
}
#eut-theme-wrapper .wpb_content_element {
margin-bottom: 0;
} .eut-bottom-line {
display: block;
border-bottom-width: 1px;
border-bottom-style: solid;
margin-bottom: 30px;
} .eut-title > span,
.eut-title.eut-clipping-animation .eut-clipping-wrapper,
.eut-title.eut-appear-animation .eut-appear-wrapper {
display: inline-block;
position: relative;
vertical-align: top;
} .eut-title-bottom-line {
display: block;
clear: both;
margin-top: 18px;
}
.eut-align-center .eut-title-bottom-line,
.eut-align-center.eut-title-bottom-line {
margin-left: auto;
margin-right: auto;
}
.eut-align-left .eut-title-bottom-line,
.eut-align-left.eut-title-bottom-line {
margin-right: auto;
}
.eut-align-right .eut-title-bottom-line,
.eut-align-right.eut-title-bottom-line {
margin-left: auto;
} @media only screen and (min-width: 960px) and (max-width: 1200px) {
.eut-column.eut-tablet-align-left .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-tablet-align-left .eut-align-inherit .eut-title-bottom-line {
margin-left: 0;
margin-right: auto;
}
.eut-column.eut-tablet-align-right .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-tablet-align-right .eut-align-inherit .eut-title-bottom-line {
margin-left: auto;
margin-right: 0;
}
.eut-column.eut-tablet-align-center .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-tablet-align-center .eut-align-inherit .eut-title-bottom-line {
margin-left: auto;
margin-right: auto;
}
} @media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-column.eut-tablet-sm-align-left .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-tablet-sm-align-left .eut-align-inherit .eut-title-bottom-line {
margin-left: 0;
margin-right: auto;
}
.eut-column.eut-tablet-sm-align-right .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-tablet-sm-align-right .eut-align-inherit .eut-title-bottom-line {
margin-left: auto;
margin-right: 0;
}
.eut-column.eut-tablet-sm-align-center .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-tablet-sm-align-center .eut-align-inherit .eut-title-bottom-line {
margin-left: auto;
margin-right: auto;
}
} @media only screen and (max-width: 767px) {
.eut-column.eut-mobile-align-left .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-mobile-align-left .eut-align-inherit .eut-title-bottom-line {
margin-left: 0;
margin-right: auto;
}
.eut-column.eut-mobile-align-right .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-mobile-align-right .eut-align-inherit .eut-title-bottom-line {
margin-left: auto;
margin-right: 0;
}
.eut-column.eut-mobile-align-center .eut-align-inherit .eut-title-bottom-line,
.eut-column-inner.eut-mobile-align-center .eut-align-inherit .eut-title-bottom-line {
margin-left: auto;
margin-right: auto;
}
} .eut-title-left-line {
position: absolute;
top: 50%;
right: 100%;
margin-right: 18px;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
} .eut-title-right-line {
position: absolute;
top: 50%;
left: 100%;
margin-left: 18px;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
.eut-title.eut-title-gradient > span {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
display: inline-block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.eut-title-gradient > span {
background: transparent !important;
}
} .eut-typed-text .eut-animated-text {
height: 1em;
display: inline-block;
vertical-align: top;
} .eut-box .eut-media {
position: relative;
}
.eut-box.eut-has-link .eut-media {
-webkit-transition: all 0.3s cubic-bezier(.21, .6, .35, 1);
-moz-transition:    all 0.3s cubic-bezier(.21, .6, .35, 1);
-o-transition:      all 0.3s cubic-bezier(.21, .6, .35, 1);
transition:         all 0.3s cubic-bezier(.21, .6, .35, 1);
}
.eut-box.eut-has-link:hover .eut-media {
-webkit-transform: translateY(-10px);
-moz-transform:    translateY(-10px);
-ms-transform:     translateY(-10px);
-o-transform:      translateY(-10px);
transform:         translateY(-10px);
}
#eut-theme-wrapper .eut-box.eut-has-link:hover .eut-media.eut-with-shadow {
-webkit-box-shadow: 0 60px 90px -30px rgba(0,0,0,.40);
-moz-box-shadow: 0 60px 90px -30px rgba(0,0,0,.40);
box-shadow: 0 60px 90px -30px rgba(0,0,0,.40);
}
.eut-box .eut-media .eut-box-media-title {
position: absolute;
bottom: -0.200em;
left: -0.100em;
margin-bottom: 0;
line-height: 1.000em;
z-index: 3;
color: #ffffff;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-box:hover .eut-media .eut-box-media-title {
left: -150%;
}
.eut-box .eut-box-content {
margin-top: 30px;
}
.eut-box .eut-box-content .eut-read-more {
display: inline-block;
}
.eut-box .eut-box-content p {
margin-bottom: 0px;
}
.eut-box .eut-box-content .eut-box-title {
line-height: 1.400em;
margin-bottom: 16px;
}
.eut-box .eut-box-content p + .eut-read-more {
margin-top: 30px;
} .eut-media-box-icon {
position: absolute;
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
top: -15px;
right: -15px;
background-color: #333;
z-index: 10;
text-align: center;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.eut-media-box-icon i {
font-size: 26px;
line-height: inherit;
width: inherit;
height: inherit;
} .eut-message {
padding: 25px;
position: relative;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
border: 1px solid rgba(0,0,0,0.1);
}
.eut-message .eut-message-icon {
float: left;
font-size: 2.250em;
line-height: 1.200em;
margin-right: 25px;
}
.eut-message .eut-message-icon.eut-small {
font-size: 20px;
line-height: 24px;
}
.eut-message p {
margin-bottom: 0;
font-size: 0.9em;
line-height: 24px;
overflow: hidden;
}
.eut-message .eut-close {
position: absolute;
z-index: 5;
top: 0;
right: 0;
width: 30px;
height: 30px;
line-height: inherit;
text-align: right;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.eut-message .eut-close:after,
.eut-message .eut-close:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: rotate(45deg);
-moz-transform:    rotate(45deg);
-ms-transform:     rotate(45deg);
-o-transform:      rotate(45deg);
transform:         rotate(45deg);
background-color: #ffffff;
}
.eut-message .eut-close:after {
width: 10px;
height: 2px;
margin-left: -5px;
margin-top: -1px;
}
.eut-message .eut-close:before {
width: 2px;
height: 10px;
margin-left: -1px;
margin-top: -5px;
}
@media only screen and (max-width: 767px) {
.eut-message .eut-message-icon {
float: none;
margin-right: 0;
margin-bottom: 30px;
display: block;
}
} .eut-empty-space {
margin-bottom: 0;
} hr {
margin-bottom: 30px;
display: block;
border: none;
border-top: 1px solid;
}
.eut-hr.eut-element,
.eut-divider {
margin-bottom: 0;
display: block;
border: none;
clear: both;
font-size: 0;
} .eut-divider .eut-line-divider {
border-top: 1px solid;
} .eut-divider .eut-dashed-line-divider {
border-top: 1px dashed;
} .eut-divider .eut-double-line-divider {
height: 5px;
border-top: 1px solid;
border-bottom: 1px solid;
} .eut-divider .eut-top-line-divider {
height: auto;
border-bottom: 1px solid;
text-align: right;
} .eut-divider .eut-custom-divider {
display: block;
clear: both;
}
.eut-divider .eut-custom-divider.eut-align-left,
.eut-align-left .eut-divider .eut-custom-divider.eut-align-inherit {
margin-left: 0;
margin-right: auto;
}
.eut-divider .eut-custom-divider.eut-align-center,
.eut-align-center .eut-divider .eut-custom-divider.eut-align-inherit {
margin-left: auto;
margin-right: auto;
}
.eut-divider .eut-custom-divider.eut-align-right,
.eut-align-right .eut-divider .eut-custom-divider.eut-align-inherit {
margin-left: auto;
margin-right: 0;
}
.eut-divider .eut-divider-backtotop {
display: inline-block;
cursor: pointer;
margin-bottom: 15px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}
.eut-divider .eut-divider-backtotop:after {
content: "\f106";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-left: 5px;
position: relative;
top: -1px;
} .eut-btn {
display: inline-block;
padding: 0.857em 1.714em;
min-width: 9.000em;
line-height: 1.4;
position: relative;
-webkit-border-radius: 0;
border-radius: 0;
z-index: 2;
vertical-align: top;
margin-top: 3px;
margin-bottom: 3px;
outline: 0;
text-align: center;
cursor: pointer;
border: 1px solid transparent;
box-sizing: border-box;
word-wrap: break-word;
-webkit-appearance: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-decoration: none;
position: relative;
overflow: hidden;
-webkit-transition : color .5s ease, background-color .5s ease, border-color .5s ease;
-moz-transition    : color .5s ease, background-color .5s ease, border-color .5s ease;
-o-transition      : color .5s ease, background-color .5s ease, border-color .5s ease;
-ms-transition     : color .5s ease, background-color .5s ease, border-color .5s ease;
transition         : color .5s ease, background-color .5s ease, border-color .5s ease;
-ms-touch-action: manipulation;
touch-action: manipulation;
}
a.eut-btn.eut-btn-line {
border: 2px solid;
background-color: transparent;
background-image: none;
}
.eut-fullwidth-btn {
width: 100%;
} a.eut-btn.eut-btn-underline {
padding: 2px 0px 0.500em 0px;
min-width: auto;
}
.eut-btn-bottom-line {
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
-webkit-transition: width 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-moz-transition:    width 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-o-transition:      width 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition:         width 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
a.eut-btn.eut-btn-underline:hover .eut-btn-bottom-line {
width: 100%;
} a.eut-btn.eut-btn-gradient {
overflow: visible !important;
color: #ffffff;
}
a.eut-btn.eut-btn-gradient:before {
content: '';
position: absolute;
top: -1px;
left: -1px;
width: 100%;
height: 100%;
padding: 1px;
z-index: 1;
-webkit-border-radius: inherit;
border-radius: inherit;
-webkit-transition : opacity .5s ease;
-moz-transition    : opacity .5s ease;
-o-transition      : opacity .5s ease;
-ms-transition     : opacity .5s ease;
transition         : opacity .5s ease;
}
a.eut-btn.eut-btn-gradient:hover:before {
opacity: 0;
}
a.eut-btn.eut-btn-gradient span {
position: relative;
z-index: 2;
color: #ffffff;
}
a.eut-btn.eut-btn-gradient:hover span {
color: inherit;
} a.eut-btn.eut-with-icon:not(.eut-btn-underline) span {
margin-right: 18px;
}
a.eut-btn.eut-with-icon:not(.eut-btn-underline):not(.eut-btn-gradient) i {
font-size: 1.3em;
position: absolute;
top: 50%;
right: 14px;
text-align: right;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
a.eut-btn.eut-with-icon.eut-btn-gradient i {
font-size: 1.3em;
position: absolute;
top: 50%;
left: 100%;
margin-left: 9px;
text-align: right;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
a.eut-btn.eut-with-icon.eut-btn-underline i {
font-size: 1.3em;
margin-left: 18px;
} .eut-btn + .eut-btn {
margin-left: 30px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn {
margin: 0;
padding: 0 1.538em;
line-height: 90px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn.eut-fluid-btn-medium {
line-height: 120px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn.eut-fluid-btn-tall {
line-height: 180px;
}
@media only screen and (max-width: 1200px) {
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn {
line-height: 50px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn.eut-fluid-btn-medium {
line-height: 80px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn.eut-fluid-btn-tall {
line-height: 100px;
}
}
@media only screen and (max-width: 767px) {
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn {
line-height: 40px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn.eut-fluid-btn-medium {
line-height: 50px;
}
#eut-theme-wrapper .eut-fullwidth-btn.eut-btn.eut-fluid-btn-tall {
line-height: 80px;
}
} .eut-fluid-button .eut-btn {
width: 100%;
margin: 0;
} .eut-btn.eut-shadow-small {
-webkit-box-shadow: 0 10px 15px -5px rgba(0,0,0,.25);
-moz-box-shadow: 0 10px 15px -5px rgba(0,0,0,.25);
box-shadow: 0 10px 15px -5px rgba(0,0,0,.25);
}
.eut-btn.eut-shadow-medium {
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
}
.eut-btn.eut-shadow-large {
-webkit-box-shadow: 0 20px 55px -10px rgba(0,0,0,.4);
-moz-box-shadow: 0 20px 55px -10px rgba(0,0,0,.4);
box-shadow: 0 20px 55px -10px rgba(0,0,0,.4);
}  .eut-contact-form.eut-form-btn-outline input[type="submit"]:not(.eut-custom-btn) {
border: 2px solid;
background-color: transparent;
background-image: none;
}
.eut-contact-form.eut-form-btn-square input[type="submit"]:not(.eut-custom-btn) {
-webkit-border-radius: 0;
border-radius: 0;
}
.eut-contact-form.eut-form-btn-round input[type="submit"]:not(.eut-custom-btn) {
-webkit-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
}
.eut-contact-form.eut-form-btn-extra-round input[type="submit"]:not(.eut-custom-btn) {
-webkit-border-radius: 50px;
border-radius: 50px;
overflow: hidden;
} .eut-contact-form.eut-form-btn-shadow-small input[type="submit"]:not(.eut-custom-btn) {
-webkit-box-shadow: 0 10px 15px -5px rgba(0,0,0,.25);
-moz-box-shadow: 0 10px 15px -5px rgba(0,0,0,.25);
box-shadow: 0 10px 15px -5px rgba(0,0,0,.25);
}
.eut-contact-form.eut-form-btn-shadow-medium input[type="submit"]:not(.eut-custom-btn) {
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
}
.eut-contact-form.eut-form-btn-shadow-large input[type="submit"]:not(.eut-custom-btn) {
-webkit-box-shadow: 0 20px 55px -10px rgba(0,0,0,.4);
-moz-box-shadow: 0 20px 55px -10px rgba(0,0,0,.4);
box-shadow: 0 20px 55px -10px rgba(0,0,0,.4);
}
.eut-contact-form input,
.eut-contact-form textarea,
.eut-contact-form select {
-webkit-transition : background-color .2s, color .2s, border-color .2s;
-moz-transition    : background-color .2s, color .2s, border-color .2s;
-o-transition      : background-color .2s, color .2s, border-color .2s;
-ms-transition     : background-color .2s, color .2s, border-color .2s;
transition         : background-color .2s, color .2s, border-color .2s;
} #eut-theme-wrapper .gform_wrapper li.gfield.gfield_error,
#eut-theme-wrapper .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
background-color: transparent;
border-top: none;
border-bottom: none;
}
#eut-theme-wrapper .ginput_container_singleproduct {
display: flex;
align-items: center;
}
#eut-theme-wrapper .ginput_container_singleproduct .ginput_quantity[type=text] {
margin-bottom: 0;
margin-left: 12px;
} .eut-slogan p {
margin-bottom: 28px;
}
.eut-slogan p:last-child {
margin-bottom: 0;
} .eut-slogan.eut-layout-1 .eut-slogan-title {
margin-bottom: 16px;
} .eut-slogan.eut-layout-2 .eut-slogan-title {
margin-bottom: -0.400em;
line-height: 1.4;
opacity: 0.08;
}
.eut-slogan.eut-layout-2 .eut-subtitle,
.eut-slogan.eut-layout-2 p,
.eut-slogan.eut-layout-2 .eut-btn-wrapper {
padding: 0 6%;
}
.eut-slogan-title.eut-title-gradient > span {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
display: inline-block;
} .eut-single-icon {
display: inline-block;
vertical-align: middle;
}
.eut-single-icon .eut-wrapper-icon {
display: inline-block;
vertical-align: top;
}
#eut-theme-wrapper .eut-single-icon .eut-wrapper-icon {
border: 1px solid transparent;
}
#eut-theme-wrapper .eut-single-icon .eut-wrapper-icon.eut-outline {
border: 1px solid;
} .eut-single-icon .eut-inner-icon {
width: 1.000em;
height: 1.000em;
line-height: 1.000em;
display: block;
position: relative;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.eut-single-icon .eut-thumbnail-wrapper {
width: 1.000em;
} .eut-single-icon.eut-with-shape .eut-inner-icon {
padding: 0.625em;
} .eut-single-icon.eut-small {
font-size: 32px;
}
.eut-side-icon .eut-single-icon.eut-small {
font-size: 24px;
} .eut-single-icon.eut-small.eut-with-shape {
font-size: 24px;
} .eut-single-icon.eut-medium {
font-size: 48px;
} .eut-single-icon.eut-medium.eut-with-shape {
font-size: 32px;
} .eut-single-icon.eut-large {
font-size: 60px;
} .eut-single-icon.eut-large.eut-with-shape {
font-size: 40px;
} .eut-single-icon.eut-extra-large {
font-size: 90px;
} .eut-single-icon.eut-extra-large.eut-with-shape {
font-size: 60px;
} #eut-theme-wrapper .eut-hover-effect .eut-wrapper-icon {
position: relative;
overflow: visible;
}
.eut-hover-effect .eut-wrapper-icon:after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-color: inherit;
top: 0;
left: 0;
z-index: -1;
-webkit-animation-duration: .6s;
-moz-animation-duration: .6s;
-o-animation-duration: .6s;
animation-duration: .6s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: icon_box_animation;
-moz-animation-name: icon_box_animation;
-o-animation-name: icon_box_animation;
animation-name: icon_box_animation;
display: none;
}
.eut-wrapper-icon.eut-circle:after {
-webkit-border-radius: 50%;
border-radius: 50%;
}
.eut-wrapper-icon.eut-round:after {
-webkit-border-radius: 3px;
border-radius: 3px;
}
.eut-hover-effect .eut-wrapper-icon.eut-outline:after {
background-color: transparent;
border: 1px solid;
border-color: inherit;
top: -1px;
left: -1px;
}
@-webkit-keyframes icon_box_animation {
0% { opacity: 1; -webkit-transform: scale(1); }
100% { opacity: 0; -webkit-transform: scale(1.4); }
}
@-moz-keyframes icon_box_animation {
0% { opacity: 1;  -moz-transform: scale(1); }
100% { opacity: 0;  -moz-transform: scale(1.4); }
}
@-o-keyframes icon_box_animation {
0% { opacity: 1; -o-transform: scale(1); }
100% { opacity: 0; -o-transform: scale(1.4); }
}
@keyframes icon_box_animation {
0% { opacity: 1; transform: scale(1); }
100% { opacity: 0; transform: scale(1.4); }
}
.eut-hover-effect .eut-wrapper-icon:hover:after,
.eut-box-icon.eut-hover-effect:hover .eut-wrapper-icon:after {
display: block;
} .eut-box-icon a,
.eut-box-icon a:hover {
display: block;
clear: both;
color: inherit;
}
.eut-box-icon.eut-advanced-hover {
visibility: hidden;
} .eut-box-icon.eut-side-icon {
display: flex;
flex-direction: row;
}
.eut-box-icon.eut-side-icon.eut-align-right {
flex-direction: row-reverse;
}
.eut-box-icon.eut-side-icon .eut-box-content {
align-self: center;
}
.eut-box-icon.eut-side-icon .eut-box-title {
margin-bottom: 0;
}
.eut-box-icon.eut-side-icon p {
margin-top: 6px;
}
.eut-box-icon.eut-side-icon.eut-align-left .eut-single-icon {
margin-right: 10px;
}
.eut-box-icon.eut-side-icon.eut-align-right .eut-single-icon {
margin-left: 10px;
} .eut-box-icon.eut-top-icon .eut-single-icon {
margin-bottom: 24px;
}
.eut-box-icon.eut-top-icon .eut-box-title-wrapper {
margin-bottom: 8px;
}
.eut-box-icon.eut-top-icon .eut-box-title-wrapper:last-child {
margin-bottom: 0;
} .eut-svg-icon svg,
.eut-svg-icon path {
stroke: inherit !important;
display: inline-block;
vertical-align: top;
} .eut-animated-effect-up-down .eut-single-icon .eut-wrapper-icon,
.eut-animated-effect-up-down .eut-single-icon .eut-video-icon {
-webkit-animation: icon_animate_up_down .6s infinite alternate ease-in-out;
-moz-animation: icon_animate_up_down .6s infinite alternate ease-in-out;
-o-animation: icon_animate_up_down .6s infinite alternate ease-in-out;
animation: icon_animate_up_down .6s infinite alternate ease-in-out;
}
@-webkit-keyframes icon_animate_up_down {
0% { -webkit-transform: translateY(-5px); }
100% { -webkit-transform: translateY(5px); }
}
@-moz-keyframes icon_animate_up_down {
0% { -moz-transform: translateY(-5px); }
100% { -moz-transform: translateY(5px); }
}
@-o-keyframes icon_animate_up_down {
0% { -o-transform: translateY(-5px); }
100% { -o-transform: translateY(5px); }
}
@keyframes icon_animate_up_down {
0% { transform: translateY(-5px); }
100% { transform: translateY(5px); }
}
.eut-animated-effect-left-right .eut-single-icon .eut-wrapper-icon,
.eut-animated-effect-left-right .eut-single-icon .eut-video-icon {
-webkit-animation: icon_animate_left_right .6s infinite alternate ease-in-out;
-moz-animation: icon_animate_left_right .6s infinite alternate ease-in-out;
-o-animation: icon_animate_left_right .6s infinite alternate ease-in-out;
animation: icon_animate_left_right .6s infinite alternate ease-in-out;
}
@-webkit-keyframes icon_animate_left_right {
0% { -webkit-transform: translateX(-5px); }
100% { -webkit-transform: translateX(5px); }
}
@-moz-keyframes icon_animate_left_right {
0% { -moz-transform: translateX(-5px); }
100% { -moz-transform: translateX(5px); }
}
@-o-keyframes icon_animate_left_right {
0% { -o-transform: translateX(-5px); }
100% { -o-transform: translateX(5px); }
}
@keyframes icon_animate_left_right {
0% { transform: translateX(-5px); }
100% { transform: translateX(5px); }
}
.eut-animated-effect-pulse .eut-single-icon .eut-wrapper-icon,
.eut-animated-effect-pulse .eut-single-icon .eut-video-icon {
-webkit-animation: icon_animate_pulse .6s infinite alternate ease-in-out;
-moz-animation: icon_animate_pulse .6s infinite alternate ease-in-out;
-o-animation: icon_animate_pulse .6s infinite alternate ease-in-out;
animation: icon_animate_pulse .6s infinite alternate ease-in-out;
}
@-webkit-keyframes icon_animate_pulse {
0% { -webkit-transform: scale(0.97); }
100% { -webkit-transform: scale(1.05); }
}
@-moz-keyframes icon_animate_pulse {
0% { -moz-transform: scale(0.97); }
100% { -moz-transform: scale(1.05); }
}
@-o-keyframes icon_animate_pulse {
0% { -o-transform: scale(0.97); }
100% { -o-transform: scale(1.05); }
}
@keyframes icon_animate_pulse {
0% { transform: scale(0.97); }
100% { transform: scale(1.05); }
} .eut-element.eut-social.eut-icon-type ul  {
margin: 0 auto -8px auto;
list-style: none;
display: inline-block;
}
.eut-element.eut-social.eut-icon-type ul li {
display: inline-block;
position: relative;
}
.eut-element.eut-social.eut-icon-type ul li + li {
margin-left: 6px;
}
.eut-element.eut-social.eut-icon-type ul li a {
display: block;
width: 2.188em;
height: 2.188em;
line-height: 2.188em;
text-align: center;
font-size: 1em;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.eut-element.eut-social.eut-icon-type ul li a i {
display: block;
line-height: inherit;
margin-top: -2px;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
}
.eut-element.eut-social.eut-icon-type ul li a:hover i {
-webkit-animation-name: pulse;
animation-name: pulse;
}
.eut-element.eut-social.eut-icon-type ul li a {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
}
.eut-element.eut-social.eut-icon-type ul li a.eut-with-shape.eut-outline {
border: 2px solid;
background-color: transparent;
}
@-webkit-keyframes pulse {
from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
50% { -webkit-transform: scale3d(1.4, 1.4, 1.4); transform: scale3d(1.4, 1.4, 1.4); }
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.4, 1.4, 1.4); transform: scale3d(1.4, 1.4, 1.4); }
to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
} .eut-element.eut-social.eut-icon-type ul li a.eut-with-shape {
width: 2.500em;
height: 2.500em;
line-height: 2.500em;
display: inline-block;
text-align: center;
} .eut-element.eut-social.eut-icon-type ul li a.eut-no-shape {
width: 1.000em;
height: 1.000em;
line-height: 1.000em;
display: inline-block;
text-align: center;
}
.eut-element.eut-social.eut-icon-type ul li a.eut-no-shape.eut-social-share-googleplus {
width: 1.300em;
} .eut-element.eut-social.eut-icon-type ul li a.eut-small  {
font-size: 20px;
} .eut-element.eut-social.eut-icon-type ul li a.eut-medium {
font-size: 36px;
} .eut-element.eut-social.eut-icon-type ul li a.eut-large {
font-size: 48px;
}
.eut-element.eut-social.eut-icon-type.eut-align-left li {
margin-left: 0;
}
.eut-element.eut-social.eut-icon-type.eut-align-right li {
margin-right: 0;
}
.eut-element.eut-social.eut-icon-type li a span.eut-like-counter {
font-size: 10px;
font-weight: bold;
line-height: 1.2;
background-color: #202020;
color: #ffffff;
min-width: 30px;
text-align: center;
padding: 6px 8px;
position: absolute;
bottom: 180%;
left: 50%;
-webkit-border-radius: 3px;
border-radius: 3px;
visibility: hidden;
opacity: 0;
-webkit-transform: translate(-50%, 0);
-moz-transform:    translate(-50%, 0);
-ms-transform:     translate(-50%, 0);
-o-transform:      translate(-50%, 0);
transform:         translate(-50%, 0);
-webkit-backface-visibility: hidden;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.eut-element.eut-social.eut-icon-type li a span.eut-like-counter:after {
content: '';
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 5px solid #202020;
position: absolute;
top: 100%;
left: 50%;
margin-left: -6px;
}
.eut-element.eut-social.eut-icon-type li a:hover span.eut-like-counter {
bottom: 120%;
visibility: visible;
opacity: 1;
} .eut-element.eut-social.eut-list-type ul {
margin: 0;
list-style: none;
}
.eut-element.eut-social.eut-list-type li a {
color: inherit;
display: inline-block;
vertical-align: middle;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-element.eut-social.eut-list-type li a:hover {
color: inherit !important;
opacity: 0.6;
}
.eut-element.eut-social.eut-list-type.eut-horizontal li {
display: inline-block;
}
.eut-element.eut-social.eut-list-type.eut-horizontal li + li {
margin-left: 12px;
} .eut-language-element {
text-align: center;
}
.eut-language-element ul {
display: block;
list-style: none;
margin: 0;
}
.eut-language-element ul li {
display: inline-block;
}
.eut-language-element ul li a {
display: block;
padding: 0px 20px;
line-height: 40px;
margin: 10px;
border: 2px solid;
-webkit-border-radius: 50px;
border-radius: 50px;
color: inherit;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
} .eut-search-element .eut-search {
max-width: 100%;
position: relative;
text-align: center;
}
.eut-search-element .eut-search input[type='text'] {
background: none;
padding: 0 20px;
border: none;
line-height: 1.2 !important;
height: auto;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
z-index: 4;
-webkit-transform: translate(-50%, -50%);
-moz-transform:    translate(-50%, -50%);
-ms-transform:     translate(-50%, -50%);
-o-transform:      translate(-50%, -50%);
transform:         translate(-50%, -50%);
}
.eut-search-element .eut-search .eut-search-input-wrapper {
position: relative;
} .eut-image-square img {
width: 100%;
height: auto;
max-width: none;
}
.eut-isotope:not(.eut-isotope-column-1) .eut-image-landscape img {
width: 100%;
height: auto;
max-width: none;
top: 50%;
-webkit-transform: translate(0, -50%);
-moz-transform:    translate(0, -50%);
-ms-transform:     translate(0, -50%);
-o-transform:      translate(0, -50%);
transform:         translate(0, -50%);
}
.eut-isotope:not(.eut-isotope-column-1) .eut-image-portrait img {
width: auto;
height: 100%;
max-width: none;
left: 50%;
-webkit-transform: translate(-50%, 0);
-moz-transform:    translate(-50%, 0);
-ms-transform:     translate(-50%, 0);
-o-transform:      translate(-50%, 0);
transform:         translate(-50%, 0);
} #eut-theme-wrapper .eut-isotope .eut-isotope-container {
visibility: hidden;
}
.eut-infinite-pagination {
display: none;
}
#eut-theme-wrapper .eut-isotope .eut-infinite-button-wrapper {
text-align: center;
margin: 54px 0 36px 0;
}
#eut-theme-wrapper .eut-isotope .eut-infinite-button {
display: inline-block;
vertical-align: bottom;
cursor: pointer;
position: relative;
font-size: 16px !important;
}
.eut-infinite-button .eut-infinite-spinner {
width: 1.875em;
height: auto;
position: absolute;
bottom: 0;
left: 100%;
margin: 0 0 0 6px;
color: inherit;
}
.eut-infinite-button .eut-infinite-spinner > div {
width: 0.188em;
height: 0.188em;
border: 0.188em solid;
border-radius: 100%;
display: inline-block;
-webkit-animation: eut_infinite_spinner_anim 1.4s infinite ease-in-out both;
animation: eut_infinite_spinner_anim 1.4s infinite ease-in-out both;
}
.eut-infinite-button .eut-infinite-spinner .eut-bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.eut-infinite-button .eut-infinite-spinner .eut-bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes eut_infinite_spinner_anim {
0%, 80%, 100% { -webkit-transform: scale(0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes eut_infinite_spinner_anim {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
} 40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}
.eut-infinite-page-load {
display: none; text-align: center;
color: #777;
margin-top: 54px;
width: 100%;
height: 1em;
}
.eut-loader-ellips {
font-size: 12px; position: relative;
width: 4em;
height: 1em;
margin: 0 auto;
}
.eut-loader-ellips-dot {
display: block;
width: 1em;
height: 1em;
border-radius: 0.5em;
background: #cacaca; position: absolute;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
.eut-loader-ellips-dot:nth-child(1),
.eut-loader-ellips-dot:nth-child(2) {
left: 0;
}
.eut-loader-ellips-dot:nth-child(3) { left: 1.5em; }
.eut-loader-ellips-dot:nth-child(4) { left: 3em; }
@keyframes reveal {
from { transform: scale(0.001); }
to { transform: scale(1); }
}
@keyframes slide {
to { transform: translateX(1.5em) }
}
.eut-loader-ellips-dot:nth-child(1) {
animation-name: reveal;
}
.eut-loader-ellips-dot:nth-child(2),
.eut-loader-ellips-dot:nth-child(3) {
animation-name: slide;
}
.eut-loader-ellips-dot:nth-child(4) {
animation-name: reveal;
animation-direction: reverse;
} .eut-isotope-item-inner.eut-fade-in,
.eut-isotope-item-inner.eut-fade-in-up,
.eut-isotope-item-inner.eut-fade-in-down,
.eut-isotope-item-inner.eut-fade-in-left,
.eut-isotope-item-inner.eut-fade-in-right,
.eut-isotope-item-inner.eut-zoom-in {
opacity: 0;
-webkit-animation-duration:.5s;
-moz-animation-duration:.5s;
-ms-animation-duration:.5s;
-o-animation-duration:.5s;
animation-duration:.5s;
}
html.ie9 .eut-isotope-item-inner.eut-fade-in,
html.ie9 .eut-isotope-item-inner.eut-fade-in-up,
html.ie9 .eut-isotope-item-inner.eut-fade-in-down,
html.ie9 .eut-isotope-item-inner.eut-fade-in-left,
html.ie9 .eut-isotope-item-inner.eut-fade-in-right,
html.ie9 .eut-isotope-item-inner.eut-zoom-in {
opacity: 1;
} .eut-filter {
margin-bottom: 60px;
}
.eut-filter ul {
margin: 0;
list-style: none;
-webkit-touch-callout: none;
-webkit-user-select  : none;
-khtml-user-select   : none;
-moz-user-select     : none;
-ms-user-select      : none;
user-select          : none;
}
.eut-filter ul li {
display: inline-block;
cursor: pointer;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-section.eut-fullwidth .eut-isotope:not(.eut-with-gap) .eut-filter {
padding-left: 40px;
padding-right: 40px;
} .eut-filter.eut-filter-style-simple ul li span {
opacity: 0.6;
-webkit-transition : opacity .3s;
-moz-transition    : opacity .3s;
-ms-transition     : opacity .3s;
-o-transition      : opacity .3s;
transition         : opacity .3s;
}
.eut-filter.eut-filter-style-simple ul li:after {
content: '';
width: 22px;
border-top: 1px solid;
display: inline-block;
vertical-align: middle;
margin: -2px 6px 0px 6px;
opacity: 0.3;
}
.eut-filter.eut-filter-style-simple ul li:last-child:after {
display: none;
}
.eut-filter.eut-filter-style-simple ul li:hover span,
.eut-filter.eut-filter-style-simple ul li.selected span {
opacity: 1;
} .eut-filter.eut-filter-style-button ul li {
line-height: 40px;
}
.eut-filter.eut-filter-style-button.eut-align-center ul li {
margin: 0px 10px;
}
.eut-filter.eut-filter-style-button.eut-align-left ul li {
margin: 0px 20px 0px 0px;
}
.eut-filter.eut-filter-style-button.eut-align-right ul li {
margin: 0px 0px 0px 20px;
}
.eut-filter.eut-filter-style-button ul li.selected {
background-color: #000000;
color: #ffffff;
padding: 0px 20px;
}
.eut-filter.eut-filter-style-button.eut-filter-shape-round ul li.selected {
-webkit-border-radius: 3px;
border-radius: 3px;
}
.eut-filter.eut-filter-style-button.eut-filter-shape-extra-round ul li.selected {
-webkit-border-radius: 50px;
border-radius: 50px;
} .eut-gallery-item > a {
position: relative;
display: block;
overflow: hidden;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-gallery-item figure .eut-title {
margin-bottom: 3px;
}
.eut-gallery-item figure .eut-caption {
margin-bottom: 0;
font-size: 14px;
} .eut-gallery-item figure.eut-hover-style-1 figcaption,
.eut-gallery-item figure.eut-hover-style-3 figcaption {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 20px;
z-index: 3;
}
.eut-gallery-item figure.eut-hover-style-1 .eut-gallery-content,
.eut-gallery-item figure.eut-hover-style-3 .eut-gallery-content {
position: absolute;
left: 20px;
bottom: 20px;
}
.eut-gallery-item figure.eut-hover-style-1 .eut-title:last-child,
.eut-gallery-item figure.eut-hover-style-3 .eut-title:last-child {
margin-bottom: 0;
} .eut-gallery-item figure.eut-hover-style-2 .eut-gallery-content {
text-align: center;
margin-top: 30px;
}
.eut-gallery-item figure.eut-hover-style-2 .eut-title {
margin-bottom: 0.3em;
-webkit-transition : color .3s;
-moz-transition    : color .3s;
-ms-transition     : color .3s;
-o-transition      : color .3s;
transition         : color .3s;
}
.eut-gallery-item figure.eut-hover-style-2 .eut-title:last-child {
margin-bottom: 0;
} .eut-gallery-item figure.eut-hover-style-1 .eut-title,
.eut-gallery-item figure.eut-hover-style-1 .eut-caption {
opacity: 0;
-webkit-transform: translateY(50px);
-moz-transform:    translateY(50px);
-ms-transform:     translateY(50px);
-o-transform:      translateY(50px);
transform:         translateY(50px);
-webkit-transition : -webkit-transform .2s, opacity .2s;
-moz-transition    : -moz-transform .2s, opacity .2s;
-ms-transition     : -ms-transform .2s, opacity .2s;
-o-transition      : -o-transform .2s, opacity .2s;
transition         : transform .2s, opacity .2s;
-webkit-transition-delay: 0;
-moz-transition-delay:    0;
-ms-transition-delay:     0;
-o-transition-delay:      0;
transition-delay:         0;
}
.eut-gallery-item figure.eut-hover-style-1.hover .eut-title,
.eut-gallery-item figure.eut-hover-style-1.hover .eut-caption {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
}
.eut-gallery-item figure.eut-hover-style-1.hover .eut-caption {
opacity: 0.7;
-webkit-transition-delay: .1s;
-moz-transition-delay:    .1s;
-ms-transition-delay:     .1s;
-o-transition-delay:      .1s;
transition-delay:         .1s;
} .eut-gallery-item figure.eut-hover-style-3 .eut-title,
.eut-gallery-item figure.eut-hover-style-3 .eut-caption {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition : -webkit-transform .2s, opacity .2s;
-moz-transition    : -moz-transform .2s, opacity .2s;
-ms-transition     : -ms-transform .2s, opacity .2s;
-o-transition      : -o-transform .2s, opacity .2s;
transition         : transform .2s, opacity .2s;
-webkit-transition-delay: 0;
-moz-transition-delay:    0;
-ms-transition-delay:     0;
-o-transition-delay:      0;
transition-delay:         0;
}
.eut-gallery-item figure.eut-hover-style-3.hover .eut-title,
.eut-gallery-item figure.eut-hover-style-3.hover .eut-caption {
opacity: 0;
-webkit-transform: translateY(50px);
-moz-transform:    translateY(50px);
-ms-transform:     translateY(50px);
-o-transform:      translateY(50px);
transform:         translateY(50px);
}
.eut-gallery-item figure.eut-hover-style-3 .eut-caption {
opacity: 0.7;
} .eut-callout.eut-btn-right {
position: relative;
display: table;
}
.eut-callout.eut-btn-right .eut-callout-wrapper {
display: table-cell;
vertical-align: middle;
width: 100%;
padding-right: 20%;
}
.eut-callout.eut-btn-right .eut-button-wrapper {
display: table-cell;
vertical-align: middle;
width: 100%;
max-width: 25%;
text-align: right;
white-space: nowrap;
}
.eut-callout.eut-btn-bottom .eut-button-wrapper {
margin: 30px 0 0 0;
}
.eut-callout .eut-callout-content {
margin-bottom: 0;
}
.eut-callout .eut-callout-content + p {
margin-top: 0.45em;
}
@media only screen and (max-width: 767px) {
.eut-callout.eut-btn-right {
display: block;
}
.eut-callout.eut-btn-right .eut-callout-wrapper {
position: relative;
display: block;
vertical-align: top;
padding-right: 0;
}
.eut-callout.eut-btn-right .eut-button-wrapper {
display: block;
vertical-align: top;
max-width: 100%;
text-align: left;
margin-top: 30px;
}
} .eut-section.eut-pointer-cursor {
cursor: pointer;
overflow: hidden;
-webkit-transition : padding .3s;
-moz-transition    : padding .3s;
-ms-transition     : padding .3s;
-o-transition      : padding .3s;
transition         : padding .3s;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-expandable-info .eut-expandable-info-space {
height: 30px;
} .eut-expandable-info.eut-align-left img {
margin-right: auto;
margin-left: 0;
}
.eut-expandable-info.eut-align-center img {
margin-right: auto;
margin-left: auto;
}
.eut-expandable-info.eut-align-right img {
margin-right: 0;
margin-left: auto;
}
.eut-expandable-info .eut-expandable-info-content {
display: none;
opacity: 0;
-webkit-transition : opacity .5s, -webkit-transform .3s;
-moz-transition    : opacity .5s, -moz-transform .3s;
-ms-transition     : opacity .5s, -ms-transform .3s;
-o-transition      : opacity .5s, -o-transform .3s;
transition         : opacity .5s, transform .3s;
-webkit-transform: translate(0, 200px);
-moz-transform:    translate(0, 200px);
-ms-transform:     translate(0, 200px);
-o-transform:      translate(0, 200px);
transform:         translate(0, 200px);
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-expandable-info .eut-expandable-info-content.show {
opacity: 1;
-webkit-transform: translate(0, 0);
-moz-transform:    translate(0, 0);
-ms-transform:     translate(0, 0);
-o-transform:      translate(0, 0);
transform:         translate(0, 0);
} ul.eut-socials {
margin: 0;
list-style: none;
}
ul.eut-socials li {
display: inline-block;
margin: 5px;
}
ul.eut-socials li a {
display: block;
width: 30px;
height: 30px;
line-height: 30px;
font-size: 18px;
text-align: center;
position: relative;
will-change: transform;
-webkit-backface-visibility: hidden;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
} ul.eut-socials li a .eut-tooltip {
font-size: 10px;
font-weight: bold;
line-height: 1.2;
background-color: #202020;
color: #ffffff;
min-width: 30px;
text-align: center;
padding: 6px 8px;
position: absolute;
bottom: 180%;
left: 50%;
-webkit-border-radius: 3px;
border-radius: 3px;
visibility: hidden;
opacity: 0;
-webkit-transform: translate(-50%, 0);
-moz-transform:    translate(-50%, 0);
-ms-transform:     translate(-50%, 0);
-o-transform:      translate(-50%, 0);
transform:         translate(-50%, 0);
-webkit-backface-visibility: hidden;
-webkit-transition: all .3s;
-moz-transition   : all .3s;
-ms-transition    : all .3s;
-o-transition     : all .3s;
transition        : all .3s;
}
ul.eut-socials li a .eut-tooltip:after {
content: '';
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 5px solid #202020;
position: absolute;
top: 100%;
left: 50%;
margin-left: -6px;
}
ul.eut-socials li a:hover .eut-tooltip {
bottom: 120%;
visibility: visible;
opacity: 1;
} .eut-team .eut-team-identity {
line-height: 1.4;
}
.eut-team .eut-team-identity + .eut-team-name {
line-height: 1.4;
margin-top: 3px;
}
.eut-team .eut-team-name {
line-height: 1.4;
margin-bottom: 0;
}
.eut-team .eut-team-url {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 4;
} .eut-team.eut-layout-1 figure {
position: relative;
margin-bottom: 30px;
}
.eut-team.eut-layout-1 figcaption {
position: absolute;
left: 0;
bottom: 30px;
width: 100%;
}
.eut-team.eut-layout-1 .eut-team-social {
list-style: none;
margin: 0;
word-spacing: -0.26em;
}
.eut-team.eut-layout-1 .eut-team-social li {
display: inline-block;
margin: 1px;
opacity: 0;
visibility: hidden;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
}
.eut-team.eut-layout-1 .hover .eut-team-social li {
opacity: 1;
visibility: visible;
z-index: 5;
position: relative;
}
.eut-team.eut-layout-1 .hover .eut-team-social li:nth-child(2) {
-webkit-transition-delay: .2s;
-moz-transition-delay:    .2s;
-ms-transition-delay:     .2s;
-o-transition-delay:      .2s;
transition-delay:         .2s;
}
.eut-team.eut-layout-1 .hover .eut-team-social li:nth-child(3) {
-webkit-transition-delay: .4s;
-moz-transition-delay:    .4s;
-ms-transition-delay:     .4s;
-o-transition-delay:      .4s;
transition-delay:         .4s;
}
.eut-team.eut-layout-1 .hover .eut-team-social li:nth-child(4) {
-webkit-transition-delay: .6s;
-moz-transition-delay:    .6s;
-ms-transition-delay:     .6s;
-o-transition-delay:      .6s;
transition-delay:         .6s;
}
.eut-team.eut-layout-1 .hover .eut-team-social li:nth-child(5) {
-webkit-transition-delay: .8s;
-moz-transition-delay:    .8s;
-ms-transition-delay:     .8s;
-o-transition-delay:      .8s;
transition-delay:         .8s;
}
.eut-team.eut-layout-1 .hover .eut-team-social li:nth-child(6) {
-webkit-transition-delay: 1s;
-moz-transition-delay:    1s;
-ms-transition-delay:     1s;
-o-transition-delay:      1s;
transition-delay:         1s;
}
.eut-team.eut-layout-1 .hover .eut-team-social li:nth-child(7) {
-webkit-transition-delay: 1.2s;
-moz-transition-delay:    1.2s;
-ms-transition-delay:     1.2s;
-o-transition-delay:      1.2s;
transition-delay:         1.2s;
}
.eut-team.eut-layout-1 .eut-team-social li a {
display: block;
width: 50px;
height: 50px;
line-height: 50px;
font-size: 16px;
position: relative;
z-index: 3;
color: #DCDCDC;
background-color: #ffffff;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
} .eut-team.eut-layout-2:before,
.eut-team.eut-layout-2:after {
display: table;
content: " ";
}
.eut-team.eut-layout-2:after {
clear: both;
}
.eut-team.eut-layout-2 .eut-team-name {
line-height: 1.4;
margin-bottom: 13px;
}
.eut-team.eut-layout-2 .eut-team-description {
width: 40%;
position: absolute;
padding: 3%;
top: 35%;
z-index: 4;
}
.eut-team.eut-layout-2 .eut-team-social {
list-style: none;
margin: 0;
word-spacing: -0.26em;
position: absolute;
top: 0;
}
.eut-team.eut-layout-2 .eut-team-social li {
margin-bottom: 10px;
}
.eut-team.eut-layout-2 .eut-team-social li a {
display: block;
width: 30px;
height: 30px;
line-height: 30px;
font-size: 12px;
position: relative;
z-index: 3;
color: inherit;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
} .eut-team.eut-layout-2 .eut-responsive-team-socials {
word-spacing: -0.26em;
position: static;
margin: 0 !important;
display: none;
}
.eut-team.eut-layout-2 .eut-responsive-team-socials li {
display: inline-block;
margin: 0px 10px 0px 0px;
}
.eut-team.eut-layout-2 .eut-responsive-team-socials li a {
display: block;
width: 30px;
height: 30px;
line-height: 30px;
font-size: 12px;
position: relative;
z-index: 3;
color: inherit;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.eut-team.eut-layout-2 figure {
position: relative;
float: none;
}
.eut-team.eut-layout-2 figure img {
width: auto;
max-width: 100%;
} .eut-team.eut-layout-2.eut-align-left figure {
position: relative;
float: right;
margin-right: 30%;
}
.eut-team.eut-layout-2.eut-align-left .eut-team-description {
right: 0;
}
.eut-team.eut-layout-2.eut-align-left .eut-team-social {
left: 70%;
margin-left: 20px;
} .eut-team.eut-layout-2.eut-align-right figure {
position: relative;
float: left;
margin-left: 30%;
}
.eut-team.eut-layout-2.eut-align-right .eut-team-description {
left: 0;
}
.eut-team.eut-layout-2.eut-align-right .eut-team-social {
right: 70%;
margin-right: 20px;
}
@media only screen and (max-width: 767px) {
.eut-team.eut-layout-2.eut-align-right figure,
.eut-team.eut-layout-2.eut-align-left figure {
float: none;
margin-right: 0;
margin-left: 0;
}
.eut-team.eut-layout-2 .eut-team-social {
display: none;
}
.eut-team.eut-layout-2 figure img {
max-width: none;
width: 100%;
display: block;
}
.eut-team.eut-layout-2 .eut-team-description {
position: static;
width: 100%;
padding: 30px;
}
.eut-team.eut-layout-2 .eut-responsive-team-socials {
display: block;
}
} .eut-dropcap.eut-element span {
float: left;
font-size: 3.889em;
padding: 0px 18px 0px 0px;
margin-bottom: 0;
}
.eut-dropcap span.eut-style-2 {
font-size: 2.222em;
line-height: 1.625em;
width: 1.600em;
height: 1.600em;
text-align: center;
margin-right: 0.375em;
padding: 0;
color: #ffffff;
} #eut-theme-wrapper .eut-pricing-table {
padding: 17%;
}
.eut-pricing-table ul {
list-style: none;
margin: 0 0 10% 0;
}
.eut-pricing-table ul li {
line-height: 30px;
position: relative;
}
.eut-pricing-table ul li:first-child {
padding-top: 0;
}
.eut-pricing-table .eut-pricing-title {
margin-bottom: 6px;
}
.eut-pricing-table .eut-pricing-header,
.eut-pricing-table .eut-price {
margin-bottom: 30px;
}
.eut-pricing-table .eut-price span,
.eut-pricing-table .eut-price .eut-interval {
display: inline-block;
vertical-align: middle;
}
.eut-pricing-table .eut-btn {
margin: 30px 0px 0px 0px;
}
.eut-pricing-table .eut-single-icon {
margin-top: 18px;
} .eut-pie-chart {
text-align: center;
}
.eut-chart-number {
position: relative;
}
.eut-chart-number canvas {
position: absolute;
top: 0;
left: 0;
}
.eut-chart-number {
font-size: 24px;
font-weight: 500;
text-align: center;
margin: 0 auto 18px auto;
}
.eut-pie-chart.eut-small .eut-chart-number {
font-size: 18px;
}
.eut-pie-chart.eut-large .eut-chart-number {
font-size: 32px;
}
.eut-chart-number:last-child {
margin-bottom: 0;
}
.eut-pie-chart .eut-counter{
float: none;
margin: 0;
}
.eut-pie-chart .eut-title {
display: block;
margin-bottom: 12px;
} .eut-progress-bars.eut-line-round .eut-bar {
-webkit-border-radius: 200px;
border-radius: 200px;
}
.eut-progress-bar {
margin-bottom: 20px;
}
.eut-bar-line {
width: 0px;
height: 35px;
} .eut-progress-bars.eut-style-1 .eut-bar {
display:block;
overflow: hidden;
z-index: 1;
background-color: rgba(0, 0, 0, 0.1);
}
.eut-progress-bars.eut-style-1 .eut-bar-title {
position: absolute;
top: 50%;
left: 0px;
line-height: 1;
color: #fff !important;
margin-left: 30px;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.eut-progress-bars.eut-style-1 .eut-percentage {
position: absolute;
top: 50%;
left: 0px;
line-height: 1;
color: #fff;
margin-left: -50px;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
} .eut-progress-bars.eut-style-2 .eut-bar {
display:block;
z-index: 1;
margin-top: 6px;
background-color: rgba(0, 0, 0, 0.1);
}
.eut-progress-bars.eut-style-2 .eut-percentage {
float: right;
}
.eut-progress-bars.eut-line-round.eut-style-2 .eut-bar-line {
-webkit-border-radius: 200px 0 0 200px;
border-radius: 200px 0 0 200px;
} .eut-counter .eut-bottom-line {
margin-top: 30px;
}
.eut-counter .eut-single-icon {
margin-bottom: 12px;
}
.eut-counter .eut-counter-item {
margin-bottom: 6px;
line-height: 1.2;
}
.eut-counter .eut-counter-title {
margin-bottom: 0;
} .eut-embed-video {
max-width: 100% !important;
height: auto !important;
} .eut-modal-dialog {
margin: 20px auto;
padding: 40px 40px;
position:relative;
}
.eut-modal-dialog.eut-content-small {
max-width: 400px;
}
.eut-modal-dialog.eut-content-medium {
max-width: 600px;
}
.eut-modal-dialog.eut-content-large {
max-width: 1170px;
}  #eut-feature-slider .eut-slider-item {
position: absolute;
}
#eut-feature-slider .eut-slider-item:first-child {
position: relative;
}
#eut-feature-slider.owl-loaded .eut-slider-item {
position: relative;
}
.eut-parallax-wrapper .eut-slider-item-wrapper.active {
position: relative;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.eut-slider-item-wrapper {
position: relative;
min-height: 1px;
float: left;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
} .eut-slider {
visibility: hidden;
}
.eut-slider-element .eut-thumbnail-wrapper {
margin: 0 auto;
} .eut-carousel-element {
visibility: hidden;
}
.eut-carousel-item-wrapper {
position: relative;
min-height: 1px;
float: left;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.eut-carousel-item {
position: relative;
z-index: 1;
-webkit-transform: translate3d(0px, 0px, 0px);
} .eut-advanced-carousel {
visibility: hidden;
}
.eut-advanced-carousel.owl-carousel .owl-stage-outer {
overflow: visible;
} .eut-map-point {
display: none;
}
.eut-marker-pulse-dot,
.eut-marker-dot {
width: 20px;
height: 20px;
left: -9px;
top: -5px;
position: relative;
}
.eut-marker-dot .eut-dot {
width: 16px;
height: 16px;
-webkit-border-radius: 100%;
border-radius: 100%;
position: absolute;
left: 2px;
top: 2px;
}
.eut-marker-pulse-dot .eut-dot {
width: 16px;
height: 16px;
-webkit-border-radius: 100%;
border-radius: 100%;
position: absolute;
left: 2px;
top: 2px;
transform-origin: 50% 50%;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
}
.eut-marker-pulse-dot .eut-first-pulse {
width: 180px;
pointer-events: none;
height: 180px;
-webkit-border-radius: 100%;
border-radius: 100%;
position: absolute;
left: -80px;
top: -80px;
opacity: 0;
-webkit-animation: pulse_marker_anim cubic-bezier(0,.55,.55,1) 2.2s;
animation: pulse_marker_anim cubic-bezier(0,.55,.55,1) 2.2s;
transform-origin: 50% 50%;
animation-fill-mode: forwards;
animation-delay: 0.9s;
animation-iteration-count: infinite;
}
.eut-marker-pulse-dot .eut-second-pulse {
width: 140px;
height: 140px;
pointer-events: none;
-webkit-border-radius: 100%;
border-radius: 100%;
position: absolute;
left: -60px;
top: -60px;
opacity: 0;
-webkit-animation: pulse_marker_anim cubic-bezier(0,.55,.55,1) 2.2s;
animation: pulse_marker_anim cubic-bezier(0,.55,.55,1) 2.2s;
transform-origin: 50% 50%;
animation-fill-mode: forwards;
animation-delay: 1.1s;
animation-iteration-count: infinite;
}
@-webkit-keyframes pulse_marker_anim {
0%{ opacity: 0; transform: scale(0.00) }
1%{ opacity: 0.6 }
15%{ opacity: 0.2 }
70%{ transform: scale(1); opacity: 0 }
}
@keyframes pulse_marker_anim {
0%{ opacity: 0; transform: scale(0.00) }
1%{ opacity: 0.6 }
15%{ opacity: 0.2 }
70%{ transform: scale(1);  opacity: 0 }
} .owl-carousel .active{
z-index: 3;
}
.owl-carousel .owl-animated-out {
z-index: 10 !important;
} .carousel-fade-out {
-webkit-animation: carousel_fadeOut .5s both;
-moz-animation: carousel_fadeOut .5s both;
animation: carousel_fadeOut .5s both;
}
.carousel-fade-in {
-webkit-animation: carousel_fadeIn .5s both;
-moz-animation: carousel_fadeIn .5s both;
animation: carousel_fadeIn .5s both;
} .carousel-backSlide-out {
-webkit-animation: carousel_backSlideOut 1s both;
-moz-animation: carousel_backSlideOut 1s both;
animation: carousel_backSlideOut 1s both;
}
.carousel-backSlide-in {
-webkit-animation: carousel_backSlideIn 1s both;
-moz-animation: carousel_backSlideIn 1s both;
animation: carousel_backSlideIn 1s both;
} .carousel-goDown-out {
-webkit-animation: carousel_scaleToFade .7s both;
-moz-animation: carousel_scaleToFade .7s both;
animation: carousel_scaleToFade .7s both;
}
.carousel-goDown-in {
-webkit-animation: carousel_goDown .6s both;
-moz-animation: carousel_goDown .6s both;
animation: carousel_goDown .6s both;
} @-webkit-keyframes empty {
0% {opacity: 1}
}
@-moz-keyframes empty {
0% {opacity: 1}
}
@keyframes empty {
0% {opacity: 1}
}
@-webkit-keyframes carousel_fadeIn {
0% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes carousel_fadeIn {
0% { opacity:0; }
100% { opacity:1; }
}
@keyframes carousel_fadeIn {
0% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes carousel_fadeOut {
0% { opacity:1; }
100% { opacity:0; }
}
@-moz-keyframes carousel_fadeOut {
0% { opacity:1; }
100% { opacity:0; }
}
@keyframes carousel_fadeOut {
0% { opacity:1; }
100% { opacity:0; }
}
@-webkit-keyframes carousel_backSlideOut {
25% { opacity: .5; -webkit-transform: translateZ(-500px); }
75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes carousel_backSlideOut {
25% { opacity: .5; -moz-transform: translateZ(-500px); }
75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes carousel_backSlideOut {
25% { opacity: .5; transform: translateZ(-500px) scale(.8); }
75% { opacity: .5; transform: translateZ(-500px) translateX(-200%) scale(.8); }
100% { opacity: .5; transform: translateZ(-500px) translateX(-200%) scale(.8); }
}
@-webkit-keyframes carousel_backSlideIn {
0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%) scale(.8); }
75% { opacity: .5; -webkit-transform: translateZ(-500px) scale(.8); }
100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0) scale(1); }
}
@-moz-keyframes carousel_backSlideIn {
0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%) scale(.8); }
75% { opacity: .5; -moz-transform: translateZ(-500px) scale(.8); }
100% { opacity: 1; -moz-transform: translateZ(0) translateX(0) scale(1); }
}
@keyframes carousel_backSlideIn {
0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%) scale(.8); }
75% { opacity: .5; transform: translateZ(-500px) scale(.8); }
100% { opacity: 1; transform: translateZ(0) translateX(0) scale(1); }
}
@-webkit-keyframes carousel_scaleToFade {
to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes carousel_scaleToFade {
to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes carousel_scaleToFade {
to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes carousel_goDown {
from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes carousel_goDown {
from { -moz-transform: translateY(-100%); }
}
@keyframes carousel_goDown {
from { transform: translateY(-100%); }
} .eut-content-slider .eut-slider-item {
position: relative;
padding-bottom: 56.25%;
}
.eut-content-slider .eut-media {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.eut-content-slider .eut-slider-content {
position: absolute;
bottom: 9%;
left: 7%;
width: 40%;
z-index: 2;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-content-slider  .eut-description {
display: block;
}
.eut-content-slider .eut-read-more {
color: inherit;
display: inline-block;
vertical-align: baseline;
margin-top: 7%;
}
.eut-content-slider .eut-read-more:hover {
opacity: 0.6;
}
.eut-content-slider .eut-slider-element .eut-carousel-pagination {
left: auto;
right: 7%;
bottom: 8%;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
.eut-content-slider .eut-bg-image {
opacity: 1;
}
@media only screen and (max-width: 767px) {
.eut-content-slider .eut-slider-item {
padding-bottom: 140%;
}
.eut-content-slider .eut-slider-content {
width: 90%;
}
.eut-content-slider .eut-slider-element .eut-carousel-pagination {
display: none;
}
} .eut-testimonial-item-wrapper {
position: relative;
min-height: 1px;
float: left;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.eut-testimonial-element {
display: inline-block;
vertical-align: top;
width: 100%;
position: relative;
z-index: 1;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.eut-testimonial-element p {
margin-bottom: 30px;
}
.eut-testimonial-element .eut-single-icon {
margin-bottom: 30px;
}
.eut-testimonial-element .eut-identity {
opacity: 0.6;
} .eut-testimonial.eut-layout-1 .eut-testimonial-thumb img {
width: 90px;
margin-bottom: 30px;
margin-right: auto;
margin-left: auto;
-webkit-border-radius: 50px;
border-radius: 50px;
}
.eut-testimonial .eut-carousel-pagination {
margin-top: 0;
}
.eut-testimonial.eut-layout-1.eut-align-left .eut-testimonial-thumb img {
margin-left: 0;
}
.eut-testimonial.eut-layout-1.eut-align-right .eut-testimonial-thumb img {
margin-right: 0;
}
.eut-testimonial.eut-layout-1 .eut-testimonial-content {
margin-bottom: 30px;
} #eut-theme-wrapper .eut-testimonial.eut-layout-3,
#eut-theme-wrapper .eut-testimonial.eut-layout-3 .eut-isotope,
#eut-theme-wrapper .eut-testimonial.eut-layout-3 .eut-isotope-container {
overflow: visible;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-element.eut-bg-white,
.eut-testimonial.eut-layout-3 .eut-testimonial-element.eut-bg-black {
padding: 12%;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-element.eut-bg-none {
margin-bottom: 30px;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-author {
display: table;
width: 100%;
position: relative;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-thumb {
display: table-cell;
width: 60px;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-thumb img {
width: 60px;
margin-bottom: 0;
display: block;
-webkit-border-radius: 50px;
border-radius: 50px;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-name {
display: table-cell;
vertical-align: middle;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-name span {
display: block;
line-height: 1.4;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-name span + span {
margin-top: 3px;
}
.eut-testimonial.eut-layout-3 .eut-testimonial-thumb + .eut-testimonial-name {
padding-left: 15px;
} .owl-height {
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
}
.owl-carousel {
width: 100%;
-webkit-tap-highlight-color: transparent; position: relative;
z-index: 1;
}
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
content: '';
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-grab {
cursor: move;
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
} #eut-feature-slider .eut-carousel-pagination,
.eut-slider-element .eut-carousel-pagination {
position: absolute;
bottom: 2%;
left: 50%;
z-index: 10;
-webkit-transform: translateX(-50%);
-moz-transform:    translateX(-50%);
-ms-transform:     translateX(-50%);
-o-transform:      translateX(-50%);
transform:         translateX(-50%);
}
.eut-carousel-pagination {
text-align: center;
margin-top: 30px;
}
.eut-carousel-pagination .owl-dot {
display: inline-block;
zoom: 1;
*display: inline; border: none;
padding: 0 !important;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
color: inherit;
background-color: transparent;
}
.eut-carousel-pagination .owl-dot span {
display: block;
width: 10px;
height: 10px;
margin: 0 8px;
opacity: 0.3;
-webkit-transform: scale(0.4);
-moz-transform:    scale(0.4);
-ms-transform:     scale(0.4);
-o-transform:      scale(0.4);
transform:         scale(0.4);
-webkit-border-radius: 50%;
border-radius: 50%;
cursor: pointer;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
border-style: solid;
border-color: inherit;
border-width: 5px;
}
.eut-carousel-pagination .owl-dot.active span,
.eut-carousel-pagination .owl-dot:hover span {
opacity: 1;
background-color: transparent !important;
border: 5px solid;
-webkit-transform: scale(1);
-moz-transform:    scale(1);
-ms-transform:     scale(1);
-o-transform:      scale(1);
transform:         scale(1);
}
.eut-light .eut-carousel-pagination,
.eut-carousel-pagination.eut-light,
.eut-dots-light {
color: #ffffff;
}
.eut-dark .eut-carousel-pagination,
.eut-default .eut-carousel-pagination,
.eut-carousel-pagination.eut-dark,
.eut-carousel-pagination.eut-default,
.eut-dots-dark {
color: #000000;
}
.owl-nav.disabled,
.eut-carousel-pagination.disabled {
display: none;
} #eut-main-content .vc_tta.vc_general .vc_tta-tab > a {
border: none;
padding: 14px 0;
margin-right: 20px;
}
#eut-main-content .vc_tta.vc_general .vc_tta-tab:last-child > a {
margin-right: 0;
}
#eut-main-content .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tabs-container,
#eut-main-content .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tabs-list {
overflow: visible;
}
#eut-main-content .vc_tta.vc_general .vc_tta-tab.vc_active > a:after {
content: '';
width: 100%;
height: 2px;
position: absolute;
left: 0;
top: 100%;
margin-top: -10px;
display: block;
}
.vc_tta-tabs-position-top .vc_tta-tabs-list {
text-align: center;
}
#eut-main-content .vc_tta.vc_tta-tabs-position-top.vc_general .vc_tta-panel-body {
padding: 14px 0;
}
#eut-main-content .vc_tta.vc_tta-tabs-position-left.vc_general .vc_tta-panel-body {
padding: 8px 14px;
} .vc_tta-panel .vc_tta-controls-icon {
opacity: 0.5;
}
.vc_tta-panel.vc_active .vc_tta-controls-icon {
opacity: 1;
}
#eut-theme-wrapper .vc_tta.vc_general .vc_tta-panel-title {
line-height: 1.5em;
}
.vc_tta.vc_general .vc_tta-panel-title {
background-color: #ffffff;
-webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
}
#eut-theme-wrapper .vc_tta.vc_general .vc_tta-panel-title > a {
padding-top: 20px;
padding-bottom: 20px;
color: #000000;
} .eut-accordion-wrapper {
list-style: none;
margin: 0;
}
.eut-accordion-wrapper > li {
position: relative;
}
.eut-accordion-wrapper > li .eut-title-wrapper {
line-height: 1.4em;
}
.eut-accordion-wrapper > li .eut-title-wrapper:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
opacity: 0.1;
border-top: 1px solid;
}
.eut-accordion-wrapper > li:last-child {
margin-bottom: 0;
}
.eut-accordion .eut-accordion-content {
display: none;
padding: 18px 0px;
line-height: 24px;
}
.eut-accordion .eut-accordion-content.active {
display: block;
}
.eut-accordion .active > .eut-accordion-content  {
display: block;
}
.eut-title-wrapper {
position: relative;
cursor: pointer;
padding: 20px 0px;
}
.eut-accordion .eut-title {
position: relative;
margin-bottom: 0;
line-height: 1.4em;
display: inline-block;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}
.eut-accordion .eut-accordion-arrow.eut-position-default + .eut-title,
.eut-accordion .eut-accordion-arrow.eut-position-left + .eut-title {
padding-left: 30px;
}
.eut-accordion .eut-accordion-arrow.eut-position-right + .eut-title {
padding-right: 30px;
}
.eut-accordion-arrow.eut-position-default,
.eut-accordion-arrow.eut-position-left {
left: 0;
}
.eut-accordion-arrow.eut-position-right {
right: 0;
}
.eut-accordion-arrow {
position: absolute;
top: 50%;
font-size: 18px;
width: 18px;
height: 18px;
margin-top: -10px;
z-index: 2;
color: inherit;
opacity: 0.3;
}
.eut-accordion .active .eut-accordion-arrow {
opacity: 1;
}
.eut-accordion-arrow i {
font-size: 1em;
line-height: 1em;
}
.eut-accordion .eut-accordion-triangle  {
-webkit-transform: rotate(0deg);
-moz-transform:    rotate(0deg);
-ms-transform:     rotate(0deg);
-o-transform:      rotate(0deg);
transform:         rotate(0deg);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.eut-accordion .active .eut-accordion-triangle  {
-webkit-transform: rotate(90deg);
-moz-transform:    rotate(90deg);
-ms-transform:     rotate(90deg);
-o-transform:      rotate(90deg);
transform:         rotate(90deg);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.eut-accordion .active .eut-accordion-plus {
-webkit-transform: rotate(45deg);
-moz-transform:    rotate(45deg);
-ms-transform:     rotate(45deg);
-o-transform:      rotate(45deg);
transform:         rotate(45deg);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.eut-accordion .active .eut-accordion-chevron {
-webkit-transform: rotate(180deg);
-moz-transform:    rotate(180deg);
-ms-transform:     rotate(180deg);
-o-transform:      rotate(180deg);
transform:         rotate(180deg);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.eut-accordion-icon {
color: inherit;
margin-right: 10px;
}
.eut-accordion-icon.eut-position-right {
margin-left: 10px;
margin-right: 0;
} .eut-tabs-title .eut-tab-title {
cursor: pointer;
position: relative;
display: inline-block;
line-height: 1.4em;
text-align: center;
transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}
.eut-tabs-title.eut-align-left .eut-tab-title {
margin-right: 20px;
}
.eut-tabs-title.eut-align-right .eut-tab-title {
margin-left: 20px;
}
.eut-tabs-title.eut-align-center .eut-tab-title {
margin-right: 10px;
margin-left: 10px;
}
.eut-tabs-title .eut-tab-title .eut-title {
position: relative;
}
.eut-tabs-title .eut-tab-icon {
margin-bottom: 18px;
}
.eut-tabs-title .eut-tab-title.active {
cursor: default;
}
.eut-horizontal-tab .eut-tabs-title .eut-tab-title.active .eut-title:after {
content: '';
width: 100%;
height: 2px;
position: absolute;
left: 0;
bottom: -5px;
display: block;
}
.eut-horizontal-tab .eut-tabs-wrapper {
margin-top: 18px;
}
.eut-tab-content {
display: none;
}
.eut-tab-content .eut-element {
margin-top: 0px;
}
.eut-element .eut-tab-content p {
margin-top: 0px;
}
.eut-tab-content.active {
display: block;
-webkit-animation-duration: .8s;
-moz-animation-duration: .8s;
-o-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: tab_animation;
-moz-animation-name: tab_animation;
-o-animation-name: tab_animation;
animation-name: tab_animation;
}
@-webkit-keyframes tab_animation {
from { opacity: 0; }
100% { opacity: 1; }
}
@keyframes tab_animation {
from { opacity: 0; }
100% { opacity: 1; }
} .eut-vertical-tab .eut-tab-title {
display: block;
text-align: inherit;
padding: 9px 18px;
}
.eut-vertical-tab .eut-tab-title:not(.active) {
opacity: 0.3;
}
.eut-vertical-tab .eut-tabs-wrapper {
overflow: hidden;
}
.eut-vertical-tab .eut-tabs-title.eut-position-left {
float: left;
}
.eut-vertical-tab .eut-tabs-title.eut-position-right {
float: right;
}
.eut-vertical-tab .eut-tab-title:before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 1px;
background-color: #000000;
opacity: 0.5;
}
.eut-vertical-tab .eut-tab-title.active:before {
opacity: 1;
} .eut-vertical-tab .eut-tabs-title.eut-width-xs{
width: 10%;
min-width: 50px;
}
.eut-vertical-tab .eut-tabs-title.eut-width-sm {
width: 20%;
min-width: 120px;
}
.eut-vertical-tab .eut-tabs-title.eut-width-md {
width: 30%;
min-width: 120px;
}
.eut-vertical-tab .eut-tabs-title.eut-width-lg {
width: 50%;
min-width: 120px;
}
.eut-vertical-tab .eut-tabs-title.eut-width-xl {
width: 70%;
min-width: 120px;
}
.eut-vertical-tab .eut-tabs-title li {
float: none;
margin-right: 0;
padding: 0;
text-align: left;
margin-bottom: 18px;
}
.eut-tabs-title .eut-tab-icon {
margin-bottom: 0;
margin-right: 10px;
display: inline-block;
vertical-align: middle;
}
.eut-tab-icon.eut-position-right {
margin-left: 10px;
margin-right: 0;
}
.eut-tabs-title .eut-title {
display: inline-block;
vertical-align: middle;
margin-bottom: 0;
line-height: 1.400em;
}
.eut-tab-section .eut-tab-title {
display: none;
position: relative;
cursor: pointer;
margin-bottom: 8px;
}
.eut-tab-section:last-child .eut-tab-title {
margin-bottom: 0;
}
.eut-tab-section .eut-tab-title .eut-title {
display: inline-block;
line-height: 1.400em;
}
.eut-tab-section .eut-tab-title .eut-tab-icon {
float: left;
margin-right: 10px;
}
@media only screen and (max-width: 767px) {
.eut-horizontal-tab .eut-tabs-wrapper {
margin-top: 0;
}
.eut-horizontal-tab .eut-tabs-title,
.eut-vertical-tab .eut-tabs-title {
display: none;
}
.eut-tab-section .eut-tab-title {
display: block;
}
.eut-tab-section + .eut-tab-section {
margin-top: 18px;
}
.eut-tab-section:last-child .eut-tab-content {
margin-bottom: 0;
}
} img.eut-full-image,
.eut-full-image img {
width: 100%;
}
.eut-align-left .eut-image-wrapper,
.eut-image.eut-align-left .eut-image-wrapper,
img.eut-align-left {
display: block;
margin-left: 0px;
margin-right: auto;
z-index: 1;
}
.eut-align-right .eut-image-wrapper,
.eut-image.eut-align-right .eut-image-wrapper,
img.eut-align-right {
display: block;
margin-left: auto;
margin-right: 0px;
z-index: 1;
}
.eut-align-center .eut-image-wrapper,
.eut-image.eut-align-center .eut-image-wrapper,
img.eut-align-center {
display: block;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
.eut-image-wrapper {
position: relative;
display: block;
vertical-align: top;
overflow: hidden;
}
.eut-image {
position: relative;
}
.eut-image a.eut-image-popup {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 6;
} .eut-media a.eut-video-popup {
display:block;
} #eut-theme-wrapper .eut-image.eut-image-expand-width img {
float: none;
width: 100%;
}
.eut-image .eut-animation-wrapper {
display: block;
}
.eut-image.eut-image-space-100 .eut-image-wrapper,
.eut-image.eut-clipping-animation .eut-image-wrapper {
width: 100%;
display: block;
}
.eut-image.eut-image-space-125:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-image-space-125.eut-clipping-animation .eut-clipping-wrapper {
width: 125%;
display: block;
}
.eut-image.eut-align-center.eut-image-space-125:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-center.eut-image-space-125.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-center .eut-image.eut-align-inherit.eut-image-space-125 .eut-image-wrapper {
margin-left: -12.5%
}
.eut-image.eut-align-right.eut-image-space-125:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-right.eut-image-space-125.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-right .eut-image.eut-align-inherit.eut-image-space-125 .eut-image-wrapper {
margin-left: -25%
}
.eut-image.eut-image-space-150:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-image-space-150.eut-clipping-animation .eut-clipping-wrapper {
width: 150%;
display: block;
}
.eut-image.eut-align-center.eut-image-space-150:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-center.eut-image-space-150.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-center .eut-image.eut-align-inherit.eut-image-space-150 .eut-image-wrapper {
margin-left: -25%
}
.eut-image.eut-align-right.eut-image-space-150:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-right.eut-image-space-150.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-right .eut-image.eut-align-inherit.eut-image-space-150 .eut-image-wrapper {
margin-left: -50%
}
.eut-image.eut-image-space-175:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-image-space-175.eut-clipping-animation .eut-clipping-wrapper {
width: 175%;
display: block;
}
.eut-image.eut-align-center.eut-image-space-175:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-center.eut-image-space-175.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-center .eut-image.eut-align-inherit.eut-image-space-175 .eut-image-wrapper {
margin-left: -37.5%
}
.eut-image.eut-align-right.eut-image-space-175:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-right.eut-image-space-175.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-right .eut-image.eut-align-inherit.eut-image-space-175 .eut-image-wrapper {
margin-left: -75%
}
.eut-image.eut-image-space-200:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-image-space-200.eut-clipping-animation .eut-clipping-wrapper {
width: 200%;
display: block;
}
.eut-image.eut-align-center.eut-image-space-200:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-center.eut-image-space-200.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-center .eut-image.eut-align-inherit.eut-image-space-200 .eut-image-wrapper {
margin-left: -50%
}
.eut-image.eut-align-right.eut-image-space-200:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-right.eut-image-space-200.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-right .eut-image.eut-align-inherit.eut-image-space-200 .eut-image-wrapper {
margin-left: -100%
}
.eut-image.eut-image-space-225:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-image-space-225.eut-clipping-animation .eut-clipping-wrapper {
width: 225%;
display: block;
}
.eut-image.eut-align-center.eut-image-space-225:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-center.eut-image-space-225.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-center .eut-image.eut-align-inherit.eut-image-space-225 .eut-image-wrapper {
margin-left: -62.5%
}
.eut-image.eut-align-right.eut-image-space-225:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-right.eut-image-space-225.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-right .eut-image.eut-align-inherit.eut-image-space-225 .eut-image-wrapper {
margin-left: -125%
}
.eut-image.eut-image-space-250:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-image-space-250.eut-clipping-animation .eut-clipping-wrapper {
width: 250%;
display: block;
}
.eut-image.eut-align-center.eut-image-space-250:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-center.eut-image-space-250.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-center .eut-image.eut-align-inherit.eut-image-space-250 .eut-image-wrapper {
margin-left: -75%
}
.eut-image.eut-align-right.eut-image-space-250:not(.eut-clipping-animation) .eut-image-wrapper,
.eut-image.eut-align-right.eut-image-space-250.eut-clipping-animation .eut-clipping-wrapper,
.eut-align-right .eut-image.eut-align-inherit.eut-image-space-250 .eut-image-wrapper {
margin-left: -150%
}
@media only screen and (max-width: 1200px) {
#eut-theme-wrapper .eut-tablet-column-1 .eut-image.eut-full-image:not(.eut-clipping-animation) .eut-image-wrapper,
#eut-theme-wrapper .eut-tablet-column-1 .eut-image.eut-full-image.eut-clipping-animation .eut-clipping-wrapper {
width: 100%;
margin-left: auto;
}
.eut-tablet-align-left .eut-image-wrapper {
display: block;
margin-left: 0px;
margin-right: auto;
z-index: 1;
}
.eut-tablet-align-right .eut-image-wrapper {
display: block;
margin-left: auto;
margin-right: 0px;
z-index: 1;
}
.eut-tablet-align-center .eut-image-wrapper {
display: block;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
}
@media only screen and (max-width: 959px) {
#eut-theme-wrapper .eut-tablet-sm-column-1 .eut-image.eut-full-image:not(.eut-clipping-animation) .eut-image-wrapper,
#eut-theme-wrapper .eut-tablet-sm-column-1 .eut-image.eut-full-image.eut-clipping-animation .eut-clipping-wrapper {
width: 100%;
margin-left: auto;
}
.eut-tablet-sm-align-left .eut-image-wrapper {
display: block;
margin-left: 0px;
margin-right: auto;
z-index: 1;
}
.eut-tablet-sm-align-right .eut-image-wrapper {
display: block;
margin-left: auto;
margin-right: 0px;
z-index: 1;
}
.eut-tablet-sm-align-center .eut-image-wrapper {
display: block;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
}
@media only screen and (max-width: 767px) {
#eut-theme-wrapper .eut-image.eut-full-image:not(.eut-clipping-animation) .eut-image-wrapper,
#eut-theme-wrapper .eut-image.eut-full-image.eut-clipping-animation .eut-clipping-wrapper {
width: 100%;
margin-left: auto;
}
.eut-mobile-align-left .eut-image-wrapper {
display: block;
margin-left: 0px;
margin-right: auto;
z-index: 1;
}
.eut-mobile-align-right .eut-image-wrapper {
display: block;
margin-left: auto;
margin-right: 0px;
z-index: 1;
}
.eut-mobile-align-center .eut-image-wrapper {
display: block;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
} .eut-image-text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.eut-image-text .eut-image,
.eut-image-text .eut-content {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%;
}
.eut-image-text .eut-content {
padding: 0 0 0 8%;
}
.eut-image-text.eut-image-right .eut-image {
-webkit-box-ordinal-group: 0;
-ms-flex-order: 1;
order: 1;
}
.eut-image-text.eut-image-right .eut-content {
-webkit-box-ordinal-group: 0;
-ms-flex-order: 0;
order: 0;
padding: 0 8% 0 0;
}
@media only screen and (max-width: 767px) {
.eut-image-text .eut-image,
.eut-image-text .eut-content {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
}
.eut-image-text.eut-image-right .eut-image {
-webkit-box-ordinal-group: 0;
-ms-flex-order: 0;
order: 0;
}
.eut-image-text.eut-image-right .eut-content {
-webkit-box-ordinal-group: 0;
-ms-flex-order: 1;
order: 1;
}
.eut-image-text .eut-content {
padding: 48px 0 0 0 !important;
}
} .eut-double-image-text {
position: relative;
}
.eut-double-image-text:before,
.eut-double-image-text:after {
display: table;
content: " ";
}
.eut-double-image-text:after {
clear: both;
}
.eut-double-image-text .eut-image img {
display: block;
}
.eut-double-image-text .eut-video-icon {
position: absolute;
top: 50%;
left: 50%;
margin-top: -30px;
margin-left: -30px;
}
.eut-double-image-text .eut-title {
line-height: 1.4;
margin-bottom: 16px;
}
.eut-double-image-text .eut-image.eut-first-image {
position: relative;
z-index: 2;
}
.eut-double-image-text .eut-image.eut-second-image {
max-width: 150%;
position: relative;
top: 60px;
}
.eut-double-image-text .eut-content {
width: 40%;
position: absolute;
top: 2%;
z-index: 3;
padding: 3%;
} .eut-double-image-text.eut-align-left .eut-image.eut-first-image {
float: right;
margin-right: 40%;
}
.eut-double-image-text.eut-align-left .eut-image.eut-second-image {
margin-left: -50%;
}
.eut-double-image-text.eut-align-left .eut-content {
right: 0;
} .eut-double-image-text.eut-align-right .eut-image.eut-first-image {
float: left;
margin-left: 40%;
}
.eut-double-image-text.eut-align-right .eut-image.eut-second-image {
margin-right: -50%;
}
.eut-double-image-text.eut-align-right .eut-content {
left: 0;
}
@media only screen and (max-width: 767px) {
.eut-double-image-text.eut-align-left .eut-image.eut-first-image,
.eut-double-image-text.eut-align-right .eut-image.eut-first-image {
float: none;
margin-right: 0;
margin-left: 0;
}
.eut-double-image-text .eut-image img {
width: 100%;
max-width: none;
}
.eut-double-image-text .eut-content {
position: static;
width: 100%;
padding: 0;
margin-top: 30px;
text-align: left;
}
.eut-double-image-text.eut-align-right .eut-image.eut-second-image,
.eut-double-image-text.eut-align-left .eut-image.eut-second-image {
position: static;
margin-right: 0;
margin-left: 0;
margin-top: 30px;
}
} .eut-fancy-box {
padding: 18% 10%;
position: relative;
overflow: visible !important;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
.eut-fancy-box {
padding: 18% 6%;
}
}
.eut-fancy-box:hover {
-webkit-transform: translateY(-6px);
-moz-transform:    translateY(-6px);
-ms-transform:     translateY(-6px);
-o-transform:      translateY(-6px);
transform:         translateY(-6px);
}
.eut-fancy-box-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0;
overflow: visible !important;
-webkit-transition : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-moz-transition    : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-ms-transition     : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-o-transition      : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
transition         : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
}
.eut-fancy-box:after {
content: '';
opacity: 0;
display: block;
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: 0;
-webkit-border-radius: inherit;
border-radius: inherit;
-webkit-transition : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-moz-transition    : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-ms-transition     : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-o-transition      : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
transition         : all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
-webkit-box-shadow: 0px 30px 90px #000000;
box-shadow: 0px 30px 90px #000000;
}
.eut-fancy-box:hover:after {
opacity: 0.25;
}
.eut-fancy-box:hover .eut-fancy-box-bg {
opacity: 1;
-webkit-transform: scale(1.01);
-moz-transform:    scale(1.01);
-ms-transform:     scale(1.01);
-o-transform:      scale(1.01);
transform:         scale(1.01);
}
.eut-fancy-box-inner {
position: relative;
z-index: 2;
}
.eut-fancy-box .eut-title {
margin-bottom: 10px;
}
.eut-fancy-box:not(.eut-fancy-box-text-black):hover .eut-title,
.eut-fancy-box:not(.eut-fancy-box-text-black):hover .eut-description,
.eut-fancy-box:not(.eut-fancy-box-text-black):hover .eut-fancy-box-read-more,
.eut-fancy-box:not(.eut-fancy-box-text-black):hover .eut-fancy-box-icon i {
color: #ffffff !important;
}
.eut-fancy-box.eut-fancy-box-text-black:hover .eut-title,
.eut-fancy-box.eut-fancy-box-text-black:hover .eut-description,
.eut-fancy-box.eut-fancy-box-text-black:hover .eut-fancy-box-read-more,
.eut-fancy-box.eut-fancy-box-text-black:hover .eut-fancy-box-icon i {
color: #000000 !important;
}
.eut-fancy-box:hover .eut-description {
opacity: 0.75;
}
.eut-fancy-box .eut-fancy-box-read-more {
margin-top: 30px;
}
.eut-fancy-box .eut-fancy-box-icon {
margin-bottom: 30px;
}
.eut-fancy-box .eut-fancy-box-icon i.eut-extra-large {
font-size: 80px;
line-height: 80px;
}
.eut-fancy-box .eut-fancy-box-icon i.eut-large {
font-size: 60px;
line-height: 60px;
}
.eut-fancy-box .eut-fancy-box-icon i.eut-medium {
font-size: 36px;
line-height: 36px;
}
.eut-fancy-box .eut-fancy-box-icon i.eut-small {
font-size: 24px;
line-height: 24px;
} .eut-blog-columns .eut-media img,
.eut-blog-small .eut-media img,
.eut-blog .eut-slider-element img {
width: 100%;
}
.eut-blog .eut-media,
.eut-blog .eut-blog-item-inner {
position: relative;
}
.eut-blog .eut-item-url {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 6;
}
.eut-blog .eut-media img {
display: block;
}
.eut-blog .eut-post-title {
margin-bottom: 18px;
}
.eut-read-more {
color: inherit;
}
.eut-read-more,
.more-link,
.eut-post-title {
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
} .eut-title-meta-content {
margin-top: 18px;
line-height: 1.636em;
}
.eut-post-meta {
margin: 0 0 18px 0;
list-style: none;
line-height: 14px;
font-size: 0;
font-weight: bold;
display: block;
}
.eut-post-meta li {
font-size: 12px;
display: inline-block;
vertical-align: middle;
position: relative;
text-transform: capitalize;
}
.eut-post-meta li + li {
margin-left: 0.643em;
}
.eut-post-meta li * {
display: inline-block;
vertical-align: middle;
}
.eut-post-meta li:after {
content: '';
width: 1px;
height: 1.167em;
display: inline-block;
border-left: 1px solid;
margin-left: 0.643em;
vertical-align: middle;
opacity: 0.2;
}
.eut-post-meta li:last-child:after {
display: none;
}  .eut-blog .eut-blog-item.eut-style-2 .eut-blog-item-inner {
position: relative;
text-align: center;
display: flex;
min-height: 500px;
}
.eut-blog .eut-blog-item.eut-style-2 .eut-media {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
}
.eut-blog .eut-blog-item.eut-style-2 .eut-post-content-wrapper {
display: flex;
align-self: center;
justify-content: center;
width: 100%;
padding: 12%;
}
.eut-blog .eut-blog-item.eut-style-2 .eut-post-content {
position: relative;
z-index: 4;
color: #ffffff;
}
.eut-blog .eut-blog-item.eut-style-2 .eut-post-title {
color: #ffffff;
line-height: 1.2;
max-width: 750px;
margin-left: auto;
margin-right: auto;
-webkit-transition : none;
-moz-transition    : none;
-ms-transition     : none;
-o-transition      : none;
transition         : none;
}
.eut-blog .eut-blog-item.eut-style-2:not(.format-quote):not(.format-link) .eut-post-title {
margin-bottom: 0;
}
.eut-blog .eut-blog-item.eut-style-2:not(.format-quote):not(.format-link) p,
.eut-blog .eut-blog-item.eut-style-2 .eut-read-more {
display: none;
} .eut-blog .eut-blog-item.format-quote a.eut-post-link,
.eut-blog .eut-blog-item.format-link a.eut-post-link {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 6;
}
.eut-post-icon {
display: block;
vertical-align: top;
width: 60px;
height: 60px;
position: relative;
margin-left: auto;
margin-right: auto;
margin-bottom: 26px;
background-color: #ffffff;
color: #000000;
-webkit-border-radius: 100px;
border-radius: 100px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-post-icon i {
font-size: 30px;
line-height: 60px;
}
.eut-post-icon .eut-animated-circle {
position: absolute;
top: -2px;
left: -2px;
}
.eut-animated-circle {
stroke-dasharray: 360;
stroke-dashoffset: -182;
}
.eut-blog .eut-blog-item.format-link .eut-post-url,
.eut-blog .eut-blog-item.format-quote .eut-quote-writer {
margin-top: 30px;
line-height: 16px;
font-size: 12px;
}
.eut-blog-columns .eut-blog-item.format-link .eut-post-url {
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
white-space: nowrap;
margin-left: auto;
margin-right: auto;
} #eut-single-quote .eut-post-content,
#eut-single-link .eut-post-content {
position: relative;
z-index: 5;
display: block;
padding: 17%;
text-align: center;
color: #ffffff;
}
#eut-single-quote, #eut-single-link {
margin-bottom: 2.5rem;
position: relative;
}
#eut-single-quote .eut-media, #eut-single-link .eut-media {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
} .eut-blog-large .eut-blog-item {
margin-bottom: 60px;
}
.eut-blog-large .eut-blog-item:last-child {
margin-bottom: 0;
}
.eut-blog-large .eut-blog-item .eut-post-content {
padding: 5% 12%;
}
.eut-blog-large .eut-blog-item .eut-media img {
margin-left: auto;
margin-right: auto;
}
@media only screen and (max-width: 767px) {
.eut-blog-large .eut-blog-item .eut-post-content {
padding: 5% 0;
}
.eut-blog-large .eut-blog-item {
margin-bottom: 90px;
}
.eut-blog-large .eut-post-content {
padding-left: 0;
}
.eut-blog-large .eut-media {
margin-bottom: 30px;
}
.eut-blog-large ul.eut-post-meta {
position: static;
top: 0;
left: 0;
width: auto;
font-size: 0.813em;
}
.eut-blog-large ul.eut-post-meta:after {
display: none;
}
.eut-blog-large ul.eut-post-meta li {
display: inline-block;
margin-right: 10px;
}
}
.eut-blog-large .eut-blog-item:last-child .eut-post-content {
padding-bottom: 0;
} .eut-blog-large .eut-blog-item.sticky .eut-post-content-wrapper {
-webkit-box-shadow: 0px 40px 80px -40px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 40px 80px -40px rgba(0,0,0,0.4);
box-shadow: 0px 40px 80px -40px rgba(0,0,0,0.4);
background-color: #f7f7f7;
}
.eut-blog-large .eut-blog-item.sticky .eut-post-content {
padding: 12%;
} .eut-blog-small .eut-blog-item {
margin-bottom: 30px;
display: block;
}
.eut-blog-small .eut-blog-item-inner {
word-spacing: -0.26em;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.eut-blog-small .eut-blog-item:not(.eut-style-2) .eut-media,
.eut-blog-small .eut-blog-item:not(.eut-style-2) .eut-post-content-wrapper {
width: 50%;
}
.eut-blog-small .eut-post-content-wrapper {
padding-left: 30px;
word-spacing: normal;
}
@media only screen and (max-width: 1023px) {
.eut-blog-small .eut-blog-item {
margin-bottom: 90px;
}
.eut-blog-small .eut-post-content,
.eut-blog-small .eut-media + .eut-post-content {
padding-left: 0;
overflow: visible;
}
.eut-blog-small .eut-media {
width: 100%;
padding-right: 0;
}
}
@media only screen and (max-width: 767px) {
.eut-blog-small .eut-blog-item-inner {
display: block;
}
.eut-blog-small .eut-blog-item:not(.eut-style-2) .eut-media,
.eut-blog-small .eut-blog-item:not(.eut-style-2) .eut-post-content-wrapper {
width: 100%;
}
.eut-blog-small .eut-post-content-wrapper {
padding-left: 0;
margin-top: 30px;
word-spacing: normal;
}
} .eut-blog-columns:not(.eut-blog-small) .eut-blog-item:not(.eut-style-2) .eut-media {
margin-bottom: 36px;
} .eut-blog-columns.eut-layout-2 .eut-blog-item-inner {
position: relative;
}
.eut-blog-columns.eut-layout-2 .eut-media {
margin-bottom: 0;
}
.eut-blog-columns.eut-layout-2 .eut-post-url {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 2;
}
.eut-blog-columns.eut-layout-2 .eut-post-url:after {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
content: ' ';
display: block;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
opacity: 1;
z-index: 1;
-webkit-border-radius: inherit;
border-radius: inherit;
background: linear-gradient(to top, rgba(0,0,0, 0.4) 0%, rgba(0,0, 0, 0.2) 25%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(to top, rgba(0,0,0, 0.4) 0%, rgba(0,0, 0, 0.2) 25%, rgba(0,0,0,0) 100%);
}
.eut-blog-columns.eut-layout-2 .eut-post-content {
position: absolute;
left: 0;
top: auto;
right: 0;
bottom: 0;
z-index: 5;
padding: 10%;
color: #ffffff;
} .eut-blog.eut-blog-masonry .eut-blog-item.eut-style-2 .eut-post-content-wrapper {
padding: 20% 10%;
}
.eut-isotope-item .eut-post-title,
.eut-isotope-item p {
word-wrap:break-word;
} .eut-blog-columns.eut-with-shadow .eut-blog-item .eut-blog-item-inner {
background-color: #ffffff;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
-moz-box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
} #eut-theme-wrapper.eut-skin-dark .eut-blog-columns.eut-with-shadow .eut-blog-item .eut-blog-item-inner {
background-color: rgba(255,255,255,0.1);
}
.eut-blog-columns.eut-with-shadow .eut-blog-item {
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
}
.eut-blog-columns.eut-with-shadow .eut-blog-item:hover .eut-blog-item-inner {
-webkit-box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
-moz-box-shadow: 0 40px 90px -30px rgba(0,0,0,.25);
box-shadow: 0 70px 100px -40px rgba(0,0,0,.2);
}
.eut-blog-columns.eut-with-shadow .eut-blog-item:not(.eut-style-2) .eut-media {
margin-bottom: 0;
}
.eut-blog-columns.eut-with-shadow .eut-blog-item:not(.eut-style-2) .eut-post-content-wrapper {
padding: 17%;
} .eut-blog-leader:before,
.eut-blog-leader:after {
display: table;
content: " ";
}
.eut-blog-leader:after {
clear: both;
}
.eut-blog-leader .eut-media img {
width: 100%;
height: auto;
max-width: none;
display: block;
}
.eut-blog-leader .eut-post-content .eut-post-header,
.eut-blog-leader .eut-post-content p,
.eut-blog-leader .eut-post-content .eut-post-meta-wrapper {
position: relative;
z-index: 5;
}
.eut-blog-leader .eut-post-leader .eut-post-title,
.eut-blog-leader .eut-post-list .eut-post-title {
line-height: 1.400em;
margin-bottom: 6px;
}
.eut-blog-leader .eut-post-list .eut-blog-item {
margin-bottom: 30px;
}
.eut-blog-leader .eut-post-list .eut-blog-item:last-child {
margin-bottom: 0;
}
.eut-blog-leader .eut-post-list .eut-post-content p {
text-overflow: ellipsis;
overflow: hidden;
max-height: 3.143em;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
}
.eut-blog-leader .eut-post-meta-wrapper {
border-bottom: none;
padding: 15px 0 0 0;
margin-top: 0;
} .eut-blog-leader.eut-layout-1 {
margin-left: -15px;
margin-right: -15px;
}
.eut-blog-leader.eut-layout-1 .eut-post-leader,
.eut-blog-leader.eut-layout-1 .eut-post-list {
float: left;
width: 50%;
padding-left: 15px;
padding-right: 15px;
}
.eut-blog-leader.eut-layout-1 .eut-post-list .eut-blog-item-inner {
display: table;
width: 100%;
height: 100%;
table-layout: fixed;
position: relative;
z-index: 5;
}
.eut-blog-leader.eut-layout-1 .eut-post-leader .eut-media {
margin-bottom: 30px;
}
.eut-blog-leader.eut-layout-1 .eut-post-list .eut-media {
display: table-cell;
width: 50%;
padding-right: 20px;
vertical-align: middle;
}
.rtl .eut-blog-leader.eut-layout-1 .eut-post-list .eut-media {
padding-right: 0;
padding-left: 20px;
}
.eut-blog-leader.eut-layout-1 .eut-post-list .eut-media + .eut-post-content {
display: table-cell;
width: 50%;
vertical-align: middle;
} .eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-media {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-content {
padding: 8%;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-media  {
margin-bottom: 0;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-blog-item {
display: table;
width: 100%;
height: 100%;
position: relative;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-blog-item-inner  {
display: table-cell;
vertical-align: middle;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader {
visibility: hidden;
} .eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader.eut-post-leader-only {
float: none;
position: relative;
width: 100%;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-content {
padding: 17%;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-date,
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-title,
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader p,
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-meta li {
color: #ffffff;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader.eut-with-primary-bg .eut-post-title:hover {
color: #ffffff !important;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader.eut-with-primary-bg .eut-post-title:after {
background-color: #ffffff !important;
}
.eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-meta li {
opacity: 0.8;
}
#eut-theme-wrapper .eut-blog-leader.eut-layout-1.eut-crocal-style .eut-post-leader .eut-post-meta-wrapper {
position: absolute;
bottom: 0;
padding: 15px;
left: 0;
width: 100%;
color: #ffffff;
} .eut-boxed #eut-theme-wrapper.eut-header-side .eut-blog-leader.eut-layout-1,
#eut-theme-wrapper .eut-right-sidebar .eut-blog-leader.eut-layout-1,
#eut-theme-wrapper .eut-left-sidebar .eut-blog-leader.eut-layout-1 {
margin-left: 0;
margin-right: 0;
}
.eut-boxed #eut-theme-wrapper.eut-header-side .eut-blog-leader.eut-layout-1 .eut-post-leader,
.eut-boxed #eut-theme-wrapper.eut-header-side .eut-blog-leader.eut-layout-1 .eut-post-list,
#eut-theme-wrapper .eut-right-sidebar .eut-blog-leader.eut-layout-1 .eut-post-leader,
#eut-theme-wrapper .eut-right-sidebar .eut-blog-leader.eut-layout-1 .eut-post-list,
#eut-theme-wrapper .eut-left-sidebar .eut-blog-leader.eut-layout-1 .eut-post-leader,
#eut-theme-wrapper .eut-left-sidebar .eut-blog-leader.eut-layout-1 .eut-post-list {
float: none;
width: 100%;
margin: 0 0 30px 0;
padding: 0;
position: relative;
}
@media only screen and (max-width: 1023px) {
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 {
margin-left: 0;
margin-right: 0;
}
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 .eut-post-leader,
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 .eut-post-list {
float: none;
width: 100%;
margin: 0 0 30px 0;
padding: 0;
position: relative;
}
}
@media only screen and (max-width: 767px) {
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 .eut-post-list .eut-post-content .eut-post-title {
margin-bottom: 0;
}
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 .eut-post-list .eut-post-content .eut-post-title:after,
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 .eut-post-list .eut-post-content p,
#eut-theme-wrapper .eut-blog-leader.eut-layout-1 .eut-post-list .eut-post-content .eut-post-meta-wrapper {
display: none;
}
} ul.eut-post-gallery {
list-style: none;
display: block;
vertical-align: top;
}
ul.eut-post-gallery li {
float: left;
}
ul.eut-post-gallery li img {
max-width: none;
width: 100%;
}
ul.eut-post-gallery li a {
display: block;
overflow: hidden;
} .eut-blog-carousel .eut-post-item {
position: relative;
}
.eut-blog-carousel .eut-post-item .eut-media img {
width: 100%;
}
.eut-carousel-style-1 .eut-blog-carousel .eut-media {
margin-bottom: 36px;
}
.eut-carousel-style-2 .eut-blog-carousel .eut-post-item {
padding-bottom: 150%;
background-color: #f0f0f0;
}
.eut-carousel-style-2 .eut-blog-carousel .eut-media {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.eut-carousel-style-2 .eut-blog-carousel .eut-bg-image {
opacity: 1;
}
.eut-carousel-style-2 .eut-blog-carousel .eut-post-title {
margin-bottom: 0;
}
.eut-carousel-style-2 .eut-blog-carousel p {
margin-top: 18px;
line-height: 1.6;
}
.eut-carousel-style-2 .eut-blog-carousel .eut-post-content {
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
padding: 12%;
z-index: 2;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
} .eut-portfolio-item.eut-bg-overview .eut-content {
position: absolute;
padding: 30px;
top: 50%;
left: 0;
z-index: 2;
width: 100%;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
.eut-portfolio-item.eut-bg-overview .eut-title,
.eut-portfolio-item.eut-bg-overview .eut-description {
opacity: 1;
-webkit-transition : all 0.3s cubic-bezier(.05,.8,.5,1);
-moz-transition    : all 0.3s cubic-bezier(.05,.8,.5,1);
-ms-transition     : all 0.3s cubic-bezier(.05,.8,.5,1);
-o-transition      : all 0.3s cubic-bezier(.05,.8,.5,1);
transition         : all 0.3s cubic-bezier(.05,.8,.5,1);
}
.eut-portfolio-item.eut-bg-overview .hover .eut-title,
.eut-portfolio-item.eut-bg-overview .hover .eut-description {
opacity: 0;
-webkit-transform: translateY(-120px);
-moz-transform:    translateY(-120px);
-ms-transform:     translateY(-120px);
-o-transform:      translateY(-120px);
transform:         translateY(-120px);
}
.eut-portfolio-item.eut-bg-overview .hover .eut-description {
-webkit-transition-delay: .1s;
-moz-transition-delay:    .1s;
-ms-transition-delay:     .1s;
-o-transition-delay:      .1s;
transition-delay:         .1s;
}
.eut-portfolio-item.eut-bg-overview .eut-media img {
opacity: 0.05 !important;
-webkit-transition : all 0.3s cubic-bezier(.05,.8,.5,1);
-moz-transition    : all 0.3s cubic-bezier(.05,.8,.5,1);
-ms-transition     : all 0.3s cubic-bezier(.05,.8,.5,1);
-o-transition      : all 0.3s cubic-bezier(.05,.8,.5,1);
transition         : all 0.3s cubic-bezier(.05,.8,.5,1);
}
.eut-portfolio-item.eut-bg-overview .eut-media.hover img {
opacity: 1 !important;
-webkit-transition-delay: .3s;
-moz-transition-delay:    .3s;
-ms-transition-delay:     .3s;
-o-transition-delay:      .3s;
transition-delay:         .3s;
} .eut-portfolio-crocal-style .eut-portfolio-item {
position: relative;
margin-bottom: 20%;
z-index: 4;
}
.eut-portfolio-crocal-style .eut-portfolio-item:last-child {
margin-bottom: 0;
}
.eut-portfolio-crocal-style .eut-portfolio-item:before,
.eut-portfolio-crocal-style .eut-portfolio-item:after {
display: table;
content: " ";
}
.eut-portfolio-crocal-style .eut-portfolio-item:after {
clear: both;
}
.eut-portfolio-crocal-style {
position: relative;
}
.eut-item-url {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
}
.eut-portfolio-crocal-style:after {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 1px;
height: 100%;
border-left: 1px dashed;
opacity: 0.4;
z-index: 3;
}
.eut-portfolio-crocal-style .eut-title {
line-height: 1.4;
margin-bottom: 16px;
}
@media only screen and (max-width: 1900px) {
.eut-portfolio-crocal-style.eut-loop-mode .eut-media img {
max-height: 650px;
}
} .eut-portfolio-crocal-style .eut-media {
position: relative;
float: right;
margin-right: 30%;
}
.eut-portfolio-crocal-style .eut-media img {
display: block;
max-width: 100%;
width: auto;
}
.eut-portfolio-crocal-style .eut-content {
position: absolute;
width: 40%;
padding: 3%;
top: 50%;
right: 0;
z-index: 5;
}
.eut-portfolio-crocal-style .eut-description {
margin-bottom: 30px;
} .eut-portfolio-crocal-style .eut-portfolio-item:nth-child(2n) .eut-media {
float: left;
margin-right: auto;
margin-left: 30%;
}
.eut-portfolio-crocal-style .eut-portfolio-item:nth-child(2n) .eut-media img {
margin: 0 auto 0 0;
}
.eut-portfolio-crocal-style .eut-portfolio-item:nth-child(2n) .eut-content {
right: auto;
left: 0;
} .eut-portfolio-crocal-style .eut-portfolio-item .eut-like-counter {
position: absolute;
top: 40%;
left: 70%;
margin-left: 30px;
opacity: 0;
-webkit-transform: translateY(200%);
-moz-transform:    translateY(200%);
-ms-transform:     translateY(200%);
-o-transform:      translateY(200%);
transform:         translateY(200%);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-portfolio-crocal-style .eut-portfolio-item:nth-child(2n) .eut-like-counter {
left: auto;
right: 70%;
margin-right: 30px;
}
.eut-portfolio-crocal-style .eut-portfolio-item.active .eut-like-counter {
opacity: 1;
-webkit-transform: translateY(-100%);
-moz-transform:    translateY(-100%);
-ms-transform:     translateY(-100%);
-o-transform:      translateY(-100%);
transform:         translateY(-100%);
}
.eut-portfolio-crocal-style .eut-portfolio-item .eut-like-counter i {
font-size: 32px;
margin-bottom: 6px;
padding: 2px;
display: inline-block;
vertical-align: middle;
opacity: 0.3;
-webkit-animation: like_counter_animation 1.5s infinite;
-moz-animation: like_counter_animation 1.5s infinite;
-o-animation: like_counter_animation 1.5s infinite;
animation: like_counter_animation 1.5s infinite;
}
.eut-portfolio-crocal-style .eut-portfolio-item .eut-like-counter span {
display: inline-block;
vertical-align: middle;
opacity: 0;
-webkit-transform: translateY(200%);
-moz-transform:    translateY(200%);
-ms-transform:     translateY(200%);
-o-transform:      translateY(200%);
transform:         translateY(200%);
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-transition-delay: 0;
-moz-transition-delay: 0;
-ms-transition-delay: 0;
-o-transition-delay: 0;
transition-delay: 0;
}
.eut-portfolio-crocal-style .eut-portfolio-item.active .eut-like-counter span {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
-ms-transition-delay: .3s;
-o-transition-delay: .3s;
transition-delay: .3s;
}
@media only screen and (max-width: 767px) {
.eut-portfolio-crocal-style .eut-media,
.eut-portfolio-crocal-style .eut-portfolio-item:nth-child(2n) .eut-media {
float: none;
width: 100%;
margin-right: 0;
margin-left: 0;
}
.eut-portfolio-crocal-style .eut-media img {
max-width: none;
width: 100%;
}
.eut-portfolio-crocal-style .eut-content {
position: static;
width: 100%;
padding: 30px;
}
} .eut-carousel-buttons div {
font-size: 24px;
cursor: pointer;
width: 60px;
height: 60px;
line-height: 60px;
display: inline-block;
vertical-align: middle;
text-align: center;
position: absolute;
top: 50%;
z-index: 10;
font-size: 24px;
overflow: hidden;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
.eut-carousel-buttons div i {
font-size: inherit;
line-height: inherit;
-webkit-transition : all .2s;
-moz-transition    : all .2s;
-ms-transition     : all .2s;
-o-transition      : all .2s;
transition         : all .2s;
}
.eut-carousel-buttons .eut-carousel-prev {
left: 0;
}
.eut-carousel-buttons .eut-carousel-next {
right: 0;
} .eut-carousel-buttons .eut-carousel-prev i {
position: absolute;
top: 50%;
left: 30px;
-webkit-transform: translate(0, -50%);
-moz-transform:    translate(0, -50%);
-ms-transform:     translate(0, -50%);
-o-transform:      translate(0, -50%);
transform:         translate(0, -50%);
}
.eut-carousel-buttons .eut-carousel-prev:hover i {
-webkit-transform: translate(-18px, -50%);
-moz-transform:    translate(-18px, -50%);
-ms-transform:     translate(-18px, -50%);
-o-transform:      translate(-18px, -50%);
transform:         translate(-18px, -50%);
}
.eut-carousel-buttons .eut-carousel-next i {
position: absolute;
top: 50%;
left: -18px;
-webkit-transform: translate(0, -50%);
-moz-transform:    translate(0, -50%);
-ms-transform:     translate(0, -50%);
-o-transform:      translate(0, -50%);
transform:         translate(0, -50%);
}
.eut-carousel-buttons .eut-carousel-next:hover i {
-webkit-transform: translate(18px, -50%);
-moz-transform:    translate(18px, -50%);
-ms-transform:     translate(18px, -50%);
-o-transform:      translate(18px, -50%);
transform:         translate(18px, -50%);
} .eut-light .eut-carousel-buttons div {
color: #ffffff;
}
.eut-default .eut-carousel-buttons div,
.eut-dark .eut-carousel-buttons div {
color: #000000;
} .eut-carousel-info-wrapper {
margin-bottom: 30px;
position: relative;
}
.eut-carousel-info .eut-title {
line-height: 1.4;
margin-bottom: 6px;
}
.eut-carousel-info .eut-title:last-child {
margin-bottom: 0;
}
.eut-section.eut-fullwidth .eut-carousel-info-wrapper {
padding: 0 15px;
}
.eut-carousel-info-wrapper:before,
.eut-carousel-info-wrapper:after {
display: table;
content: " ";
}
.eut-carousel-info-wrapper:after {
clear: both;
} .eut-section:not(.eut-fullwidth) .eut-carousel .eut-carousel-buttons .eut-carousel-prev {
left: -90px;
}
.eut-section:not(.eut-fullwidth) .eut-carousel .eut-carousel-buttons .eut-carousel-next {
right: -90px;
} .eut-carousel.eut-layout-2 .eut-carousel-buttons div {
position: static;
-webkit-transform: translateY(0);
-moz-transform:    translateY(0);
-ms-transform:     translateY(0);
-o-transform:      translateY(0);
transform:         translateY(0);
} .eut-carousel.eut-layout-2 .eut-align-left .eut-carousel-info {
float: left;
max-width: 50%;
}
.eut-carousel.eut-layout-2 .eut-align-left .eut-carousel-navigation {
float: left;
position: absolute;
top: 50%;
right: 0;
width: 140px;
} .eut-carousel.eut-layout-2 .eut-align-right .eut-carousel-info {
float: right;
}
.eut-carousel.eut-layout-2 .eut-align-right .eut-carousel-navigation {
float: left;
position: absolute;
top: 50%;
left: 0;
} .eut-carousel.eut-layout-2 .eut-align-center .eut-carousel-info {
float: none;
max-width: 100%;
}
.eut-carousel.eut-layout-2 .eut-align-center .eut-carousel-navigation {
float: none;
}
.eut-carousel.eut-layout-2 .eut-align-center .eut-carousel-info + .eut-carousel-navigation {
margin-top: 30px;
} .eut-slider.eut-layout-2 .eut-carousel-navigation {
position: absolute;
z-index: 6;
zoom: 1;
text-align: center;
top: 50%;
left: 0;
width: 50%;
height: 60px;
margin-top: -30px;
} .eut-countdown {
text-align: center;
}
.eut-countdown .eut-countdown-item {
display: inline-block;
position: relative;
text-align: center;
margin-bottom: 0;
padding: 0 3%;
}
.eut-countdown .eut-countdown-item .eut-number {
min-width: 1.667em;
}
.eut-countdown .eut-countdown-item .eut-number {
margin: 0;
}
@media only screen and (max-width: 767px) {
.eut-countdown .eut-countdown-item {
display: block;
margin-bottom: 30px;
padding: 0;
}
.eut-countdown .eut-countdown-item:last-child {
margin-bottom: 0;
}
} .eut-countdown.eut-style-1 .eut-countdown-item:before {
content: '';
position: absolute;
top: 0;
right: 0;
border-right: 1px solid;
width: 1px;
height: 100%;
opacity: 0.2;
}
@media only screen and (max-width: 767px) {
.eut-countdown.eut-style-1 .eut-countdown-item {
margin-bottom: 10px;
padding-bottom: 10px;
}
.eut-countdown.eut-style-1 .eut-countdown-item:before {
content: '';
position: absolute;
top: auto;
bottom: 0;
border-right: none;
border-top: 1px solid;
width: 100%;
height: 1px;
}
}
.eut-countdown.eut-style-1 .eut-countdown-item:last-child:before {
display: none;
}
.eut-countdown.eut-style-1 .eut-countdown-item span {
display: block;
margin-top: 5px;
} .eut-countdown.eut-style-2 .eut-countdown-item .eut-number {
display: inline-block;
vertical-align: middle;
}
.eut-countdown.eut-style-2 .eut-countdown-item span {
display: inline-block;
vertical-align: middle;
margin-left: 5px;
} .eut-countdown.eut-style-3 .eut-countdown-item {
margin: 0 3px;
padding: 15px 30px;
-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.20);
box-shadow: 0px 0px 5px rgba(0,0,0,0.20);
background-color: #ffffff;
}
.eut-countdown.eut-style-3 .eut-countdown-item span {
display: block;
margin-top: 5px;
}  .wp-block-quote.is-large:before,
.wp-block-quote.is-style-large:before {
content: '';
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
font-size: 18px;
}
.wp-block-quote cite,
.wp-block-quote footer {
font-size: 13px;
font-style: italic;
} .wp-block-pullquote {
border: none;
}
blockquote.wp-block-pullquote:before,
.wp-block-pullquote blockquote:before {
content: '';
}
blockquote.wp-block-pullquote,
.wp-block-pullquote blockquote {
opacity: 1;
}
.wp-block-pullquote p {
font-size: 28px;
line-height: 1.6;
}
blockquote.wp-block-pullquote.is-style-solid-color p,
.wp-block-pullquote.is-style-solid-color blockquote p {
font-size: 32px;
}
blockquote.wp-block-pullquote.alignleft p,
blockquote.wp-block-pullquote.alignright p,
.wp-block-pullquote.alignleft blockquote p,
.wp-block-pullquote.alignright blockquote p {
font-size: 20px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer {
font-size: 13px;
font-style: italic;
} .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 100px;
} .wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-latest-comments {
margin: 0 0 28px 0;
list-style: none;
}
.wp-block-archives li,
.wp-block-categories li,
.wp-block-latest-posts li {
margin-bottom: 6px;
text-align: left;
overflow: hidden;
}
.wp-block-archives, li ul,
.wp-block-categories li ul,
.wp-block-latest-posts li ul {
padding-left: 10px;
}
.wp-block-archives li:last-child,
.wp-block-categories li:last-child,
.wp-block-latest-posts li:last-child {
margin-bottom: 0;
padding-bottom: 0;
} .wp-block-gallery {
margin: 0 0 28px 0;
} .widget,
.widgets {
font-size: 13px;
line-height: 1.846em;
margin-bottom: 3.846em;
position: relative;
z-index: 1;
}
.widget:last-child,
.widgets:last-child {
margin-bottom: 0;
}
.widget ul {
line-height: 28px;
}
.eut-widget-title {
margin-bottom: 20px;
} #eut-content-area .wpb_content_element {
margin-bottom: 40px;
}
#eut-content-area .wpb_content_element .widget,
#eut-content-area .wpb_content_element .widgets,
#eut-content-area .wpb_content_element:last-child {
margin-bottom: 0;
}
.eut-widget .eut-media {
overflow: hidden;
} .widget.widget_categories label {
display: none;
}
.widget.widget_categories ul {
margin: 0;
list-style: none;
}
.widget.widget_categories li {
margin-bottom: 6px;
border-color: inherit;
text-align: right;
overflow: hidden;
}
.widget.widget_categories li ul {
padding-left: 10px;
border-color: inherit;
}
.widget.widget_categories li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget.widget_categories li a {
float: left;
color: inherit;
} .widget.widget_archive label {
display: none;
}
.widget.widget_archive ul {
margin: 0;
list-style: none;
}
.widget.widget_archive li {
margin-bottom: 6px;
border-color: inherit;
text-align: right;
overflow: hidden;
}
.widget.widget_archive li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget.widget_archive li a {
float: left;
color: inherit;
} .widget.widget_pages ul {
margin: 0;
list-style: none;
}
.widget.widget_pages li {
margin-bottom: 6px;
border-color: inherit;
}
.widget.widget_pages li ul {
padding-left: 10px;
border-color: inherit;
}
.widget.widget_pages li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget.widget_pages li a {
color: inherit;
} .widget.widget_recent_entries ul {
margin: 0;
list-style: none;
}
.widget.widget_recent_entries li {
margin-bottom: 6px;
}
.widget.widget_recent_entries li:last-child {
margin-bottom: 0;
}
.widget.widget_recent_entries li span.post-date {
display: block;
line-height: 2em;
margin-bottom: 0;
opacity: 0.8;
}
.widget.widget_recent_entries li a {
color: inherit;
line-height: 1.571em;
} .widget.widget_nav_menu ul {
margin: 0;
list-style: none;
}
.widget.widget_nav_menu li {
margin-bottom: 6px;
}
.widget.widget_nav_menu li ul {
padding-left: 10px;
margin-bottom: 6px;
border-color: inherit;
}
.widget.widget_nav_menu li ul li {
margin-bottom: 6px;
}
.widget.widget_nav_menu li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget.widget_nav_menu li a {
color: inherit;
} .widget.widget_calendar {
position: relative;
}
.widget.widget_calendar table,
.widget.widget_calendar thead,
.widget.widget_calendar tbody,
.widget.widget_calendar tfoot,
.widget.widget_calendar tr,
.widget.widget_calendar td,
.widget.widget_calendar th {
border-color: inherit !important;
}
.widget.widget_calendar table {
width: 100%;
border-collapse:collapse;
}
.widget.widget_calendar a {
color: inherit;
}
.widget.widget_calendar table tbody td {
padding: 4px;
font-size: 11px;
}
.widget.widget_calendar table th {
text-align: center;
padding: 10px 0;
width: 14.28%;
}
.widget.widget_calendar caption {
margin-bottom: 10px;
text-align: left;
} .widget.widget_rss ul {
margin: 0;
list-style: none;
}
.widget.widget_rss li {
margin-bottom: 36px;
border-color: inherit;
}
.widget.widget_rss li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget .rss-date {
display: block;
font-size: 12px;
line-height: 1.4;
margin-bottom: 12px;
}
.widget.widget_rss .eut-widget-title img {
display: inline-block;
margin-top: -3px;
margin-right: 5px;
}
.widget.widget_rss a.rsswidget {
color: inherit;
}
.widget.widget_rss cite {
opacity: 0.8;
margin-top: 12px;
display: block;
}
.widget.widget_rss li .rsswidget {
font-weight: bold;
font-size: 16px;
} .widget.widget_tag_cloud .tagcloud {
font-size: 0;
border-color: inherit;
} .widget.widget_meta ul {
margin: 0;
list-style: none;
}
.widget.widget_meta li {
margin-bottom: 6px;
}
.widget.widget_meta li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget.widget_meta li a {
color: inherit;
} .widget.widget_recent_comments ul {
margin: 0;
list-style: none;
}
.widget.widget_recent_comments li {
margin-bottom: 6px;
}
.widget.widget_recent_comments li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.widget.widget_recent_comments li a {
color: inherit;
} .eut-widget.eut-latest-portfolio ul {
margin: 0;
list-style: none;
margin: -0.231em;
position: relative;
}
.eut-widget.eut-latest-portfolio ul:before,
.eut-widget.eut-latest-portfolio ul:after {
display: table;
content: " ";
}
.eut-widget.eut-latest-portfolio ul:after {
clear: both;
}
.eut-widget.eut-latest-portfolio ul li {
float: left;
width: 25%;
max-width: 90px;
}
.eut-widget.eut-latest-portfolio ul li a {
display: block;
padding: 0.231em;
}
.eut-widget.eut-latest-portfolio li .eut-bg-wrapper .eut-bg-image {
-webkit-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
}
.eut-widget.eut-latest-portfolio ul li img {
display: none;
} .eut-widget.eut-contact-info ul {
margin: 0;
list-style: none;
}
.eut-widget.eut-contact-info li {
margin-bottom: 6px;
}
.eut-widget.eut-contact-info li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.eut-widget.eut-contact-info li i {
margin-right: 20px;
float: left;
line-height: inherit;
opacity: 0.5;
}
.eut-widget.eut-contact-info li .eut-info-content {
overflow: hidden;
}
.eut-widget.eut-contact-info li a {
color: inherit;
} .eut-widget.eut-latest-news ul {
margin: 0;
list-style: none;
}
.eut-widget.eut-latest-news li {
margin-bottom: 18px;
display: table;
width: 100%;
}
.eut-widget.eut-latest-news li:last-child {
margin-bottom: 0;
}
.eut-widget.eut-latest-news li a {
display: block;
}
.eut-widget.eut-latest-news li .eut-thumbnail-wrapper {
display: table-cell;
vertical-align: middle;
width: 60px;
height: 60px;
min-width: 60px;
}
.eut-widget.eut-latest-news li .eut-news-content {
display: table-cell;
vertical-align: middle;
position: relative;
z-index: 2;
}
.eut-widget.eut-latest-news li .eut-title {
font-size: 16px;
font-weight: bold;
line-height: 18px;
margin-bottom: 6px;
display: block;
text-overflow: ellipsis;
overflow:hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
color: inherit;
-webkit-transition : color .3s;
-moz-transition    : color .3s;
-ms-transition     : color .3s;
-o-transition      : color .3s;
transition         : color .3s;
}
.eut-widget.eut-latest-news li .eut-thumbnail {
-webkit-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-widget.eut-latest-news li a:hover .eut-thumbnail {
-webkit-transform: translateY(-2px) scale(1.1);
-moz-transform:    translateY(-2px) scale(1.1);
-ms-transform:     translateY(-2px) scale(1.1);
-o-transform:      translateY(-2px) scale(1.1);
transform:         translateY(-2px) scale(1.1);
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow:    0 15px 35px -10px rgba(0,0,0,.3);
box-shadow:         0 15px 35px -10px rgba(0,0,0,.3);
}
.eut-widget.eut-latest-news li .eut-thumbnail-wrapper + .eut-news-content {
padding-left: 20px;
}
.eut-widget.eut-latest-news .eut-latest-news-date {
font-size: 12px;
font-weight: bold;
line-height: 14px;
margin-bottom: 0;
-webkit-transition : color .3s;
-moz-transition    : color .3s;
-ms-transition     : color .3s;
-o-transition      : color .3s;
transition         : color .3s;
}
.eut-widget.eut-latest-news .eut-without-thumb {
position: relative;
padding: 7%;
}
.eut-widget.eut-latest-news .eut-without-thumb:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-width: 1px;
border-style: solid;
opacity: 0.1;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-widget.eut-latest-news .eut-without-thumb:hover:after {
opacity: 1;
-webkit-transform: scale(1.02);
-moz-transform:    scale(1.02);
-ms-transform:     scale(1.02);
-o-transform:      scale(1.02);
transform:         scale(1.02);
-webkit-box-shadow: 0 15px 35px -10px rgba(0,0,0,.3);
-moz-box-shadow:    0 15px 35px -10px rgba(0,0,0,.3);
box-shadow:         0 15px 35px -10px rgba(0,0,0,.3);
}
.eut-widget.eut-latest-news a.eut-without-thumb:hover .eut-title,
.eut-widget.eut-latest-news a.eut-without-thumb:hover .eut-latest-news-date {
color: #ffffff;
} .eut-widget.eut-comments ul {
margin: 0;
list-style: none;
}
.eut-widget.eut-comments li {
margin-bottom: 20px;
border-color: inherit;
}
.eut-widget.eut-comments li img {
-webkit-border-radius: 50px;
border-radius: 50px;
float: left;
}
.eut-widget.eut-comments li:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.eut-widget.eut-comments li a.eut-title {
display: block;
line-height: 1.571em;
}
.eut-widget.eut-comments li a {
color: inherit;
}
.eut-widget.eut-comments li .eut-comment-content {
overflow: hidden;
vertical-align: middle;
}
.eut-widget.eut-comments li img + .eut-comment-content {
padding-left: 20px;
}
.eut-widget.eut-comments .eut-comment-date {
line-height: 2em;
margin-bottom: 0;
opacity: 0.5;
} .eut-widget.eut-instagram-feed {
overflow: hidden;
position: relative;
z-index: 2;
}
.eut-widget.eut-instagram-feed ul {
margin: 0;
list-style: none;
overflow: hidden;
margin: -2px;
}
.eut-widget.eut-instagram-feed li {
padding: 2px;
position: relative;
float: left;
width: 33.33333333%;
max-width: 150px;
min-width: 50px;
}
.eut-widget.eut-instagram-feed li a {
display: block;
overflow: hidden;
position: absolute;
top: 0px;
left: 0px;
z-index: 3;
width: 100%;
height: 100%;
background-color: #000000;
-webkit-border-radius: inherit;
border-radius: inherit;
opacity: 0;
-webkit-backface-visibility : hidden;
-moz-backface-visibility    : hidden;
-ms-backface-visibility     : hidden;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
}
.eut-widget.eut-instagram-feed li a:hover {
opacity: 0.6;
}
.eut-widget.eut-instagram-feed li img {
display: none;
}
.eut-widget.eut-instagram-feed li .eut-bg-wrapper,
.eut-widget.eut-instagram-feed li .eut-bg-image {
-webkit-border-radius: inherit;
border-radius: inherit;
}
.eut-widget.eut-instagram-feed li .eut-item-wrapper {
position: relative;
-webkit-border-radius: 3px;
border-radius: 3px;
overflow: hidden;
} .eut-widget.eut-social {
overflow: hidden;
}
.eut-widget.eut-social ul {
margin: 0;
list-style: none;
font-size: 0;
}
.eut-widget.eut-social li {
font-size: 13px;
display: inline-block;
margin: 0px 10px 10px 0;
}
.eut-widget.eut-social li a {
display: inline-block;
width: inherit;
height: inherit;
line-height: inherit;
text-align: center;
font-size: 16px;
color: inherit;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.eut-widget.eut-social li a.eut-outline {
border: 1px solid;
border-color: inherit;
} .eut-widget.eut-social li a.eut-small {
font-size: 1.125em;
}
.eut-widget.eut-social li a.eut-small.eut-outline,
.eut-widget.eut-social li a.eut-small.eut-simple {
width: 2.188em;
height: 2.188em;
line-height: 2.188em;
font-size: 1em;
} .eut-widget.eut-social li a.eut-medium {
font-size: 1.500em;
}
.eut-widget.eut-social li a.eut-medium.eut-outline,
.eut-widget.eut-social li a.eut-medium.eut-simple {
width: 2.778em;
height: 2.778em;
line-height: 2.778em;
font-size: 1.125em;
} .eut-widget.eut-social li a.eut-large {
font-size: 2.000em;
}
.eut-widget.eut-social li a.eut-large.eut-outline,
.eut-widget.eut-social li a.eut-large.eut-simple {
width: 3.500em;
height: 3.500em;
line-height: 3.500em;
font-size: 1.250em;
} .eut-widget.eut-social-list ul {
margin: 0;
list-style: none;
}
.eut-widget.eut-social-list ul.eut-horizontal li a {
color: inherit;
display: inline-block;
vertical-align: middle;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.eut-widget.eut-social-list ul.eut-vertical li {
margin-bottom: 7px;
}
.eut-widget.eut-social-list ul.eut-horizontal li a:hover {
color: inherit !important;
opacity: 0.6;
}
@media screen and (min-width: 1201px) {
.eut-widget.eut-social-list ul.eut-horizontal li {
display: inline-block;
}
.eut-widget.eut-social-list ul.eut-horizontal li:after {
content: '';
width: 36px;
border-top: 1px solid;
display: inline-block;
vertical-align: middle;
margin: 1px 2px 0px 2px;
opacity: 0.3;
}
.eut-widget.eut-social-list ul.eut-horizontal li:last-child:after {
display: none;
}
} .eut-widget.eut-promote-post a.eut-post-link {
position: relative;
display: block;
}
.eut-promote-content {
color: #ffffff;
position: absolute;
bottom: 0;
top: auto;
left: 0;
width: 100%;
padding: 7%;
z-index: 6;
-webkit-transition : all .2s ease-in-out;
-moz-transition    : all .2s ease-in-out;
-ms-transition     : all .2s ease-in-out;
-o-transition      : all .2s ease-in-out;
transition         : all .2s ease-in-out;
}
.eut-widget.eut-promote-post .eut-post-meta-wrapper {
position: absolute;
bottom: 0;
top: auto;
left: 0;
z-index: 6;
padding: 7%;
border: none;
-webkit-transition : all .2s ease-in-out;
-moz-transition    : all .2s ease-in-out;
-ms-transition     : all .2s ease-in-out;
-o-transition      : all .2s ease-in-out;
transition         : all .2s ease-in-out;
-webkit-transform: translateY(150%);
-moz-transform:    translateY(150%);
-ms-transform:     translateY(150%);
-o-transform:      translateY(150%);
transform:         translateY(150%);
}
.eut-widget.eut-promote-post .hover .eut-post-meta-wrapper {
-webkit-transform: translateY(0%);
-moz-transform:    translateY(0%);
-ms-transform:     translateY(0%);
-o-transform:      translateY(0%);
transform:         translateY(0%);
}
.eut-widget.eut-promote-post .eut-post-meta-wrapper li {
opacity: 1;
color: #ffffff;
}
.eut-promote-content .eut-promote-date {
-webkit-transition : all .2s ease-in-out;
-moz-transition    : all .2s ease-in-out;
-ms-transition     : all .2s ease-in-out;
-o-transition      : all .2s ease-in-out;
transition         : all .2s ease-in-out;
}
.hover .eut-promote-content {
-webkit-transform: translateY(-50%);
-moz-transform:    translateY(-50%);
-ms-transform:     translateY(-50%);
-o-transform:      translateY(-50%);
transform:         translateY(-50%);
}
.hover .eut-promote-content .eut-promote-date {
-webkit-transform: translateY(50%);
-moz-transform:    translateY(50%);
-ms-transform:     translateY(50%);
-o-transform:      translateY(50%);
transform:         translateY(50%);
opacity: 0;
} .eut-widget.eut-image-banner img {
display: block;
max-width: none;
width: 100%;
}
.eut-widget .eut-image-banner-content {
margin-top: 30px;
} .eut-widget.eut-sticky-widget {
margin-bottom: 0;
} .eut-widget.widget_polylang ul {
margin: 0;
list-style: none;
}
.eut-widget.widget_polylang ul li {
margin-bottom: 10px;
}
.eut-widget.widget_polylang ul li img{
margin-top: -2px;
margin-right: 5px;
} .widget_display_forums ul,
.widget_display_views ul,
.widget_display_topics ul,
.widget_display_replies ul {
list-style: none;
padding: 0;
margin: 0;
}
.widget_display_search form {
position: relative;
}
.widget_display_search input[type='text'] {
width: 100%;
height: 50px;
padding-right: 50px;
margin-bottom: 0;
}
.widget_display_search .button {
width: 38px;
height: 38px;
line-height: 38px;
font-size: 18px;
position: absolute;
border: none;
top: 4px;
right: 6px;
padding: 0;
cursor: pointer;
z-index: 3;
outline: 0;
margin-top: 2px;
z-index: 2;
text-indent: -9999px;
background-color: transparent;
-webkit-transition : all .3s;
-moz-transition    : all .3s;
-ms-transition     : all .3s;
-o-transition      : all .3s;
transition         : all .3s;
}
.widget_display_search form:after {
content: "\e905";
font-size: 18px;
width: 38px;
text-align: center;
height: 18px;
line-height: 1;
position: absolute;
top: 50%;
margin-top: -9px;
right: 6px;
z-index: 1;
font-family: 'crocal-icons' !important;
}