@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;
} @-webkit-keyframes fadeInLeftSmall {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftSmall {
from {
opacity: 0;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftSmall {
-webkit-animation-name: fadeInLeftSmall;
animation-name: fadeInLeftSmall;
}
@-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;
}
}
@-webkit-keyframes fadeInRightSmall {
from {
opacity: 0;
-webkit-transform: translate3d(40px, 0, 0);
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightSmall {
from {
opacity: 0;
-webkit-transform: translate3d(40px, 0, 0);
transform: translate3d(40px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightSmall {
-webkit-animation-name: fadeInRightSmall;
animation-name: fadeInRightSmall;
}
@-webkit-keyframes fadeOut_to_1 {
from {
opacity: 1;
}
to {
opacity: 0.1;
}
}
@keyframes fadeOut_to_1 {
from {
opacity: 1;
}
to {
opacity: 0.1;
}
}
.fadeOut_to_1 {
-webkit-animation-name: fadeOut_to_1;
animation-name: fadeOut_to_1;
}.slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.slick-loading .slick-list{background:#fff url(https://www.rote-herolde-wiesbaden.de/wp-content/plugins/addons-for-elementor/assets/css/lib/loader.gif) center center no-repeat}@media only screen and (max-width:1024px){.slick-slider{padding:0 10px}}.lae-container .slick-next,.lae-container .slick-prev{position:absolute;bottom:initial;left:initial;right:initial;top:50%;width:28px;height:28px;margin:-14px 0 0}.rtl .lae-container .slick-next,.rtl .lae-container .slick-prev{-webkit-transform:scaleX(-1);transform:scaleX(-1);direction:ltr}.lae-container .slick-next,.lae-container .slick-next:after,.lae-container .slick-next:before,.lae-container .slick-prev,.lae-container .slick-prev:after,.lae-container .slick-prev:before{text-shadow:none;background:0 0;border:none;padding:0;opacity:1;font-family:lae-icomoon!important;speak:none;font-style:normal;font-weight:400;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:0;text-indent:0;text-align:center;-webkit-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.lae-container .slick-next:before,.lae-container .slick-prev:before{margin:2px;vertical-align:middle}.lae-container .slick-next:hover:after,.lae-container .slick-next:hover:before,.lae-container .slick-prev:hover:after,.lae-container .slick-prev:hover:before{color:#888}.lae-dark-bg .lae-container .slick-next:after,.lae-dark-bg .lae-container .slick-next:before,.lae-dark-bg .lae-container .slick-prev:after,.lae-dark-bg .lae-container .slick-prev:before{color:#888}.lae-dark-bg .lae-container .slick-next:hover:after,.lae-dark-bg .lae-container .slick-next:hover:before,.lae-dark-bg .lae-container .slick-prev:hover:after,.lae-dark-bg .lae-container .slick-prev:hover:before{color:#aaa;background:0 0}.lae-container .slick-prev{left:-40px}.lae-container .slick-prev:before{content:"\e904"}@media only screen and (max-width:1024px){.lae-container .slick-prev{left:-10px}}.lae-container .slick-next{right:-40px}.lae-container .slick-next:before{content:"\e905"}@media only screen and (max-width:1024px){.lae-container .slick-next{right:-10px}}.lae-container ul.slick-dots{width:100%;position:absolute;bottom:-30px;text-align:center;padding:0;margin:0}.lae-container ul.slick-dots li{margin:0 8px 0 0;padding:0;display:inline-block;font-size:0}.lae-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 .3s ease-in-out 0s;transition:background .3s ease-in-out 0s;font-size:0;outline:0}.lae-container ul.slick-dots li button:before{display:none}.lae-dark-bg .lae-container ul.slick-dots li button{background:#888;border-color:#888}.lae-container ul.slick-dots li button:hover,.lae-container ul.slick-dots li.slick-active button{background:0 0;border-color:#aaa}.lae-container ul.slick-dots li.slick-active button{width:14px;height:14px}@font-face {
font-family: 'lae-icomoon';
src:
url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/addons-for-elementor/assets/css/fonts/lae-icomoon.ttf?7f8669) format('truetype'),
url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/addons-for-elementor/assets/css/fonts/lae-icomoon.woff?7f8669) format('woff'),
url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/addons-for-elementor/assets/css/fonts/lae-icomoon.svg?7f8669#lae-icomoon) format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="lae-icon-"], [class*=" lae-icon-"] { font-family: 'lae-icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lae-icon-angle-left:before {
content: "\f104";
}
.lae-icon-angle-right:before {
content: "\f105";
}
.lae-icon-twitter-grid:before {
content: "\e926";
}
.lae-icon-piechart3:before {
content: "\e927";
}
.lae-icon-features:before {
content: "\e928";
}
.lae-icon-slider2:before {
content: "\e929";
}
.lae-icon-gallery:before {
content: "\e92a";
}
.lae-icon-team4:before {
content: "\e92b";
}
.lae-icon-team6:before {
content: "\e92c";
}
.lae-icon-stats-bars:before {
content: "\e92d";
}
.lae-icon-instagram-grid:before {
content: "\e92e";
}
.lae-icon-posts-grid:before {
content: "\e92f";
}
.lae-icon-posts-block:before {
content: "\e930";
}
.lae-icon-posts-grid-masonry:before {
content: "\e931";
}
.lae-icon-buttons:before {
content: "\e932";
}
.lae-icon-posts-carousel:before {
content: "\e933";
}
.lae-icon-pricing-table:before {
content: "\e934";
}
.lae-icon-tab-slider1:before {
content: "\e935";
}
.lae-icon-tabs5:before {
content: "\e936";
}
.lae-icon-tabs2:before {
content: "\e937";
}
.lae-icon-faq:before {
content: "\e938";
}
.lae-icon-youtube-grid:before {
content: "\e939";
}
.lae-icon-vimeo-grid:before {
content: "\e93a";
}
.lae-icon-carousel:before {
content: "\e93b";
}
.lae-icon-slider7:before {
content: "\e93c";
}
.lae-icon-slider3:before {
content: "\e93d";
}
.lae-icon-slider6:before {
content: "\e93e";
}
.lae-icon-slider4:before {
content: "\e93f";
}
.lae-icon-testimonials3:before {
content: "\e940";
}
.lae-icon-testimonials1:before {
content: "\e941";
}
.lae-icon-clients:before {
content: "\e942";
}
.lae-icon-gallery-carousel:before {
content: "\e943";
}
.lae-icon-services:before {
content: "\e944";
}
.lae-icon-testimonials:before {
content: "\e945";
}
.lae-icon-pie-chart2:before {
content: "\e946";
}
.lae-icon-heading:before {
content: "\e947";
}
.lae-icon-play:before {
content: "\e925";
}
.lae-icon-link:before {
content: "\e924";
}
.lae-icon-star-empty:before {
content: "\e901";
}
.lae-icon-rate:before {
content: "\e901";
}
.lae-icon-star:before {
content: "\e901";
}
.lae-icon-favorite:before {
content: "\e901";
}
.lae-icon-bookmark:before {
content: "\e901";
}
.lae-icon-eye:before {
content: "\e902";
}
.lae-icon-like:before {
content: "\e900";
}
.lae-icon-calendar:before {
content: "\e923";
}
.lae-icon-bubble:before {
content: "\e903";
}
.lae-icon-comment:before {
content: "\e903";
}
.lae-icon-chat:before {
content: "\e903";
}
.lae-icon-talk:before {
content: "\e903";
}
.lae-icon-arrow-left:before {
content: "\e904";
}
.lae-icon-arrow-right:before {
content: "\e905";
}
.lae-icon-aim:before {
content: "\e906";
}
.lae-icon-behance:before {
content: "\e907";
}
.lae-icon-dribbble:before {
content: "\e908";
}
.lae-icon-facebook:before {
content: "\e909";
}
.lae-icon-flickr:before {
content: "\e90a";
}
.lae-icon-googleplus:before {
content: "\e90b";
}
.lae-icon-linkedin:before {
content: "\e90c";
}
.lae-icon-pinterest:before {
content: "\e90d";
}
.lae-icon-skype:before {
content: "\e90e";
}
.lae-icon-twitter:before {
content: "\e90f";
}
.lae-icon-vimeo:before {
content: "\e910";
}
.lae-icon-zerply:before {
content: "\e911";
}
.lae-icon-quote:before {
content: "\e912";
}
.lae-icon-video-play:before {
content: "\e913";
}
.lae-icon-email:before {
content: "\e914";
}
.lae-icon-close:before {
content: "\e915";
}
.lae-icon-plus:before {
content: "\e916";
}
.lae-icon-arrow-right-toggle:before {
content: "\e917";
}
.lae-icon-menu:before {
content: "\e918";
}
.lae-icon-menu-2:before {
content: "\e919";
}
.lae-icon-fit-to:before {
content: "\e91a";
}
.lae-icon-full-screen:before {
content: "\e91b";
}
.lae-icon-arrow-left2:before {
content: "\e91c";
}
.lae-icon-arrow-left3:before {
content: "\e91d";
}
.lae-icon-arrow-right2:before {
content: "\e91e";
}
.lae-icon-arrow-right3:before {
content: "\e91f";
}
.lae-icon-start:before {
content: "\e920";
}
.lae-icon-heart:before {
content: "\e921";
}
.lae-icon-retweet:before {
content: "\e922";
}
.lae-icon-play2:before {
content: "\ea15";
}
.lae-icon-play3:before {
content: "\ea1c";
}
.lae-icon-instagram:before {
content: "\ea92";
}
.lae-icon-twitter1:before {
content: "\ea96";
}.panel-grid .widget {
overflow: initial; }
.lae-clear {
clear: both; }
.lae-center {
text-align: center; }
.lae-container, .lae-uber-grid-container, .lae-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lae-container *, .lae-container *::after, .lae-container *::before, .lae-uber-grid-container *, .lae-uber-grid-container *::after, .lae-uber-grid-container *::before, .lae-grid-container *, .lae-grid-container *::after, .lae-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lae-container ol, .lae-container ul, .lae-container ol > li, .lae-container ul > li, .lae-container ol:hover, .lae-container ul:hover, .lae-container ul > li:hover, .lae-container ol > li:hover, .lae-container ol > li > a, .lae-container ul > li > a, .lae-container ol > li > a:hover, .lae-container ul > li > a:hover, .lae-container img, .lae-uber-grid-container ol, .lae-uber-grid-container ul, .lae-uber-grid-container ol > li, .lae-uber-grid-container ul > li, .lae-uber-grid-container ol:hover, .lae-uber-grid-container ul:hover, .lae-uber-grid-container ul > li:hover, .lae-uber-grid-container ol > li:hover, .lae-uber-grid-container ol > li > a, .lae-uber-grid-container ul > li > a, .lae-uber-grid-container ol > li > a:hover, .lae-uber-grid-container ul > li > a:hover, .lae-uber-grid-container img, .lae-grid-container ol, .lae-grid-container ul, .lae-grid-container ol > li, .lae-grid-container ul > li, .lae-grid-container ol:hover, .lae-grid-container ul:hover, .lae-grid-container ul > li:hover, .lae-grid-container ol > li:hover, .lae-grid-container ol > li > a, .lae-grid-container ul > li > a, .lae-grid-container ol > li > a:hover, .lae-grid-container ul > li > a:hover, .lae-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lae-container ol:before, .lae-container ol:after, .lae-container ul:before, .lae-container ul:after, .lae-container ol > li:before, .lae-container ol > li:after, .lae-container ul > li:before, .lae-container ul > li:after, .lae-container ol:hover:before, .lae-container ol:hover:after, .lae-container ul:hover:before, .lae-container ul:hover:after, .lae-container ul > li:hover:before, .lae-container ul > li:hover:after, .lae-container ol > li:hover:before, .lae-container ol > li:hover:after, .lae-container ol > li > a:before, .lae-container ol > li > a:after, .lae-container ul > li > a:before, .lae-container ul > li > a:after, .lae-container ol > li > a:hover:before, .lae-container ol > li > a:hover:after, .lae-container ul > li > a:hover:before, .lae-container ul > li > a:hover:after, .lae-container img:before, .lae-container img:after, .lae-uber-grid-container ol:before, .lae-uber-grid-container ol:after, .lae-uber-grid-container ul:before, .lae-uber-grid-container ul:after, .lae-uber-grid-container ol > li:before, .lae-uber-grid-container ol > li:after, .lae-uber-grid-container ul > li:before, .lae-uber-grid-container ul > li:after, .lae-uber-grid-container ol:hover:before, .lae-uber-grid-container ol:hover:after, .lae-uber-grid-container ul:hover:before, .lae-uber-grid-container ul:hover:after, .lae-uber-grid-container ul > li:hover:before, .lae-uber-grid-container ul > li:hover:after, .lae-uber-grid-container ol > li:hover:before, .lae-uber-grid-container ol > li:hover:after, .lae-uber-grid-container ol > li > a:before, .lae-uber-grid-container ol > li > a:after, .lae-uber-grid-container ul > li > a:before, .lae-uber-grid-container ul > li > a:after, .lae-uber-grid-container ol > li > a:hover:before, .lae-uber-grid-container ol > li > a:hover:after, .lae-uber-grid-container ul > li > a:hover:before, .lae-uber-grid-container ul > li > a:hover:after, .lae-uber-grid-container img:before, .lae-uber-grid-container img:after, .lae-grid-container ol:before, .lae-grid-container ol:after, .lae-grid-container ul:before, .lae-grid-container ul:after, .lae-grid-container ol > li:before, .lae-grid-container ol > li:after, .lae-grid-container ul > li:before, .lae-grid-container ul > li:after, .lae-grid-container ol:hover:before, .lae-grid-container ol:hover:after, .lae-grid-container ul:hover:before, .lae-grid-container ul:hover:after, .lae-grid-container ul > li:hover:before, .lae-grid-container ul > li:hover:after, .lae-grid-container ol > li:hover:before, .lae-grid-container ol > li:hover:after, .lae-grid-container ol > li > a:before, .lae-grid-container ol > li > a:after, .lae-grid-container ul > li > a:before, .lae-grid-container ul > li > a:after, .lae-grid-container ol > li > a:hover:before, .lae-grid-container ol > li > a:hover:after, .lae-grid-container ul > li > a:hover:before, .lae-grid-container ul > li > a:hover:after, .lae-grid-container img:before, .lae-grid-container img:after {
display: none; }
.lae-container a, .lae-uber-grid-container a, .lae-grid-container a {
text-decoration: initial; }
.lae-container img, .lae-uber-grid-container img, .lae-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lae-container {
margin-left: auto;
margin-right: auto; }
.lae-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lae-center {
text-align: center; } .lae-uber-grid-container {
display: grid;
grid-column-gap: 30px;
grid-row-gap: 35px; }
.lae-uber-grid-container.lae-grid-auto-column-layout {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.lae-uber-grid-container.lae-grid-mobile-1 {
grid-template-columns: repeat(1, 1fr); }
.lae-uber-grid-container.lae-grid-mobile-2 {
grid-template-columns: repeat(2, 1fr); }
.lae-uber-grid-container.lae-grid-mobile-3 {
grid-template-columns: repeat(3, 1fr); }
.lae-uber-grid-container.lae-grid-mobile-4 {
grid-template-columns: repeat(4, 1fr); }
.lae-uber-grid-container.lae-grid-mobile-5 {
grid-template-columns: repeat(5, 1fr); }
.lae-uber-grid-container.lae-grid-mobile-6 {
grid-template-columns: repeat(6, 1fr); }
@media only screen and (min-width: 767px) {
.lae-uber-grid-container.lae-grid-tablet-1 {
grid-template-columns: repeat(1, 1fr); }
.lae-uber-grid-container.lae-grid-tablet-2 {
grid-template-columns: repeat(2, 1fr); }
.lae-uber-grid-container.lae-grid-tablet-3 {
grid-template-columns: repeat(3, 1fr); }
.lae-uber-grid-container.lae-grid-tablet-4 {
grid-template-columns: repeat(4, 1fr); }
.lae-uber-grid-container.lae-grid-tablet-5 {
grid-template-columns: repeat(5, 1fr); }
.lae-uber-grid-container.lae-grid-tablet-6 {
grid-template-columns: repeat(6, 1fr); } }
@media only screen and (min-width: 1024px) {
.lae-uber-grid-container.lae-grid-desktop-1 {
grid-template-columns: repeat(1, 1fr); }
.lae-uber-grid-container.lae-grid-desktop-2 {
grid-template-columns: repeat(2, 1fr); }
.lae-uber-grid-container.lae-grid-desktop-3 {
grid-template-columns: repeat(3, 1fr); }
.lae-uber-grid-container.lae-grid-desktop-4 {
grid-template-columns: repeat(4, 1fr); }
.lae-uber-grid-container.lae-grid-desktop-5 {
grid-template-columns: repeat(5, 1fr); }
.lae-uber-grid-container.lae-grid-desktop-6 {
grid-template-columns: repeat(6, 1fr); } } .lae-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) {
.lae-widget-heading {
font-size: 32px;
line-height: 44px; } } input.lae-button, button.lae-button, a.lae-button, .lae-button:active, .lae-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.lae-button.lae-rounded, button.lae-button.lae-rounded, a.lae-button.lae-rounded, .lae-button:active.lae-rounded, .lae-button:visited.lae-rounded {
border-radius: 999px; }
input.lae-button.lae-large, button.lae-button.lae-large, a.lae-button.lae-large, .lae-button:active.lae-large, .lae-button:visited.lae-large {
padding: 20px 60px; }
input.lae-button.lae-small, button.lae-button.lae-small, a.lae-button.lae-small, .lae-button:active.lae-small, .lae-button:visited.lae-small {
padding: 12px 25px;
font-size: 11px; }
input.lae-button:hover, button.lae-button:hover, a.lae-button:hover, .lae-button:active:hover, .lae-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
.lae-button.lae-black {
background-color: #363636; }
.lae-button.lae-black:hover {
background-color: #434343; }
.lae-button.lae-blue {
background-color: #46a5d5; }
.lae-button.lae-blue:hover {
background-color: #5bafda; }
.lae-button.lae-cyan {
background-color: #57c0dc; }
.lae-button.lae-cyan:hover {
background-color: #6cc8e0; }
.lae-button.lae-green {
background-color: #00a57d; }
.lae-button.lae-green:hover {
background-color: #00bf90; }
.lae-button.lae-orange {
background-color: #e87151; }
.lae-button.lae-orange:hover {
background-color: #eb8368; }
.lae-button.lae-pink {
background-color: #dd5679; }
.lae-button.lae-pink:hover {
background-color: #e16b8a; }
.lae-button.lae-red {
background-color: #da4f49; }
.lae-button.lae-red:hover {
background-color: #de635e; }
.lae-button.lae-teal {
background-color: #28c2ba; }
.lae-button.lae-teal:hover {
background-color: #2fd4cc; }
.lae-button.lae-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lae-button.lae-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lae-button.lae-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lae-button.lae-semitrans:hover {
background-color: #fff;
color: #333 !important; } .single-elementor_library [data-elementor-type="livemesh_grid"] .elementor-element.elementor-widget.elementor-widget-livemesh-grid-item .elementor-widget-container {
border: 5px double #a4a0a2;
padding: 10px; }
.single-elementor_library [data-elementor-type="livemesh_grid"] .elementor-column {
border: 1px dotted #827e80; }
.lae-template-error {
padding: 20px;
font-style: italic; } input.lae-button.lae-with-icon i, input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon i, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon i, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active i, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited i, .lae-button.lae-with-icon:visited img.lae-thumbnail {
margin-right: 15px; }
.rtl input.lae-button.lae-with-icon i, .rtl input.lae-button.lae-with-icon img.lae-thumbnail, .rtl button.lae-button.lae-with-icon i, .rtl button.lae-button.lae-with-icon img.lae-thumbnail, .rtl a.lae-button.lae-with-icon i, .rtl a.lae-button.lae-with-icon img.lae-thumbnail, .rtl .lae-button.lae-with-icon:active i, .rtl .lae-button.lae-with-icon:active img.lae-thumbnail, .rtl .lae-button.lae-with-icon:visited i, .rtl .lae-button.lae-with-icon:visited img.lae-thumbnail {
margin-right: 0;
margin-left: 15px; }
input.lae-button.lae-with-icon i, button.lae-button.lae-with-icon i, a.lae-button.lae-with-icon i, .lae-button.lae-with-icon:active i, .lae-button.lae-with-icon:visited i {
color: #fff;
font-size: 24px;
vertical-align: middle;
line-height: 1; }
input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited img.lae-thumbnail {
display: inline !important;
vertical-align: middle;
max-width: 50px; } .lae-heading {
text-align: center;
margin: 0 auto 60px;
max-width: 640px; }
@media only screen and (max-width: 767px) {
.lae-heading {
margin-bottom: 40px; } }
.lae-heading .lae-text {
font-size: 18px;
line-height: 28px;
margin: 0 auto; }
@media only screen and (max-width: 767px) {
.lae-heading .lae-text {
font-size: 15px;
line-height: 26px; } }
.lae-heading.lae-alignleft, .lae-heading.lae-alignright {
margin: 0; }
.lae-heading.lae-alignleft .lae-text, .lae-heading.lae-alignright .lae-text {
margin: 0; }
.lae-heading.lae-alignleft {
text-align: left; }
.lae-heading.lae-alignright {
text-align: right;
max-width: none; }
.lae-heading .lae-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) {
.lae-heading .lae-title {
font-size: 24px;
line-height: 32px; } }
.lae-dark-bg .lae-heading .lae-title {
color: white; }
.lae-dark-bg .lae-heading .lae-subtitle {
color: rgba(255, 255, 255, 0.5); }
.lae-dark-bg .lae-heading .lae-text {
color: rgba(255, 255, 255, 0.7); }
.lae-heading.lae-alignleft .lae-title, .lae-heading.lae-alignright .lae-title {
margin: 0 0 20px; }
.lae-heading .lae-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) {
.lae-heading .lae-subtitle {
font-size: 11px;
line-height: 18px; } }
.lae-heading.lae-alignleft .lae-subtitle, .lae-heading.lae-alignright .lae-subtitle {
margin: 0 0 5px;
padding: 0; }
.lae-heading.lae-alignleft .lae-subtitle:before, .lae-heading.lae-alignleft .lae-subtitle:after, .lae-heading.lae-alignright .lae-subtitle:before, .lae-heading.lae-alignright .lae-subtitle:after {
display: none; } .lae-post-link-overlay {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
z-index: 1; }
.lae-terms a, .lae-post-title a {
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lae-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; }
.lae-post-featured-img-bg {
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin-bottom: 15px; }.lae-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lae-grid-container::after {
clear: both;
content: "";
display: block; }
.lae-grid-container .lae-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lae-grid-container.lae-grid-mobile-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-2 .lae-grid-item:nth-child(2n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-3 .lae-grid-item:nth-child(3n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-4 .lae-grid-item:nth-child(4n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-5 .lae-grid-item:nth-child(5n+1) {
clear: right; }
.lae-grid-container.lae-grid-mobile-6 .lae-grid-item:nth-child(6n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-mobile-6 .lae-grid-item:nth-child(6n+1) {
clear: right; } }
@media (min-width: 480px) and (max-width: 800px) {
.lae-grid-container.lae-grid-tablet-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-2 .lae-grid-item:nth-child(2n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-3 .lae-grid-item:nth-child(3n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-4 .lae-grid-item:nth-child(4n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-5 .lae-grid-item:nth-child(5n+1) {
clear: right; }
.lae-grid-container.lae-grid-tablet-6 .lae-grid-item:nth-child(6n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-tablet-6 .lae-grid-item:nth-child(6n+1) {
clear: right; } }
@media only screen and (min-width: 801px) {
.lae-grid-container.lae-grid-desktop-2 .lae-grid-item:nth-child(2n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-2 .lae-grid-item:nth-child(2n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-3 .lae-grid-item:nth-child(3n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-3 .lae-grid-item:nth-child(3n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-4 .lae-grid-item:nth-child(4n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-4 .lae-grid-item:nth-child(4n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-5 .lae-grid-item:nth-child(5n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-5 .lae-grid-item:nth-child(5n+1) {
clear: right; }
.lae-grid-container.lae-grid-desktop-6 .lae-grid-item:nth-child(6n+1) {
clear: left; }
.rtl .lae-grid-container.lae-grid-desktop-6 .lae-grid-item:nth-child(6n+1) {
clear: right; } }
.lae-grid-container.lae-grid-mobile-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lae-grid-container.lae-grid-tablet-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lae-grid-container.lae-grid-desktop-1 .lae-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-2 .lae-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-3 .lae-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-4 .lae-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-5 .lae-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lae-gapless-grid .lae-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-1 .lae-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-2 .lae-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-3 .lae-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-4 .lae-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-5 .lae-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lae-gapless-grid .lae-masonry { }
.lae-gapless-grid .lae-masonry .lae-grid-item {
clear: none !important; }
.lae-gapless-grid .lae-masonry .lae-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-mobile-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lae-gapless-grid .lae-masonry.lae-grid-tablet-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-tablet-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lae-gapless-grid .lae-masonry.lae-grid-desktop-1 .lae-grid-item.lae-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-2 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-3 .lae-grid-item.lae-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-4 .lae-grid-item.lae-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-5 .lae-grid-item.lae-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lae-gapless-grid .lae-masonry.lae-grid-desktop-6 .lae-grid-item.lae-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .rtl .lae-grid-container.lae-grid-mobile-1 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-2 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-3 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-4 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-5 .lae-grid-item, .rtl .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
float: right;
margin-left: 0;
margin-right: 20px; }
@media only screen and (min-width: 480px) {
.rtl .lae-grid-container.lae-grid-tablet-1 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-2 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-3 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-4 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-5 .lae-grid-item, .rtl .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
float: right;
margin-left: 0;
margin-right: 20px; } }
@media only screen and (min-width: 801px) {
.rtl .lae-grid-container.lae-grid-desktop-1 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-2 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-3 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-4 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-5 .lae-grid-item, .rtl .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
float: right;
margin-left: 0;
margin-right: 20px; } }
.rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-1 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-2 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-3 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-4 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-5 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-mobile-6 .lae-grid-item {
float: right;
margin-right: 0; }
@media only screen and (min-width: 480px) {
.rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-1 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-2 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-3 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-4 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-5 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-tablet-6 .lae-grid-item {
float: right;
margin-right: 0; } }
@media only screen and (min-width: 801px) {
.rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-1 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-2 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-3 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-4 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-5 .lae-grid-item, .rtl .lae-gapless-grid .lae-grid-container.lae-grid-desktop-6 .lae-grid-item {
float: right;
margin-right: 0; } }
.rtl .lae-gapless-grid .lae-masonry .lae-grid-sizer {
float: right;
margin-right: 0; }
.rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-1 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-2 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-3 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-4 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-5 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-mobile-6 .lae-grid-item.lae-wide {
float: right;
margin-right: 0; }
@media only screen and (min-width: 480px) {
.rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-1 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-2 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-3 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-4 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-5 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-tablet-6 .lae-grid-item.lae-wide {
float: right;
margin-right: 0; } }
@media only screen and (min-width: 801px) {
.rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-1 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-2 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-3 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-4 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-5 .lae-grid-item.lae-wide, .rtl .lae-gapless-grid .lae-masonry.lae-grid-desktop-6 .lae-grid-item.lae-wide {
float: right;
margin-right: 0; } }
.lae-carousel .lae-carousel-item{position:relative}.lae-carousel.lae-container{max-width:none}.lae-clients .lae-client{position:relative;border:1px solid #ddd;overflow:hidden}.lae-dark-bg .lae-clients .lae-client{border-color:#505050!important}.lae-clients .lae-client img{-webkit-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;width:100%;margin:0;display:block}.lae-clients .lae-client .lae-client-name{position:absolute;z-index:2;top:50%;left:0;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}.lae-clients .lae-client .lae-client-name a{color:#fff;text-decoration:none}.lae-clients .lae-client .lae-image-overlay{position:absolute;left:0;top:0;overflow:hidden;width:100%;height:100%;background:#000;-moz-opacity:0;opacity:0;-webkit-transition:opacity .4s ease-in-out 0s;transition:opacity .4s ease-in-out 0s}.lae-clients .lae-client:hover .lae-image-overlay{opacity:.7}.lae-dark-bg .lae-clients .lae-client:hover .lae-image-overlay{opacity:.8}.lae-clients .lae-client:hover .lae-client-name{opacity:1}.lae-heading.lae-style3{margin:0 auto 30px}.lae-heading.lae-style3 .lae-title{font-size:22px;line-height:32px;text-transform:uppercase;letter-spacing:1px}.lae-heading.lae-style3 .lae-title:after{width:35px;height:1px;background:#aaa;display:block;content:""}.lae-heading.lae-style3 .lae-title:after{margin:10px auto 20px}.lae-dark-bg .lae-heading.lae-style3 .lae-title:after{background:rgba(255,255,255,.5)}@media only screen and (max-width:767px){.lae-heading.lae-style3 .lae-title{font-size:16px;line-height:24px}}.lae-heading.lae-style3.lae-alignleft,.lae-heading.lae-style3.lae-alignright{margin:0 0 30px}.lae-heading.lae-style3.lae-alignleft .lae-title:after,.lae-heading.lae-style3.lae-alignright .lae-title:after{margin:10px 0 20px}.lae-message-box-container{-webkit-transition:height .25s cubic-bezier(.06, .51, .48, 11);transition:height .25s cubic-bezier(.06, .51, .48, 11)}.lae-message-box{display:-webkit-box;display:-ms-flexbox;display:flex;padding:40px;background:#d9edf7;-webkit-transition:opacity .2s ease,visibility .2s ease;transition:opacity .2s ease,visibility .2s ease}.lae-message-box.lae-hidden{opacity:0;visibility:hidden}.lae-message-box .lae-icon-wrapper,.lae-message-box .lae-image-wrapper{line-height:1;margin-right:20px}.lae-message-box .lae-icon-wrapper i{color:#748085;font-size:36px}.lae-message-box .lae-message-title{margin:0}.lae-message-box .lae-message-text{margin:0}.lae-message-box .lae-close-icon{position:absolute;right:15px;top:15px;line-height:1;cursor:pointer;-webkit-transition:color .25s ease-in-out;transition:color .25s ease-in-out}.lae-message-box .lae-close-icon i{color:#697073;font-size:24px}.odometer.odometer-auto-theme,.odometer.odometer-theme-default{display:inline-block;vertical-align:middle;position:relative}.odometer.odometer-auto-theme .odometer-digit,.odometer.odometer-theme-default .odometer-digit{display:inline-block;vertical-align:middle;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;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}.lae-odometers{clear:both;font-size:0}.lae-odometers .lae-odometer{display:inline-block;vertical-align:top;text-align:left;position:relative;margin-bottom:20px}.rtl .lae-odometers .lae-odometer{text-align:right}.lae-odometers .lae-odometer:last-child:after{border:none}.lae-odometers .lae-odometer .lae-prefix,.lae-odometers .lae-odometer .lae-suffix{display:inline;font-size:36px;line-height:48px;color:#333;vertical-align:middle}.lae-dark-bg .lae-odometers .lae-odometer .lae-prefix,.lae-dark-bg .lae-odometers .lae-odometer .lae-suffix{color:#e5e5e5}.lae-odometers .lae-odometer .lae-prefix{margin-right:5px;margin-left:5px}.lae-odometers .lae-odometer .lae-suffix{margin-left:5px}.lae-odometers .lae-odometer .lae-number{font-size:60px;line-height:72px;font-style:normal;text-transform:none;letter-spacing:2px;font-weight:900;color:#333;margin-bottom:10px}.lae-odometers .lae-odometer .lae-number span{font-size:60px}.lae-dark-bg .lae-odometers .lae-odometer .lae-number{color:#fff}.lae-odometers .lae-odometer .lae-stats-title{font-size:18px;line-height:28px;display:inline-block;color:#888}.lae-dark-bg .lae-odometers .lae-odometer .lae-stats-title{color:rgba(255,255,255,.7)}.lae-odometers .lae-odometer .lae-stats-title span{float:left;margin-right:15px}.rtl .lae-odometers .lae-odometer .lae-stats-title span{float:right;margin:0 0 0 15px}.lae-odometers .lae-odometer .lae-stats-title .lae-icon-wrapper i{font-size:32px;vertical-align:middle;color:#ccc}@media only screen and (max-width:960px){.lae-odometers .lae-odometer .lae-number{font-size:48px;line-height:56px;margin-bottom:0}.lae-odometers .lae-odometer .lae-number span{font-size:48px}.lae-odometers .lae-odometer .lae-stats-title{font-size:15px;line-height:26px}}@media only screen and (max-width:479px){.lae-odometers .lae-odometer{text-align:center}}.lae-piecharts{clear:both}.lae-piechart{position:relative;text-align:center;overflow:hidden}.lae-piechart canvas{position:relative;top:0;left:0;max-width:100%;margin:0 auto}.lae-piechart .lae-label{text-align:center;position:absolute;left:0;right:0;margin-left:auto;margin-right:auto;top:55%;max-width:65%;color:#888}.lae-dark-bg .lae-piechart .lae-label{color:rgba(255,255,255,.7)}.lae-piechart .lae-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}.lae-dark-bg .lae-piechart .lae-percentage span{color:#fff}.lae-piechart .lae-percentage sup{font-size:18px;vertical-align:middle}.lae-piechart.dark-bg .lae-label{color:#fff}.lae-piechart.dark-bg .lae-percentage span{color:#eee}@media only screen and (max-width:479px){.lae-piechart canvas{margin-bottom:15px}}.lae-portfolio-wrap{clear:both;overflow:hidden}.lae-portfolio-wrap .lae-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}.lae-portfolio-wrap .lae-portfolio-header.lae-no-heading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media only screen and (max-width:800px){.lae-portfolio-wrap .lae-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}}.lae-portfolio-wrap .lae-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}.rtl .lae-portfolio-wrap .lae-heading{margin:0 0 0 100px}.lae-dark-bg .lae-portfolio-wrap .lae-heading{color:#e5e5e5}@media only screen and (max-width:800px){.lae-portfolio-wrap .lae-heading{margin-bottom:30px}}.lae-portfolio-wrap .lae-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){.lae-portfolio-wrap .lae-taxonomy-filter{-webkit-align-self:flex-start;align-self:flex-start;-ms-flex-item-align:start}}.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item{position:relative;display:inline-block;margin:0 0 15px 0;padding:0;font-style:normal;border-bottom:1px solid #ddd}.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item{border-color:#444}.lae-portfolio-wrap .lae-taxonomy-filter .lae-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}.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a{color:#999}.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a:hover{color:#222}.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a:hover{color:#fff}@media only screen and (max-width:479px){.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a{padding:0 10px 8px}}.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a{color:#222}.lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a{color:#fff}.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active:after{content:'';position:absolute;left:0;bottom:0;border-bottom:3px solid #f94213;width:100%}.lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item:last-child{margin-right:0}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .hentry{margin:0;padding:0;border:none;background:0 0;-webkit-box-shadow:none;box-shadow:none}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image{position:relative;overflow:hidden}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image img{display:block;width:100%;-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover img{-webkit-filter:brightness(50%);filter:brightness(50%)}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info{display:block;text-align:center}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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%)}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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){.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title{font-size:18px;line-height:26px}}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title a:hover{border-bottom:1px solid #ccc}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-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}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms a:hover{color:#fff}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info .lae-post-title,.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info .lae-terms{opacity:1}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-text-wrap{text-align:center;max-width:650px;margin:20px auto 0}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title{font-size:18px;line-height:26px;font-weight:400;margin-bottom:10px}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:after,.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:before{display:none}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a{-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s;color:#333}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover{color:#888}.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a{color:#e0e0e0}.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover{color:#fff}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span{display:inline-block;padding:0;margin:0;font-style:italic;color:#999}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:after{content:'//';padding-left:6px;padding-right:6px}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:first-child{border:none;padding-left:0}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:last-child:after{display:none}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span a{-webkit-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;font-style:normal}.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span{color:#707070}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary{margin:15px auto 0;padding:0}.lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before{width:35px;height:1px;background:#aaa;display:block;content:"";text-align:center;margin:0 auto 15px}.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary{color:#999}.lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before{background:#505050}.lae-portfolio-wrap .lae-portfolio-item .lae-read-more{margin:25px 0 0 0}.lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button){color:#333;font-size:12px;line-height:1;font-weight:600;text-transform:uppercase;display:block;padding:0;-webkit-transition:color .3s ease-in-out 0s;transition:color .3s ease-in-out 0s}.lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button):hover{color:#666}.lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button):after{content:'›';display:inline-block;margin-left:7px}.rtl .lae-portfolio-wrap .lae-portfolio-item .lae-read-more a:not(.lae-button):after{margin:0 7px 0 0}.lae-posts-carousel{clear:both;max-width:none}@media only screen and (min-width:1024px){.lae-posts-carousel{max-width:96%}}.lae-posts-carousel.lae-classic-skin .lae-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,.1);box-shadow:0 1px 3px rgba(0,0,0,.1);overflow:hidden}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .hentry:hover{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2)}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image{position:relative;overflow:hidden}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-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%}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image:hover img{-webkit-filter:brightness(50%);filter:brightness(50%)}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info{display:block;text-align:center}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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%)}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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){.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title{font-size:18px;line-height:26px}}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title a:hover{border-bottom:2px solid #ccc}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-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}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms a:hover{color:#fff}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-post-title,.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-terms{opacity:1}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap{text-align:center;max-width:650px;margin:0 auto;padding:25px 15px}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px;font-size:16px;line-height:24px;margin-bottom:10px}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:after,.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:before{display:none}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a{color:#333;-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a:hover{color:#888}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span{display:inline-block;padding:0;margin:0;font-style:italic;color:#999}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span a{-webkit-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;font-style:normal}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:after{content:'//';padding-left:6px;padding-right:6px}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:first-child{border:none;padding-left:0}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:last-child:after{display:none}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary{padding:0;margin:10px auto 0}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary:before{width:35px;height:1px;background:#aaa;display:block;content:"";text-align:center;margin:0 auto 15px}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list{-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after{width:35px;height:1px;background:#aaa;display:block;content:""}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after{text-align:center;margin:10px auto 10px}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list a{font-style:italic;-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s}.lae-posts-carousel.lae-classic-skin .lae-posts-carousel-item .type-post .lae-entry-text-wrap .entry-summary:before{display:none}.lae-posts-carousel .lae-posts-carousel-item .lae-read-more{margin:25px 0 0 0}.lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button){color:#333;font-size:12px;line-height:1;font-weight:600;text-transform:uppercase;display:block;padding:0;-webkit-transition:color .3s ease-in-out 0s;transition:color .3s ease-in-out 0s}.lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button):hover{color:#666}.lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button):after{content:'›';display:inline-block;margin-left:7px}.rtl .lae-posts-carousel .lae-posts-carousel-item .lae-read-more a:not(.lae-button):after{margin:0 7px 0 0}.lae-posts-gridbox-slider .slick-next:before,.lae-posts-gridbox-slider .slick-prev:before,.lae-posts-multislider .slick-next:before,.lae-posts-multislider .slick-prev:before,.lae-posts-slider .slick-next:before,.lae-posts-slider .slick-prev:before{display:block;font-size:inherit;line-height:inherit;color:inherit;font-family:lae-icomoon!important;margin:0;padding:0}.lae-posts-gridbox-slider .slick-prev:before,.lae-posts-multislider .slick-prev:before,.lae-posts-slider .slick-prev:before{content:"\f104"}.lae-posts-gridbox-slider .slick-next:before,.lae-posts-multislider .slick-next:before,.lae-posts-slider .slick-next:before{content:"\f105"}.lae-posts-gridbox-slider .slick-next,.lae-posts-gridbox-slider .slick-prev,.lae-posts-multislider .slick-next,.lae-posts-multislider .slick-prev,.lae-posts-slider .slick-next,.lae-posts-slider .slick-prev{cursor:pointer;width:34px;height:34px;display:inline-block;vertical-align:top;font-size:18px;position:absolute;top:auto;right:auto;left:auto;bottom:auto;z-index:10;line-height:34px;text-align:center;text-decoration:none;-webkit-transition:all .3s;transition:all .3s;border:none;outline:0;padding:0;margin:0}.lae-posts-gridbox-slider .slick-next:hover:before,.lae-posts-gridbox-slider .slick-prev:hover:before,.lae-posts-multislider .slick-next:hover:before,.lae-posts-multislider .slick-prev:hover:before,.lae-posts-slider .slick-next:hover:before,.lae-posts-slider .slick-prev:hover:before{color:inherit}.lae-slider-arrow-placement-middle-center .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-middle-center .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-middle-center .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-middle-center .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-middle-center .lae-posts-slider .slick-next,.lae-slider-arrow-placement-middle-center .lae-posts-slider .slick-prev{top:50%;margin-top:-18px}.lae-slider-arrow-placement-middle-center .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-middle-center .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-middle-center .lae-posts-slider .slick-prev{left:10px}.lae-slider-arrow-placement-middle-center .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-middle-center .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-middle-center .lae-posts-slider .slick-next{right:10px}.lae-slider-arrow-placement-middle-center.lae-slider-arrow-shape-square .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-middle-center.lae-slider-arrow-shape-square .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-middle-center.lae-slider-arrow-shape-square .lae-posts-slider .slick-prev{left:0}.lae-slider-arrow-placement-middle-center.lae-slider-arrow-shape-square .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-middle-center.lae-slider-arrow-shape-square .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-middle-center.lae-slider-arrow-shape-square .lae-posts-slider .slick-next{right:0}.lae-slider-arrow-placement-bottom-center .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-bottom-center .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-bottom-center .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-bottom-center .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-bottom-center .lae-posts-slider .slick-next,.lae-slider-arrow-placement-bottom-center .lae-posts-slider .slick-prev{bottom:0;left:50%;-webkit-transform:translateY(42px);transform:translateY(42px)}.lae-slider-arrow-placement-bottom-center .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-bottom-center .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-bottom-center .lae-posts-slider .slick-prev{margin-left:-36px}.lae-slider-arrow-placement-bottom-center .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-bottom-center .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-bottom-center .lae-posts-slider .slick-next{margin-left:2px}.lae-slider-arrow-placement-bottom-right .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-bottom-right .lae-posts-slider .slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-slider .slick-prev{bottom:20px}.lae-slider-arrow-placement-bottom-right .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-bottom-right .lae-posts-slider .slick-prev{right:65px}.lae-slider-arrow-placement-bottom-right .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-slider .slick-next{right:25px}.lae-slider-arrow-placement-bottom-left .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-bottom-left .lae-posts-slider .slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-slider .slick-prev{bottom:20px}.lae-slider-arrow-placement-bottom-left .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-bottom-left .lae-posts-slider .slick-prev{left:25px}.lae-slider-arrow-placement-bottom-left .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-slider .slick-next{left:65px}.lae-slider-arrow-placement-top-right .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-top-right .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-top-right .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-top-right .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-top-right .lae-posts-slider .slick-next,.lae-slider-arrow-placement-top-right .lae-posts-slider .slick-prev{top:20px}.lae-slider-arrow-placement-top-right .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-top-right .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-top-right .lae-posts-slider .slick-prev{right:65px}.lae-slider-arrow-placement-top-right .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-top-right .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-top-right .lae-posts-slider .slick-next{right:25px}.lae-slider-arrow-placement-top-left .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-top-left .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-top-left .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-top-left .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-top-left .lae-posts-slider .slick-next,.lae-slider-arrow-placement-top-left .lae-posts-slider .slick-prev{top:20px}.lae-slider-arrow-placement-top-left .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-placement-top-left .lae-posts-multislider .slick-prev,.lae-slider-arrow-placement-top-left .lae-posts-slider .slick-prev{left:25px}.lae-slider-arrow-placement-top-left .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-placement-top-left .lae-posts-multislider .slick-next,.lae-slider-arrow-placement-top-left .lae-posts-slider .slick-next{left:65px}.lae-slider-arrow-shape-square .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-shape-square .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-shape-square .lae-posts-multislider .slick-next,.lae-slider-arrow-shape-square .lae-posts-multislider .slick-prev,.lae-slider-arrow-shape-square .lae-posts-slider .slick-next,.lae-slider-arrow-shape-square .lae-posts-slider .slick-prev{border-radius:0}.lae-slider-arrow-shape-rounded-corners .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-shape-rounded-corners .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-shape-rounded-corners .lae-posts-multislider .slick-next,.lae-slider-arrow-shape-rounded-corners .lae-posts-multislider .slick-prev,.lae-slider-arrow-shape-rounded-corners .lae-posts-slider .slick-next,.lae-slider-arrow-shape-rounded-corners .lae-posts-slider .slick-prev{border-radius:5px}.lae-slider-arrow-shape-circle .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-shape-circle .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-shape-circle .lae-posts-multislider .slick-next,.lae-slider-arrow-shape-circle .lae-posts-multislider .slick-prev,.lae-slider-arrow-shape-circle .lae-posts-slider .slick-next,.lae-slider-arrow-shape-circle .lae-posts-slider .slick-prev{border-radius:50%}.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider .slick-prev,.lae-slider-arrow-visibility-on-hover .lae-posts-slider .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-slider .slick-prev{opacity:0}@media only screen and (max-width:1200px){.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider .slick-prev,.lae-slider-arrow-visibility-on-hover .lae-posts-slider .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-slider .slick-prev{opacity:.8}}.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider:hover .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider:hover .slick-prev,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider:hover .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider:hover .slick-prev,.lae-slider-arrow-visibility-on-hover .lae-posts-slider:hover .slick-next,.lae-slider-arrow-visibility-on-hover .lae-posts-slider:hover .slick-prev{opacity:.8}.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider .slick-next:hover,.lae-slider-arrow-visibility-on-hover .lae-posts-gridbox-slider .slick-prev:hover,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider .slick-next:hover,.lae-slider-arrow-visibility-on-hover .lae-posts-multislider .slick-prev:hover,.lae-slider-arrow-visibility-on-hover .lae-posts-slider .slick-next:hover,.lae-slider-arrow-visibility-on-hover .lae-posts-slider .slick-prev:hover{opacity:1}.lae-slider-arrow-visibility-always .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-visibility-always .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-visibility-always .lae-posts-multislider .slick-next,.lae-slider-arrow-visibility-always .lae-posts-multislider .slick-prev,.lae-slider-arrow-visibility-always .lae-posts-slider .slick-next,.lae-slider-arrow-visibility-always .lae-posts-slider .slick-prev{opacity:.8}.lae-slider-arrow-visibility-always .lae-posts-gridbox-slider .slick-next:hover,.lae-slider-arrow-visibility-always .lae-posts-gridbox-slider .slick-prev:hover,.lae-slider-arrow-visibility-always .lae-posts-multislider .slick-next:hover,.lae-slider-arrow-visibility-always .lae-posts-multislider .slick-prev:hover,.lae-slider-arrow-visibility-always .lae-posts-slider .slick-next:hover,.lae-slider-arrow-visibility-always .lae-posts-slider .slick-prev:hover{opacity:1}.lae-slider-arrow-color-light .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-color-light .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-color-light .lae-posts-multislider .slick-next,.lae-slider-arrow-color-light .lae-posts-multislider .slick-prev,.lae-slider-arrow-color-light .lae-posts-slider .slick-next,.lae-slider-arrow-color-light .lae-posts-slider .slick-prev{background:#fff;color:#010101}.lae-slider-arrow-color-dark .lae-posts-gridbox-slider .slick-next,.lae-slider-arrow-color-dark .lae-posts-gridbox-slider .slick-prev,.lae-slider-arrow-color-dark .lae-posts-multislider .slick-next,.lae-slider-arrow-color-dark .lae-posts-multislider .slick-prev,.lae-slider-arrow-color-dark .lae-posts-slider .slick-next,.lae-slider-arrow-color-dark .lae-posts-slider .slick-prev{background:#000;color:#fff}.lae-posts-gridbox-slider .lae-post-meta,.lae-posts-multislider .lae-post-meta,.lae-posts-slider .lae-post-meta{margin-top:15px}.lae-posts-slider .slick-slide>div{line-height:0}.lae-posts-slider .lae-post-entry{position:relative;line-height:normal}.lae-posts-slider .lae-post-featured-img-bg{width:100%;height:400px}.lae-posts-slider .lae-post-featured-img-bg{margin:0}.lae-posts-slider-style-1 .lae-post-text .lae-post-meta,.lae-posts-slider-style-1 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-1 .lae-post-text .lae-post-summary,.lae-posts-slider-style-1 .lae-post-text .lae-post-title a,.lae-posts-slider-style-1 .lae-post-text .lae-read-more,.lae-posts-slider-style-1 .lae-post-text .lae-terms,.lae-posts-slider-style-1 .lae-post-text .lae-terms a,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-2 .lae-post-text .lae-post-summary,.lae-posts-slider-style-2 .lae-post-text .lae-post-title a,.lae-posts-slider-style-2 .lae-post-text .lae-read-more,.lae-posts-slider-style-2 .lae-post-text .lae-terms,.lae-posts-slider-style-2 .lae-post-text .lae-terms a,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-3 .lae-post-text .lae-post-summary,.lae-posts-slider-style-3 .lae-post-text .lae-post-title a,.lae-posts-slider-style-3 .lae-post-text .lae-read-more,.lae-posts-slider-style-3 .lae-post-text .lae-terms,.lae-posts-slider-style-3 .lae-post-text .lae-terms a,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-7 .lae-post-text .lae-post-summary,.lae-posts-slider-style-7 .lae-post-text .lae-post-title a,.lae-posts-slider-style-7 .lae-post-text .lae-read-more,.lae-posts-slider-style-7 .lae-post-text .lae-terms,.lae-posts-slider-style-7 .lae-post-text .lae-terms a,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-8 .lae-post-text .lae-post-summary,.lae-posts-slider-style-8 .lae-post-text .lae-post-title a,.lae-posts-slider-style-8 .lae-post-text .lae-read-more,.lae-posts-slider-style-8 .lae-post-text .lae-terms,.lae-posts-slider-style-8 .lae-post-text .lae-terms a{color:#fff}.lae-posts-slider-style-1 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta a{color:rgba(255,255,255,.75)}.lae-posts-slider-style-1 .lae-post-text .lae-terms a:hover,.lae-posts-slider-style-1 .lae-post-text .lae-terms:hover,.lae-posts-slider-style-2 .lae-post-text .lae-terms a:hover,.lae-posts-slider-style-2 .lae-post-text .lae-terms:hover,.lae-posts-slider-style-3 .lae-post-text .lae-terms a:hover,.lae-posts-slider-style-3 .lae-post-text .lae-terms:hover,.lae-posts-slider-style-7 .lae-post-text .lae-terms a:hover,.lae-posts-slider-style-7 .lae-post-text .lae-terms:hover,.lae-posts-slider-style-8 .lae-post-text .lae-terms a:hover,.lae-posts-slider-style-8 .lae-post-text .lae-terms:hover{color:#ddd}.lae-posts-slider-style-1 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-1 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-1 .lae-post-text .lae-read-more,.lae-posts-slider-style-1 .lae-post-text .lae-terms a,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-2 .lae-post-text .lae-read-more,.lae-posts-slider-style-2 .lae-post-text .lae-terms a,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-3 .lae-post-text .lae-read-more,.lae-posts-slider-style-3 .lae-post-text .lae-terms a,.lae-posts-slider-style-4 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-4 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-4 .lae-post-text .lae-read-more,.lae-posts-slider-style-4 .lae-post-text .lae-terms a,.lae-posts-slider-style-5 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-5 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-5 .lae-post-text .lae-read-more,.lae-posts-slider-style-5 .lae-post-text .lae-terms a,.lae-posts-slider-style-6 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-6 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-6 .lae-post-text .lae-read-more,.lae-posts-slider-style-6 .lae-post-text .lae-terms a,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-7 .lae-post-text .lae-read-more,.lae-posts-slider-style-7 .lae-post-text .lae-terms a,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta a,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta span,.lae-posts-slider-style-8 .lae-post-text .lae-read-more,.lae-posts-slider-style-8 .lae-post-text .lae-terms a{text-transform:uppercase;font-size:.625rem}.lae-posts-slider-style-1 .lae-post-text .lae-post-title,.lae-posts-slider-style-2 .lae-post-text .lae-post-title,.lae-posts-slider-style-3 .lae-post-text .lae-post-title,.lae-posts-slider-style-4 .lae-post-text .lae-post-title,.lae-posts-slider-style-5 .lae-post-text .lae-post-title,.lae-posts-slider-style-6 .lae-post-text .lae-post-title,.lae-posts-slider-style-7 .lae-post-text .lae-post-title,.lae-posts-slider-style-8 .lae-post-text .lae-post-title{margin:10px 0 0 0}.lae-posts-slider-style-1 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-4 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-5 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-6 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta span+span,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta span+span{margin:0 0 0 5px}.lae-posts-slider-style-1 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-2 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-3 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-4 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-5 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-6 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-7 .lae-post-text .lae-post-meta span+span:before,.lae-posts-slider-style-8 .lae-post-text .lae-post-meta span+span:before{margin-right:5px;content:"\b7"}.lae-posts-slider-style-1 .lae-post-text .lae-terms,.lae-posts-slider-style-1 .lae-post-text .lae-terms a,.lae-posts-slider-style-2 .lae-post-text .lae-terms,.lae-posts-slider-style-2 .lae-post-text .lae-terms a,.lae-posts-slider-style-3 .lae-post-text .lae-terms,.lae-posts-slider-style-3 .lae-post-text .lae-terms a,.lae-posts-slider-style-4 .lae-post-text .lae-terms,.lae-posts-slider-style-4 .lae-post-text .lae-terms a,.lae-posts-slider-style-5 .lae-post-text .lae-terms,.lae-posts-slider-style-5 .lae-post-text .lae-terms a,.lae-posts-slider-style-6 .lae-post-text .lae-terms,.lae-posts-slider-style-6 .lae-post-text .lae-terms a,.lae-posts-slider-style-7 .lae-post-text .lae-terms,.lae-posts-slider-style-7 .lae-post-text .lae-terms a,.lae-posts-slider-style-8 .lae-post-text .lae-terms,.lae-posts-slider-style-8 .lae-post-text .lae-terms a{border:none}.lae-posts-slider-style-1 .lae-post-text .lae-post-summary,.lae-posts-slider-style-2 .lae-post-text .lae-post-summary,.lae-posts-slider-style-3 .lae-post-text .lae-post-summary,.lae-posts-slider-style-4 .lae-post-text .lae-post-summary,.lae-posts-slider-style-5 .lae-post-text .lae-post-summary,.lae-posts-slider-style-6 .lae-post-text .lae-post-summary,.lae-posts-slider-style-7 .lae-post-text .lae-post-summary,.lae-posts-slider-style-8 .lae-post-text .lae-post-summary{margin-top:20px;font-size:.875rem;line-height:1.5}.lae-posts-slider-style-1 .lae-post-featured-img-bg:before,.lae-posts-slider-style-2 .lae-post-featured-img-bg:before{position:absolute;top:0;right:0;bottom:0;left:0;content:"";-webkit-transition:all .2s ease;transition:all .2s ease;background-color:rgba(40,40,40,.125)}.lae-posts-slider-style-1 .lae-post-text-wrap,.lae-posts-slider-style-3 .lae-post-text-wrap,.lae-posts-slider-style-4 .lae-post-text-wrap{position:absolute;top:50%;width:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;padding:0 25px;z-index:99}.lae-posts-slider-style-1 .lae-post-text-wrap{position:absolute;top:50%;width:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;padding:0 25px;z-index:99}.lae-posts-slider-style-1 .lae-post-text{position:relative;display:block;text-align:center;max-width:680px;width:100%;margin:0 auto;padding:20px 12px}.lae-posts-slider-style-1 .lae-post-text .lae-post-title a{font-size:3rem;line-height:1.2}@media only screen and (max-width:640px){.lae-posts-slider-style-1 .lae-post-text .lae-post-title a{font-size:2.25rem}}.lae-posts-slider-style-1 .lae-post-text .lae-read-more{border:none;background:#282828;color:#eee;padding:8px 16px;margin-top:25px}.lae-posts-slider-style-1 .lae-post-text .lae-read-more:hover{background:#4e4e4e}.lae-posts-slider-style-2 .lae-post-text-wrap{position:absolute;bottom:0;width:100%;margin:0;z-index:99}.lae-posts-slider-style-2 .lae-post-text{position:relative;display:block;text-align:left;max-width:680px;width:100%;margin:0;padding:42px}.lae-posts-slider-style-2 .lae-post-text .lae-post-title a{font-size:2.25rem;line-height:1.2;font-weight:400}@media only screen and (max-width:640px){.lae-posts-slider-style-2 .lae-post-text .lae-post-title a{font-size:1.75px}}.lae-posts-gridbox-item,.lae-posts-multislider-item{position:relative}.lae-posts-gridbox-item .lae-post-entry,.lae-posts-multislider-item .lae-post-entry{height:100%}.lae-posts-gridbox-item .lae-post-featured-img-bg,.lae-posts-multislider-item .lae-post-featured-img-bg{height:100%}.lae-posts-gridbox-item .lae-post-featured-img-bg,.lae-posts-multislider-item .lae-post-featured-img-bg{position:relative;overflow:hidden;background-size:cover;background-repeat:no-repeat;background-position:center center;-webkit-transition:all .2s linear;transition:all .2s linear}.lae-posts-gridbox-item .lae-post-featured-img-bg::before,.lae-posts-multislider-item .lae-post-featured-img-bg::before{position:absolute;z-index:0;left:0;top:0;right:0;bottom:0;content:'';background-color:rgba(40,40,40,.125);-webkit-transition:all .2s linear;transition:all .2s linear}.lae-posts-gridbox-item .lae-post-text .lae-post-title a,.lae-posts-multislider-item .lae-post-text .lae-post-title a{margin:0}.lae-posts-gridbox-item .lae-post-text>*+*,.lae-posts-multislider-item .lae-post-text>*+*{margin:10px 0 0 0}.lae-posts-gridbox-item .lae-post-text .lae-post-meta,.lae-posts-multislider-item .lae-post-text .lae-post-meta{margin-top:15px}.lae-posts-gridbox-item .lae-post-text .lae-post-meta span+span,.lae-posts-multislider-item .lae-post-text .lae-post-meta span+span{margin:0 0 0 5px}.lae-posts-gridbox-item .lae-post-text .lae-post-meta span+span:before,.lae-posts-multislider-item .lae-post-text .lae-post-meta span+span:before{margin-right:5px;content:"\b7"}.lae-posts-gridbox-item .lae-post-text,.lae-posts-multislider-item .lae-post-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.lae-posts-gridbox-item .lae-post-text .lae-terms,.lae-posts-gridbox-item .lae-post-text .lae-terms a,.lae-posts-multislider-item .lae-post-text .lae-terms,.lae-posts-multislider-item .lae-post-text .lae-terms a{color:#999;font-size:.625rem;line-height:1;text-transform:uppercase}.lae-posts-gridbox-item .lae-post-text .lae-terms a:hover,.lae-posts-gridbox-item .lae-post-text .lae-terms:hover,.lae-posts-multislider-item .lae-post-text .lae-terms a:hover,.lae-posts-multislider-item .lae-post-text .lae-terms:hover{color:#666}.lae-posts-gridbox-item .lae-post-text .lae-post-title,.lae-posts-multislider-item .lae-post-text .lae-post-title{font-size:0;line-height:1}.lae-posts-gridbox-item .lae-post-text .lae-post-title a,.lae-posts-multislider-item .lae-post-text .lae-post-title a{color:#000;font-size:1.3125rem;line-height:1.2}.lae-posts-gridbox-item .lae-post-text .lae-post-title a:hover,.lae-posts-multislider-item .lae-post-text .lae-post-title a:hover{color:#333}.lae-posts-gridbox-item .lae-post-text .lae-post-meta,.lae-posts-multislider-item .lae-post-text .lae-post-meta{font-size:.625rem;line-height:1.5}.lae-posts-gridbox-item .lae-post-text .lae-post-meta span,.lae-posts-multislider-item .lae-post-text .lae-post-meta span{color:#777;font-size:.625rem;line-height:1.2;text-transform:uppercase}.lae-posts-gridbox-item .lae-post-text .lae-post-meta span a,.lae-posts-multislider-item .lae-post-text .lae-post-meta span a{color:#888}.lae-posts-gridbox-item .lae-post-text .lae-post-meta span a:hover,.lae-posts-multislider-item .lae-post-text .lae-post-meta span a:hover{color:#555}.lae-posts-gridbox-item .lae-post-text .lae-post-summary,.lae-posts-multislider-item .lae-post-text .lae-post-summary{font-size:.875rem;line-height:1.5}.lae-posts-gridbox-item .lae-post-text .lae-read-more,.lae-posts-multislider-item .lae-post-text .lae-read-more{line-height:1;color:#fff;border:1px solid rgba(0,0,0,.75);background:rgba(0,0,0,.75)}.lae-posts-gridbox-item .lae-post-text .lae-read-more:hover,.lae-posts-multislider-item .lae-post-text .lae-read-more:hover{border:1px solid rgba(0,0,0,.95);background:rgba(0,0,0,.95)}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text,.lae-posts-multislider-item .lae-post-overlay .lae-post-text{z-index:99;position:absolute;left:0;right:0;padding:20px}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-terms,.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-terms a,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-terms,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-terms a{color:#fff;color:rgba(255,255,255,.9)}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-terms a:hover,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-terms a:hover{text-decoration:underline}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-title,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-title{color:#fff}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-title a,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-title a{color:#fff}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-title a:hover,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-title a:hover{text-decoration:underline}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-meta,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-meta{color:#fff}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-meta span,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-meta span{color:#fff}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-meta span a,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-meta span a{color:#dedede}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-meta span a:hover,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-meta span a:hover{color:#fff}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-content,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-content{color:#fff}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-content .lae-read-more,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-content .lae-read-more{color:#fff;border:1px solid #fff;background:0 0}.lae-posts-gridbox-item .lae-post-overlay .lae-post-text .lae-post-content .lae-read-more:hover,.lae-posts-multislider-item .lae-post-overlay .lae-post-text .lae-post-content .lae-read-more:hover{background:rgba(255,255,255,.3)}.lae-posts-gridbox-item.lae-align-top-center .lae-post-overlay .lae-post-text,.lae-posts-gridbox-item.lae-align-top-left .lae-post-overlay .lae-post-text,.lae-posts-gridbox-item.lae-align-top-right .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-top-center .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-top-left .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-top-right .lae-post-overlay .lae-post-text{top:0}.lae-posts-gridbox-item.lae-align-middle-center .lae-post-overlay .lae-post-text,.lae-posts-gridbox-item.lae-align-middle-left .lae-post-overlay .lae-post-text,.lae-posts-gridbox-item.lae-align-middle-right .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-middle-center .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-middle-left .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-middle-right .lae-post-overlay .lae-post-text{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.lae-posts-gridbox-item.lae-align-bottom-center .lae-post-overlay .lae-post-text,.lae-posts-gridbox-item.lae-align-bottom-left .lae-post-overlay .lae-post-text,.lae-posts-gridbox-item.lae-align-bottom-right .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-bottom-center .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-bottom-left .lae-post-overlay .lae-post-text,.lae-posts-multislider-item.lae-align-bottom-right .lae-post-overlay .lae-post-text{bottom:0}.lae-posts-gridbox-item.lae-align-bottom-left .lae-post-text,.lae-posts-gridbox-item.lae-align-left .lae-post-text,.lae-posts-gridbox-item.lae-align-middle-left .lae-post-text,.lae-posts-gridbox-item.lae-align-top-left .lae-post-text,.lae-posts-multislider-item.lae-align-bottom-left .lae-post-text,.lae-posts-multislider-item.lae-align-left .lae-post-text,.lae-posts-multislider-item.lae-align-middle-left .lae-post-text,.lae-posts-multislider-item.lae-align-top-left .lae-post-text{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;text-align:left}.lae-posts-gridbox-item.lae-align-bottom-center .lae-post-text,.lae-posts-gridbox-item.lae-align-center .lae-post-text,.lae-posts-gridbox-item.lae-align-middle-center .lae-post-text,.lae-posts-gridbox-item.lae-align-top-center .lae-post-text,.lae-posts-multislider-item.lae-align-bottom-center .lae-post-text,.lae-posts-multislider-item.lae-align-center .lae-post-text,.lae-posts-multislider-item.lae-align-middle-center .lae-post-text,.lae-posts-multislider-item.lae-align-top-center .lae-post-text{-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.lae-posts-gridbox-item.lae-align-bottom-right .lae-post-text,.lae-posts-gridbox-item.lae-align-middle-right .lae-post-text,.lae-posts-gridbox-item.lae-align-right .lae-post-text,.lae-posts-gridbox-item.lae-align-top-right .lae-post-text,.lae-posts-multislider-item.lae-align-bottom-right .lae-post-text,.lae-posts-multislider-item.lae-align-middle-right .lae-post-text,.lae-posts-multislider-item.lae-align-right .lae-post-text,.lae-posts-multislider-item.lae-align-top-right .lae-post-text{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;text-align:right}.lae-posts-gridbox-slider-style-1 .lae-posts-gridbox{display:grid;grid-gap:1px;grid-template-columns:1fr;grid-template-areas:'tile1' 'tile1' 'tile2' 'tile3'}.lae-posts-gridbox-slider-style-1 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(1){grid-area:tile1}.lae-posts-gridbox-slider-style-1 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(2){grid-area:tile2}.lae-posts-gridbox-slider-style-1 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(3){grid-area:tile3}@media (min-width:760px){.lae-posts-gridbox-slider-style-1 .lae-posts-gridbox{display:grid;grid-template-columns:1fr 1fr;grid-template-areas:'tile1 tile1' 'tile2 tile3';grid-gap:2px}}@media (min-width:1024px){.lae-posts-gridbox-slider-style-1 .lae-posts-gridbox{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;grid-template-areas:'tile1 tile1 tile2 tile2' 'tile1 tile1 tile3 tile3';grid-gap:2px}}.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox{display:grid;grid-gap:1px;grid-template-columns:1fr;grid-template-areas:'tile1' 'tile1' 'tile2' 'tile3' 'tile4' 'tile5'}.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(1){grid-area:tile1}.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(2){grid-area:tile2}.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(3){grid-area:tile3}.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(4){grid-area:tile4}.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(5){grid-area:tile5}@media (min-width:760px){.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox{display:grid;grid-template-columns:1fr 1fr;grid-template-areas:'tile1 tile1' 'tile1 tile1' 'tile2 tile3' 'tile4 tile5';grid-gap:2px}}@media (min-width:1024px){.lae-posts-gridbox-slider-style-2 .lae-posts-gridbox{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;grid-template-areas:'tile1 tile1 tile2 tile3' 'tile1 tile1 tile4 tile5';grid-gap:2px}}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox{display:grid;grid-gap:1px;grid-template-columns:1fr;grid-template-areas:'tile1' 'tile2' 'tile3' 'tile4' 'tile5'}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(1){grid-area:tile1}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(2){grid-area:tile2}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(3){grid-area:tile3}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(4){grid-area:tile4}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item:nth-child(5){grid-area:tile5}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item .lae-post-text .lae-post-content .lae-post-summary{display:none}@media (min-width:760px){.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox{display:grid;grid-template-columns:1fr 1fr;grid-template-areas:'tile1 tile1' 'tile2 tile3' 'tile4 tile5';grid-gap:2px}}@media (min-width:1024px){.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox{display:grid;grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;grid-template-areas:'tile1 tile1 tile1 tile2 tile2 tile2' 'tile3 tile3 tile4 tile4 tile5 tile5';grid-gap:2px}.lae-posts-gridbox-slider-style-3 .lae-posts-gridbox .lae-posts-gridbox-item .lae-post-text .lae-post-content .lae-post-summary{display:block}}.lae-posts-multislider-style-1 .lae-post-featured-img-bg{margin-bottom:0}.lae-slider-arrow-placement-bottom-left .lae-posts-multislider-style-2 button.slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider-style-2 button.slick-prev,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider-style-3 button.slick-next,.lae-slider-arrow-placement-bottom-left .lae-posts-multislider-style-3 button.slick-prev,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider-style-2 button.slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider-style-2 button.slick-prev,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider-style-3 button.slick-next,.lae-slider-arrow-placement-bottom-right .lae-posts-multislider-style-3 button.slick-prev{bottom:-35px}.lae-slider-arrow-placement-middle-center .lae-posts-multislider-style-3 button.slick-next,.lae-slider-arrow-placement-middle-center .lae-posts-multislider-style-3 button.slick-prev{margin-top:-6px}.lae-posts-multislider-style-3 .lae-post-featured-img-bg{margin-bottom:0;border-radius:5px 5px 0 0}.lae-posts-multislider-style-3 .lae-post-text-wrap{padding:25px;border:1px solid #e4e4e4;-webkit-box-shadow:0 3px 12px 0 rgba(0,0,0,.03);box-shadow:0 3px 12px 0 rgba(0,0,0,.03);border-radius:0 0 5px 5px;margin-bottom:12px}.lae-pricing-table{clear:both}.lae-pricing-table .lae-pricing-plan{float:left;padding:10px}.lae-pricing-table{padding:0}.lae-pricing-table .lae-top-header{padding:15px 0;background-color:#494949;border-bottom:1px solid #2c2b2b}.lae-pricing-table .lae-top-header .lae-plan-name{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px;font-size:20px;line-height:32px;color:#fefefe;margin:0}.lae-pricing-table .lae-top-header img{margin-top:15px}.lae-pricing-table .lae-top-header .lae-tagline{display:block;font-size:15px;line-height:24px;color:#ededed;text-transform:none;text-align:center;margin-bottom:5px}.lae-pricing-table .lae-pricing-plan{background:#fff;padding:0;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .1s ease-in-out 0s;transition:all .1s ease-in-out 0s;margin-bottom:20px}.lae-pricing-table .lae-pricing-plan:hover .lae-purchase{background:#e5e5e5}.lae-pricing-table .lae-pricing-plan .lae-plan-price{color:#fff;font-size:22px;line-height:28px;font-weight:700;margin:0}.lae-pricing-table .lae-pricing-plan .lae-plan-price span{font-size:22px;line-height:32px}.lae-pricing-table .lae-plan-header{padding:30px 0 30px;background-color:#494949}.lae-pricing-table .lae-plan-price .lae-text{display:inline-block;padding:6px 25px;border-radius:25px;background:#2c2b2b}.lae-pricing-table .lae-plan-price sup{font-size:18px;line-height:32px;vertical-align:top;margin-right:2px;position:static}.lae-pricing-table .lae-plan-details{padding:15px 0;margin:0;border:1px solid #eee}.lae-pricing-table .lae-plan-details .lae-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}.lae-pricing-table .lae-plan-details .lae-pricing-item i{color:#777;font-size:18px;display:inline;margin-right:8px}.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-title{color:#838383;margin-bottom:10px}.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap{display:block}.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap:after{position:relative;content:"";background:#ddd;width:120px;height:1px;display:block;margin:12px auto 0}.lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value{color:#444;font-size:24px;line-height:32px;display:inline}.lae-pricing-table .lae-plan-details .lae-pricing-item s{color:#b4c9d3}.lae-pricing-table .lae-plan-details .lae-pricing-item:last-child .lae-value-wrap:after{display:none}.lae-pricing-table .lae-purchase{text-align:center;text-transform:uppercase;padding:15px;margin:0 auto;background:#f1f1f1;-webkit-transition:all .1s ease-in-out 0s;transition:all .1s ease-in-out 0s;border-left:1px solid #eee;border-right:1px solid #eee;border-bottom:1px solid #eee}.lae-pricing-table .lae-purchase a{padding:12px 25px;border-radius:5px;letter-spacing:0;font-size:16px;line-height:24px;letter-spacing:6px;font-weight:700}.lae-pricing-table .lae-pricing-plan.lae-highlight{background:#f5f5f5;margin-top:-10px}.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-plan-details{border-color:#e5e5e5}.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-top-header{padding:20px 0}.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-pricing-table .lae-top-header .lae-plan-name{color:#28c2ba}.lae-pricing-table .lae-pricing-plan.lae-highlight .lae-purchase{padding:20px 0;background-color:#e5e5e5;border-color:#ddd}.lae-services{clear:both}.lae-services .lae-service{margin-bottom:20px}.lae-services .lae-service .lae-icon-wrapper i{-webkit-transition:color .4s ease-in-out 0s;transition:color .4s ease-in-out 0s}.lae-services .lae-service .lae-icon-wrapper i:hover{color:#555}.lae-dark-bg .lae-services .lae-service .lae-icon-wrapper i:hover{color:#d5d5d5}.lae-services .lae-service .lae-service-text{font-size:15px;line-height:24px}.lae-dark-bg .lae-services .lae-service .lae-service-text{color:rgba(255,255,255,.7)}.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title{color:#fff}.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-service-details{color:rgba(255,255,255,.7)}.lae-services .lae-service .lae-service-text .lae-title-link .lae-title{-webkit-transition:color .3s ease-in-out 0s;transition:color .3s ease-in-out 0s}.lae-services .lae-service .lae-service-text .lae-title-link:hover .lae-title{color:#666}.lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title-link:hover .lae-title{color:rgba(255,255,255,.7)}.lae-services-style1 .lae-service .lae-icon-wrapper i{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;color:#888}.lae-dark-bg .lae-services-style1 .lae-service .lae-icon-wrapper i{color:#a5a5a5}.lae-dark-bg .lae-services-style1 .lae-service .lae-icon-wrapper i:hover{color:#c5c5c5}.lae-services-style1 .lae-service .lae-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}.lae-services-style1 .lae-service .lae-service-text{text-align:center;max-width:300px;margin:0 auto}.lae-services-style1 .lae-service .lae-service-text .lae-title{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px;margin-bottom:20px}.lae-services-style1 .lae-service:hover .lae-image-wrapper img{-webkit-transform:scale(.9,.9);transform:scale(.9,.9)}.lae-services-style2 .lae-service .lae-icon-wrapper i,.lae-services-style2 .lae-service .lae-image-wrapper img{float:left;margin-right:18px;color:#888}.rtl .lae-services-style2 .lae-service .lae-icon-wrapper i,.rtl .lae-services-style2 .lae-service .lae-image-wrapper img{float:right;margin:0 0 0 18px}.lae-dark-bg .lae-services-style2 .lae-service .lae-icon-wrapper i,.lae-dark-bg .lae-services-style2 .lae-service .lae-image-wrapper img{color:#a5a5a5}.lae-dark-bg .lae-services-style2 .lae-service .lae-icon-wrapper i:hover,.lae-dark-bg .lae-services-style2 .lae-service .lae-image-wrapper img:hover{color:#c5c5c5}.lae-services-style2 .lae-service .lae-icon-wrapper i{font-size:24px;line-height:32px}.lae-services-style2 .lae-service .lae-service-text .lae-title{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px;margin-bottom:20px}.lae-services-style3 .lae-service .lae-icon-wrapper i{display:block;text-align:left;font-size:80px;line-height:1;margin-bottom:25px;color:#555}.rtl .lae-services-style3 .lae-service .lae-icon-wrapper i{text-align:right}.lae-services-style3 .lae-service .lae-icon-wrapper i:hover{color:#888}.lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper i{color:#c5c5c5}.lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper i:hover{color:#e5e5e5}.lae-services-style3 .lae-service .lae-image-wrapper img{display:block;max-width:100%;text-align:left;margin-bottom:25px}.lae-services-style3 .lae-service .lae-service-text{text-align:left;max-width:300px;margin:0;font-size:14px;line-height:26px;color:#888}.rtl .lae-services-style3 .lae-service .lae-service-text{text-align:right}.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list{padding:0;margin:0;border:none}.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li{border-bottom:1px solid #eee;position:relative;padding:0;margin:0;list-style:none;line-height:42px}.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:hover{padding:0}.lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li{border-color:#333}.lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before{font-family:lae-icomoon!important;speak:none;font-style:normal;font-weight:400;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:0 0;float:none;vertical-align:middle;margin:0 15px 0 0;content:"\e917";color:#bbb;font-size:12px;line-height:1}.rtl .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before{display:none}.lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before{color:#606060}.lae-services-style3 .lae-service .lae-service-text .lae-title{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px;margin-bottom:20px}.lae-stats-bars{clear:both}.lae-stats-bars .lae-stats-bar{width:100%;display:block;margin:0 0 18px;overflow:hidden}.lae-stats-bars .lae-stats-bar .lae-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}.lae-stats-bars .lae-stats-bar .lae-stats-title span{margin-left:5px}.rtl .lae-stats-bars .lae-stats-bar .lae-stats-title span{display:inline-block;margin:0 5px 0 0}.lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-title{color:#fff}.lae-stats-bars .lae-stats-bar .lae-stats-bar-wrap{position:relative}.lae-stats-bars .lae-stats-bar .lae-stats-bar-content{background:#e55a54;display:block;height:10px;width:0;position:relative;z-index:1;border-radius:5px}.lae-stats-bars .lae-stats-bar .lae-stats-bar-bg{width:100%;background:rgba(0,0,0,.1);height:10px;display:block;margin-top:-10px;border-radius:5px}.lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-bar-bg{background:rgba(255,255,255,.1)}.lae-tab-slider.slick-slider{clear:both;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap}.lae-tab-slider .slick-list{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.lae-tab-slider .slick-list .slick-slide .lae-tab-slide-nav{display:none}.lae-tab-slider .slick-dots{list-style:none;margin:0;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}.lae-tab-slider .slick-dots li{list-style:none;margin:0 20px 0 0}.lae-tab-slider .slick-dots li:last-child{margin-right:0}.lae-tab-slider .slick-dots .lae-tab-slide-nav{display:block;text-overflow:ellipsis;white-space:normal;text-decoration:none;border:none;margin:0;outline:0}.lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i{font-size:32px;vertical-align:middle;margin-right:10px;-webkit-transition:color .3s ease-in-out 0s;transition:color .3s ease-in-out 0s}.rtl .lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i{margin:0 0 0 15px}.lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-image-wrapper img{display:inline-block;vertical-align:middle;height:auto;width:auto;padding:0;margin:0 10px 0 0;border:none}.lae-tab-slider .slick-dots .lae-tab-slide-nav span.lae-tab-title{font-size:14px;line-height:1;font-weight:700;letter-spacing:1px;-webkit-transition:color .3s ease-in-out 0s;transition:color .3s ease-in-out 0s;vertical-align:middle}.lae-tab-slider .lae-tab-slide{position:relative}.lae-tab-slider.lae-style1{background:#f2f2f2;border-radius:5px}.lae-tab-slider.lae-style1 .slick-list .lae-tab-slide .lae-tab-slide-content{padding:40px}.lae-tab-slider.lae-style1 .slick-dots{border-bottom:1px solid #ddd;margin:0 40px;text-align:center}.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav{position:relative;z-index:1;padding:30px 40px}@media only screen and (max-width:1024px){.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav{padding:25px 20px}}.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:2px;background:0 0;-webkit-transition:background .3s ease-in-out 0s;transition:background .3s ease-in-out 0s}.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav .lae-tab-title{color:#888;padding:30px 20px;text-transform:uppercase}.lae-tab-slider.lae-style1 .slick-dots .lae-tab-slide-nav:hover .lae-tab-title{color:#565656}.lae-tab-slider.lae-style1 .slick-dots li.slick-active .lae-tab-slide-nav .lae-tab-title{color:#333}.lae-tab-slider.lae-style1 .slick-dots li.slick-active .lae-tab-slide-nav:before{background:#f94213;height:2px}@media only screen and (max-width:767px){.lae-tab-slider.lae-style1 .slick-dots{margin:0 30px}}.lae-tab-slider.lae-style2 .slick-list .lae-tab-slide .lae-tab-slide-content{margin-top:40px;font-size:16px;line-height:27px}.lae-tab-slider.lae-style2 .slick-dots li{margin:0 60px 0 0}.lae-tab-slider.lae-style2 .slick-dots li:last-child{margin-right:0}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav{text-align:center}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i{display:block;margin:0 auto;font-size:84px;color:#aaa}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-image-wrapper img{max-width:none;display:block;margin:0 auto;width:84px}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav .lae-tab-title{display:block;color:#999;font-size:16px;line-height:26px;letter-spacing:1px;font-weight:600;margin:20px auto 0;text-transform:uppercase}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav:hover span.lae-icon-wrapper i{color:#565656}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav:hover .lae-tab-title{color:#747373}.lae-tab-slider.lae-style2 .slick-dots li.slick-active .lae-tab-slide-nav span.lae-icon-wrapper i{color:#747373}.lae-tab-slider.lae-style2 .slick-dots li.slick-active .lae-tab-slide-nav .lae-tab-title{color:#747373}@media only screen and (max-width:1024px){.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i{font-size:64px}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav span.lae-image-wrapper i{width:64px}.lae-tab-slider.lae-style2 .slick-dots .lae-tab-slide-nav .lae-tab-title{font-size:15px;line-height:24px;letter-spacing:1px}}.lae-tab-slider.lae-style3 .slick-list .lae-tab-slide .lae-tab-slide-content{margin-top:20px;font-size:15px;line-height:26px}.lae-tab-slider.lae-style3 .slick-dots li{margin:0 60px 20px 0}.lae-tab-slider.lae-style3 .slick-dots li:last-child{margin-right:0}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav{text-align:center;border-top:2px solid transparent;border-bottom:2px solid transparent;padding:5px 0}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav span.lae-icon-wrapper i{color:#aaa}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav span.lae-image-wrapper img{width:32px}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav .lae-tab-title{color:#999;font-size:15px;line-height:26px;font-weight:600;text-transform:uppercase}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav:hover span.lae-icon-wrapper i{color:#565656}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav:hover .lae-tab-title{color:#747373}.lae-tab-slider.lae-style3 .slick-dots li.slick-active .lae-tab-slide-nav{border-color:#f94213}.lae-tab-slider.lae-style3 .slick-dots li.slick-active .lae-tab-slide-nav span.lae-icon-wrapper i{color:#747373}.lae-tab-slider.lae-style3 .slick-dots li.slick-active .lae-tab-slide-nav .lae-tab-title{color:#747373}@media only screen and (max-width:767px){.lae-tab-slider.lae-style3 .slick-dots li{margin:0 40px 15px 0}.lae-tab-slider.lae-style3 .slick-dots li:last-child{margin-right:0}.lae-tab-slider.lae-style3 .slick-dots .lae-tab-slide-nav .lae-tab-title{font-size:14px;line-height:22px}}.lae-team-members{clear:both}.lae-team-members .lae-team-member .lae-social-list{margin-top:20px}.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item{display:inline;margin:0 15px 0 0}.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item i{color:#999;-webkit-transition:color .3s ease-in-out 0s;transition:color .3s ease-in-out 0s}.lae-team-members .lae-team-member .lae-social-list .lae-social-list-item i:hover{color:#666}.lae-team-members .lae-team-member .lae-team-member-details{font-size:15px;line-height:24px}.lae-team-members .lae-team-member .lae-team-member-text .lae-title{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px}.lae-team-members .lae-team-member .lae-team-member-text .lae-title-link .lae-title{-webkit-transition:color .4s ease-in-out 0s;transition:color .4s ease-in-out 0s}.lae-team-members .lae-team-member .lae-team-member-text .lae-title-link:hover .lae-title{color:#666}.lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position{font-size:15px;line-height:24px;font-style:italic;color:#888;margin-bottom:10px}.lae-team-members-style1 .lae-team-member{max-width:320px;margin:0 auto}.lae-team-members-style1 .lae-team-member .lae-image-wrapper{text-align:center;position:relative}.lae-team-members-style1 .lae-team-member .lae-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}.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list{position:absolute;width:100%;top:40%;z-index:2}@media only screen and (max-width:767px){.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list{position:relative;top:0}}.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-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}.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover{color:#ccc}@media only screen and (max-width:767px){.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i{color:#999;opacity:1}.lae-dark-bg .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i{color:#888}.lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover{color:#666}.lae-dark-bg .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover{color:#ccc}}.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img{-webkit-filter:brightness(50%);filter:brightness(50%)}@media only screen and (max-width:767px){.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img{-webkit-filter:brightness(80%);filter:brightness(80%)}}.lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper .lae-social-list i{opacity:1}.lae-team-members-style1 .lae-team-member .lae-team-member-text{text-align:center;max-width:650px}.lae-team-members-style1 .lae-team-member .lae-team-member-text .lae-title{margin-bottom:10px}.lae-team-members-style1 .lae-team-member .lae-social-list{margin:10px auto}.lae-team-members-style2{position:relative;max-width:960px}.lae-team-members-style2 .lae-team-member-wrapper{margin-top:75px}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member .lae-image-wrapper{text-align:center;position:relative}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member .lae-image-wrapper img{max-width:320px;margin:0 auto 20px;border-radius:50%;-webkit-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member .lae-team-member-text{max-width:400px;margin:0 auto;text-align:center}@media only screen and (min-width:768px){.lae-team-members-style2 .lae-team-member-wrapper{margin-top:100px}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member .lae-team-member-text{max-width:100%}.lae-team-members-style2 .lae-team-member-wrapper:nth-child(odd) .lae-image-wrapper{margin-right:50px;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.lae-team-members-style2 .lae-team-member-wrapper:nth-child(odd) .lae-team-member-text{text-align:left}.lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-image-wrapper{margin-left:50px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text{text-align:right}}.lae-team-members-style2 .lae-team-member-wrapper:first-child{margin-top:0}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-title{margin-bottom:5px}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-team-member-details{margin:10px 0 10px}.lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-social-list i{font-size:24px}.lae-team-members-style2 .lae-team-member-wrapper:hover .lae-image-wrapper img{-webkit-filter:brightness(80%);filter:brightness(80%)}.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-details{color:rgba(255,255,255,.7)}.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title,.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title-link .lae-title{color:#fff}.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title-link:hover .lae-title{color:rgba(255,255,255,.7)}.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position{color:rgba(255,255,255,.5)}.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-social-list i{color:#aaa}.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-social-list i:hover{color:#ccc}.lae-testimonials-slider{clear:both;position:relative}.lae-testimonials-slider.lae-container{max-width:900px;margin:0 auto}.lae-testimonials-slider .lae-testimonial .lae-testimonial-star-rating{padding:0;margin:0 0 10px 0}.lae-testimonials-slider .lae-testimonial .lae-testimonial-star-rating .lae-testimonial-star-rating-item{display:inline-block}.lae-testimonials-slider .lae-testimonial .lae-testimonial-star-rating .lae-testimonial-star-rating-item svg{fill:#d8d8d8}.lae-testimonials-slider .lae-testimonial.lae-rating-five .lae-testimonial-star-rating .lae-testimonial-star-rating-item svg{fill:#f2b01e}.lae-testimonials-slider .lae-testimonial.lae-rating-one .lae-testimonial-star-rating .lae-testimonial-star-rating-item:first-child svg{fill:#f2b01e}.lae-testimonials-slider .lae-testimonial.lae-rating-two .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(1) svg,.lae-testimonials-slider .lae-testimonial.lae-rating-two .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(2) svg{fill:#f2b01e}.lae-testimonials-slider .lae-testimonial.lae-rating-three .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(1) svg,.lae-testimonials-slider .lae-testimonial.lae-rating-three .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(2) svg,.lae-testimonials-slider .lae-testimonial.lae-rating-three .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(3) svg{fill:#f2b01e}.lae-testimonials-slider .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(1) svg,.lae-testimonials-slider .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(2) svg,.lae-testimonials-slider .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(3) svg,.lae-testimonials-slider .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(4) svg{fill:#f2b01e}.lae-testimonials-slider .lae-testimonial .lae-testimonial-text{text-align:center;max-width:750px;margin:0 auto 40px;font-size:18px;line-height:32px;font-style:italic;color:#666}.lae-dark-bg .lae-testimonials-slider .lae-testimonial .lae-testimonial-text{color:#ccc}.lae-testimonials-slider .lae-testimonial .lae-testimonial-text i{color:#ccc;font-size:32px;display:block;margin-bottom:35px;background:0 0;width:auto;height:auto}.lae-dark-bg .lae-testimonials-slider .lae-testimonial .lae-testimonial-text i{color:#ddd}.lae-testimonials-slider .lae-testimonial .lae-testimonial-user{display:table;margin:0 auto}.lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-image-wrapper{display:table-cell}.lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-image-wrapper img{max-width:64px;border-radius:50%;margin-right:15px}.rtl .lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-image-wrapper img{margin:0 0 0 15px}.lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-user-text{display:table-cell;vertical-align:middle;color:#888}.lae-dark-bg .lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-user-text{color:#909090}.lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-user-text .lae-author-name{font-size:18px;line-height:26px;letter-spacing:1px;font-weight:700;color:#333;text-transform:uppercase;clear:none;margin-top:0;margin-bottom:10px;font-size:15px;line-height:24px;margin-bottom:5px}.lae-dark-bg .lae-testimonials-slider .lae-testimonial .lae-testimonial-user .lae-user-text .lae-author-name{color:#e5e5e5}.lae-testimonials{clear:both}.lae-testimonials .lae-testimonial{margin-bottom:20px}.lae-testimonials .lae-testimonial .lae-testimonial-star-rating{padding:0;margin:0}.lae-testimonials .lae-testimonial .lae-testimonial-star-rating .lae-testimonial-star-rating-item{display:inline-block}.lae-testimonials .lae-testimonial .lae-testimonial-star-rating .lae-testimonial-star-rating-item svg{fill:#d8d8d8}.lae-testimonials .lae-testimonial.lae-rating-five .lae-testimonial-star-rating .lae-testimonial-star-rating-item svg{fill:#f2b01e}.lae-testimonials .lae-testimonial.lae-rating-one .lae-testimonial-star-rating .lae-testimonial-star-rating-item:first-child svg{fill:#f2b01e}.lae-testimonials .lae-testimonial.lae-rating-two .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(1) svg,.lae-testimonials .lae-testimonial.lae-rating-two .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(2) svg{fill:#f2b01e}.lae-testimonials .lae-testimonial.lae-rating-three .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(1) svg,.lae-testimonials .lae-testimonial.lae-rating-three .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(2) svg,.lae-testimonials .lae-testimonial.lae-rating-three .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(3) svg{fill:#f2b01e}.lae-testimonials .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(1) svg,.lae-testimonials .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(2) svg,.lae-testimonials .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(3) svg,.lae-testimonials .lae-testimonial.lae-rating-four .lae-testimonial-star-rating .lae-testimonial-star-rating-item:nth-child(4) svg{fill:#f2b01e}.lae-testimonials .lae-testimonial .lae-testimonial-text{font-size:15px;line-height:24px}.lae-dark-bg .lae-testimonials .lae-testimonial .lae-testimonial-text{color:rgba(255,255,255,.7)}.lae-testimonials .lae-testimonial .lae-testimonial-user .lae-user-text{color:#888;font-size:15px;line-height:24px}.lae-dark-bg .lae-testimonials .lae-testimonial .lae-testimonial-user .lae-user-text{color:rgba(255,255,255,.5)}.lae-testimonials .lae-testimonial .lae-testimonial-user .lae-user-text .lae-author-name{font-size:15px;line-height:24px;letter-spacing:1px;font-weight:700;text-transform:uppercase;color:#333}.lae-dark-bg .lae-testimonials .lae-testimonial .lae-testimonial-user .lae-user-text .lae-author-name{color:#fff}.lae-testimonials-style1 .lae-testimonial-user,.lae-testimonials-style2 .lae-testimonial-user{display:table}.lae-testimonials-style1 .lae-testimonial-user .lae-image-wrapper,.lae-testimonials-style2 .lae-testimonial-user .lae-image-wrapper{display:table-cell}.lae-testimonials-style1 .lae-testimonial-user .lae-image-wrapper img,.lae-testimonials-style2 .lae-testimonial-user .lae-image-wrapper img{max-width:64px;border-radius:50%;margin-right:20px}.rtl .lae-testimonials-style1 .lae-testimonial-user .lae-image-wrapper img,.rtl .lae-testimonials-style2 .lae-testimonial-user .lae-image-wrapper img{margin:0 0 0 20px}.lae-testimonials-style1 .lae-testimonial-user .lae-user-text,.lae-testimonials-style2 .lae-testimonial-user .lae-user-text{display:table-cell;vertical-align:middle}.lae-testimonials-style1 .lae-testimonial-user .lae-user-text .lae-author-name,.lae-testimonials-style2 .lae-testimonial-user .lae-user-text .lae-author-name{margin:0 0 5px 0}.lae-testimonials-style1 .lae-testimonial .lae-testimonial-star-rating{margin:0 0 15px 0}.lae-testimonials-style1 .lae-testimonial .lae-testimonial-text{background:#fff;border:1px solid #dbdbdb;border-radius:30px;text-align:center;position:relative;padding:20px;margin-bottom:40px;font-style:italic;text-align:center;max-width:450px}.lae-dark-bg .lae-testimonials-style1 .lae-testimonial .lae-testimonial-text{color:#666;background:#eee}.lae-testimonials-style1 .lae-testimonial .lae-testimonial-text:after{content:'';display:block;background:#fff;border-left:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;background:#fff;transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:skew(0deg,-44deg);width:24px;height:24px;position:absolute;bottom:-12px;left:40px;margin:auto}.rtl .lae-testimonials-style1 .lae-testimonial .lae-testimonial-text:after{left:auto;right:40px}.lae-dark-bg .lae-testimonials-style1 .lae-testimonial .lae-testimonial-text:after{background:#eee}.lae-testimonials-style2 .lae-testimonial .lae-testimonial-star-rating{margin:0 0 10px 0}.lae-testimonials-style2 .lae-testimonial .lae-testimonial-text{margin-top:20px}.lae-testimonials-style2 .lae-testimonial:not(.lae-rating-none) .lae-testimonial-text{margin-top:15px}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-star-rating{margin:0 0 15px 0}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-text{background:#e2e2e2;border:1px solid #e2e2e2;border-radius:10px;text-align:center;position:relative;padding:30px 15px;margin-bottom:40px;color:#444;max-width:450px;text-align:center;max-width:450px}.lae-dark-bg .lae-testimonials-style3 .lae-testimonial .lae-testimonial-text{color:#666;background:#eee}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-text:after{content:"";position:absolute;top:100%;left:50%;margin:auto;margin-left:-15px;border-top:20px solid #e2e2e2;border-top-color:inherit;border-left:15px solid transparent;border-right:15px solid transparent}.lae-dark-bg .lae-testimonials-style3 .lae-testimonial .lae-testimonial-text:after{border-top-color:#eee}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-user{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-user .lae-image-wrapper img{max-width:64px;border-radius:50%}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-user .lae-user-text{text-align:center}.lae-testimonials-style3 .lae-testimonial .lae-testimonial-user .lae-user-text .lae-author-name{margin:15px 0 5px 0}.lae-testimonials-style4 .lae-testimonial{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;max-width:720px;margin:24px 0}.lae-testimonials-style4 .lae-testimonial .lae-testimonial-user-picture .lae-image-wrapper{position:relative;overflow:hidden;border-radius:50%;margin-right:32px}@media only screen and (max-width:640px){.lae-testimonials-style4 .lae-testimonial .lae-testimonial-user-picture .lae-image-wrapper{margin-right:25px}}.lae-testimonials-style4 .lae-testimonial .lae-testimonial-user-picture .lae-image-wrapper img{max-width:120px}@media only screen and (max-width:640px){.lae-testimonials-style4 .lae-testimonial .lae-testimonial-user-picture .lae-image-wrapper img{max-width:72px}}.lae-testimonials-style4 .lae-testimonial .lae-testimonial-info{text-align:left}.lae-testimonials-style4 .lae-testimonial .lae-testimonial-info .lae-testimonial-star-rating{margin-bottom:5px}.lae-testimonials-style4 .lae-testimonial .lae-testimonial-info .lae-user-text .lae-author-name{margin:15px 0 5px 0}.fsmfe-wrapper input[type=checkbox]{display:none}.fsmfe-wrapper .icon-bars{display:block;width:30px;height:30px;position:relative;z-index:1999;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fsmfe-wrapper .icon-bar{width:100%;height:2px;position:absolute;top:50%;left:0;background-color:#000;backface-visibility:hidden;transition:all .3s ease}.fsmfe-wrapper .icon-bar.bar-top{margin-top:-30px;transform:rotate(0)}.fsmfe-wrapper .icon-bar.bar-middle{opacity:1}.fsmfe-wrapper .icon-bar.bar-bottom{margin-top:30px;transform:rotate(0)}.fsmfe-wrapper .menu-toggle:checked+.icon-bars .icon-bar{transition:all .3s ease}.fsmfe-wrapper .menu-toggle:checked+.icon-bars .bar-top{margin-top:0!important;transform:rotate(45deg)}.fsmfe-wrapper .menu-toggle:checked+.icon-bars .bar-middle{opacity:0}.fsmfe-wrapper .menu-toggle:checked+.icon-bars .bar-bottom{margin-top:0!important;transform:rotate(-45deg)}.fsmfe-wrapper .menu-overlay{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;height:100%;position:fixed;top:0;left:0;z-index:0;visibility:hidden;opacity:0;overflow-y:scroll;transition:all .3s ease-in-out}.fsmfe-wrapper .menu-toggle:checked+.icon-bars+.menu-overlay{z-index:1900;visibility:visible;opacity:1;transition:all .3s ease-in-out}.fsmfe-wrapper .menu-overlay .menu-content{width:100%;margin:auto}.fsmfe-wrapper .content-type-menu ul{list-style:none;margin:0;padding:0}.fsmfe-wrapper .content-type-menu a{display:block;font-size:50px;font-weight:400;text-transform:uppercase;line-height:2em;letter-spacing:3px}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1200px}.elementor-column-gap-narrow>.elementor-row>.elementor-column>.elementor-element-populated{padding:8px}.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated{padding:16px}.elementor-column-gap-extended>.elementor-row>.elementor-column>.elementor-element-populated{padding:24px}.elementor-column-gap-wide>.elementor-row>.elementor-column>.elementor-element-populated{padding:32px}.elementor-column-gap-wider>.elementor-row>.elementor-column>.elementor-element-populated{padding:40px}body .one-elements-element{-webkit-transition-property:initial;-o-transition-property:initial;-webkit-transition-property:all;-o-transition-property:all;transition-property:all}.one-elements-element{position:relative;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.one-elements-element .one-elements-element__hover-state,.one-elements-element .one-elements-element__hover-state *,.one-elements-element .one-elements-element__link,.one-elements-element .one-elements-element__regular-state,.one-elements-element .one-elements-element__regular-state *,.one-elements-element .one-elements-element__state-inner:after{position:absolute;width:100%;height:100%;top:0;left:0;overflow:hidden;-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-element .one-elements-element,.one-elements-element .one-elements-element__content-inner{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-element .one-elements-element__hover-state,.one-elements-element .one-elements-element__regular-state{-webkit-border-radius:inherit;border-radius:inherit}.one-elements-element .one-elements-element__state-inner,.one-elements-element .one-elements-element__state-inner:after{background-position:50%;background-repeat:no-repeat;background-size:cover}.one-elements-element .one-elements-element__state-inner:after{content:"";z-index:1}.one-elements-element .one-elements-element__state-background-overlay{z-index:2}.one-elements-element .one-elements-element__regular-state{opacity:1;z-index:1;visibility:visible}.one-elements-element .one-elements-element__hover-state{opacity:0;z-index:2;visibility:hidden}.one-elements-element .one-elements-element__content{position:relative;z-index:3;display:block;-webkit-transition:inherit;-o-transition:inherit;transition:inherit;height:100%;width:100%}.one-elements-element .one-elements-element__content-back{z-index:0}.one-elements-element .one-elements-element__link{z-index:4}.one-elements-element.oee__dynamic-height-ratio:before{content:"";position:relative;width:100%;display:block}.one-elements-element.oee__dynamic-height>.one-elements-element__content{position:absolute;top:0;left:0;width:100%;height:100%;padding:inherit;-webkit-box-pack:inherit;-webkit-justify-content:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-webkit-align-items:inherit;-ms-flex-align:inherit;align-items:inherit;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.one-elements-element:hover{z-index:3}.one-elements-element:hover .one-elements-element:not(.one-elements__stop-parent-hover)>.one-elements-element__hover-state,.one-elements-element:hover>.one-elements-element__hover-state{opacity:1;visibility:visible}.one-elements-element__border-gradient>*{-webkit-border-radius:inherit;border-radius:inherit}.oee__row{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.oee__column,.oee__content_column,.oee__content_row,.oee__row{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}body .oee__align-top{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}body .oee__align-middle{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}body .oee__align-bottom{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}body .oee__content-left{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}body .oee__content-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}body .oee__content-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}body .oee__row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}body .oee__row-wrap{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}body .oee__priority-high{z-index:5;position:relative}body .oee__priority-medium{z-index:4;position:relative}body .oee__priority-low{z-index:3;position:relative}.oee__item{position:relative}.oee__column-gap-no .oee__item{padding:0}.oee__column-gap-narrow .oee__item{padding:8px}.oee__column-gap-default .oee__item{padding:16px}.oee__column-gap-extended .oee__item{padding:24px}.oee__column-gap-wide .oee__item{padding:32px}.oee__column-gap-wider .oee__item{padding:40px}.oee__text_excerpt{overflow:hidden}body .elementor-element .oee__align-top-left{text-align:left;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}body .elementor-element .oee__align-top-center,body .elementor-element .oee__align-top-left{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}body .elementor-element .oee__align-top-center{text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}body .elementor-element .oee__align-top-right{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;text-align:right;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}body .elementor-element .oee__align-center-left{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:left;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}body .elementor-element .oee__align-center-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}body .elementor-element .oee__align-center-right{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:right;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}body .elementor-element .oee__align-bottom-left{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end;text-align:left;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}body .elementor-element .oee__align-bottom-center{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end;text-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}body .elementor-element .oee__align-bottom-right{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end;text-align:right;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.one-elements-image .one-elements-element__content img{min-height:100%}.elementor-column-gap-narrow .oee__column-gap--reset{margin-left:-8px;margin-right:-8px}.elementor-column-gap-default .oee__column-gap--reset{margin-left:-16px;margin-right:-16px}.elementor-column-gap-extended .oee__column-gap--reset{margin-left:-24px;margin-right:-24px}.elementor-column-gap-wide .oee__column-gap--reset{margin-left:-32px;margin-right:-32px}.elementor-column-gap-wider .oee__column-gap--reset{margin-left:-40px;margin-right:-40px}.elementor-invisible .one-elements-element,.elementor-invisible .one-elements-element .one-elements-element__hover-state,.elementor-invisible .one-elements-element .one-elements-element__regular-state{visibility:hidden}.one-elements-element--flip{position:relative;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000px;perspective:1000px;-webkit-transition:.7s cubic-bezier(.4,.2,.2,1);-o-transition:.7s cubic-bezier(.4,.2,.2,1);transition:.7s cubic-bezier(.4,.2,.2,1);-webkit-border-radius:unset!important;border-radius:unset!important;-webkit-box-shadow:none!important;box-shadow:none!important;padding:0!important}.one-elements-element--flip>.one-elements-element{-webkit-transition:inherit;-o-transition:inherit;transition:inherit;-webkit-transform-style:inherit;transform-style:inherit;-webkit-backface-visibility:hidden;backface-visibility:hidden;width:100%;height:100%}.one-elements-element--flip>.one-elements-element>.one-elements-element__content{-webkit-transform:translateZ(60px) scale(.94);transform:translateZ(60px) scale(.94);-webkit-transform-style:inherit;transform-style:inherit;-webkit-perspective:1000px;perspective:1000px}.one-elements-element--flip>.one-elements-element:nth-child(2){position:absolute;width:100%;height:100%;top:0;left:0}.one-elements-element--flip.flip--style-horizontal>.one-elements-element:first-child{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.one-elements-element--flip.flip--style-horizontal>.one-elements-element:nth-child(2){-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.one-elements-element--flip.flip--style-vertical>.one-elements-element:first-child{-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}.one-elements-element--flip.flip--style-vertical>.one-elements-element:nth-child(2){-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.one-elements-element--flip .one-elements-element__hover-state{opacity:1!important;visibility:visible!important}.one-elements-element--flip:hover>.one-elements-element:nth-child(2) .one-elements-element__content{-webkit-transition:none;-o-transition:none;transition:none}.one-elements-element--flip:hover.flip--style-horizontal>.one-elements-element:first-child{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.one-elements-element--flip:hover.flip--style-horizontal>.one-elements-element:nth-child(2){-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.one-elements-element--flip:hover.flip--style-vertical>.one-elements-element:first-child{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.one-elements-element--flip:hover.flip--style-vertical>.one-elements-element:nth-child(2){-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}html.one-stop-scrolling{overflow-y:hidden!important}.custom-select{position:relative;margin-top:10px}.custom-select .custom-select__option{color:#43516c;font-size:16px;line-height:1.7;padding:8px 14px;display:block;border:none;outline:none;width:100%;text-align:left;white-space:normal}.custom-select .custom-select__option.custom-select__option--selected,.custom-select .custom-select__option:focus,.custom-select .custom-select__option:hover{background-color:#f9fafc}.custom-select .custom-select__option--value{position:relative;width:100%;-webkit-border-radius:2px;border-radius:2px;background-color:#f7f9fc;border:2px solid rgba(0,0,0,0);color:#43516c;font-family:Poppins;font-size:16px;line-height:1.75;padding:12px 18px;-webkit-box-shadow:none;box-shadow:none;background-color:rgba(0,0,0,.02);-webkit-transition:all .25s cubic-bezier(.26,.64,.3,.96);-o-transition:all .25s cubic-bezier(.26,.64,.3,.96);transition:all .25s cubic-bezier(.26,.64,.3,.96)}.custom-select .custom-select__option--value:after{content:"\F078";position:absolute;top:50%;right:1em;width:1em;height:1em;line-height:1em;line-height:-webkit-calc(1em + 2px);line-height:calc(1em + 2px);display:block;font-size:1em;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;color:inherit;opacity:.4;font-family:Font Awesome\ 5 Free;font-weight:900;text-align:center;-webkit-transform:translateY(-50%) rotate(0deg);-ms-transform:translateY(-50%) rotate(0deg);transform:translateY(-50%) rotate(0deg);-webkit-transition:inherit;-o-transition:inherit;transition:inherit;text-indent:0}.custom-select .custom-select__dropdown{position:absolute;top:100%;width:100%;-webkit-border-radius:4px;border-radius:4px;max-height:70vh;z-index:99;background-color:#fff;border:2px solid rgba(0,0,0,.02);overflow-y:auto}.custom-select.custom-select--active .custom-select__option--value{outline:none}.custom-select.custom-select--active .custom-select__option--value:after{-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg)}.custom-select.custom-select--active:not(.custom-select--dropup) .custom-select__option--value{-webkit-border-bottom-right-radius:0!important;border-bottom-right-radius:0!important;-webkit-border-bottom-left-radius:0!important;border-bottom-left-radius:0!important}.custom-select.custom-select--active:not(.custom-select--dropup) .custom-select__dropdown{border-top-width:0!important;-webkit-border-top-right-radius:0!important;border-top-right-radius:0!important;-webkit-border-top-left-radius:0!important;border-top-left-radius:0!important}.custom-select.custom-select--active.custom-select--dropup .custom-select__option--value{-webkit-border-top-right-radius:0!important;border-top-right-radius:0!important;-webkit-border-top-left-radius:0!important;border-top-left-radius:0!important}.custom-select.custom-select--active.custom-select--dropup .custom-select__dropdown{top:auto;bottom:100%;border-bottom-width:0!important;-webkit-border-bottom-right-radius:0!important;border-bottom-right-radius:0!important;-webkit-border-bottom-left-radius:0!important;border-bottom-left-radius:0!important}.one-elements__carousel{position:relative}.one-elements__carousel .slick-arrow{width:43px;height:43px;-webkit-border-radius:50%;border-radius:50%;background-color:#fff;border:none;-webkit-box-shadow:0 14px 27px 0 rgba(152,163,203,.15);box-shadow:0 14px 27px 0 rgba(152,163,203,.15);color:#0b52e0;line-height:1;padding:0;font-size:20px;display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.one-elements__carousel .slick-arrow:hover{background-color:#0b52e0;color:#fff}.one-elements__carousel .slick-dots{width:100%}.one-elements__carousel .slick-dots li{margin:0;display:inline-block}.one-elements__carousel .slick-dots li button{text-indent:-99999px;padding:0;border:none;display:block;outline:none;width:9px;height:9px;-webkit-border-radius:50%;border-radius:50%;-webkit-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out;background:rgba(0,0,0,.12)}.one-elements__carousel .slick-dots li:hover button{background:rgba(0,0,0,.24)}.one-elements__carousel .slick-dots li.slick-active button{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);background:#0b52e0}.one-elements__carousel .slick-dots li:not(:last-child){margin-right:4px}.one-elements__carousel .slick-slide:focus{outline:none}.one-elements__carousel .slick-slide .oee__item{width:100%!important}.slick-arrow{position:absolute;z-index:3}.slick-dots{z-index:3;padding:0;margin:25px 0 0;text-align:center}.carousel-nav_position-left_right .slick-arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.carousel-nav_position-left_right .one-elements__carousel-prev{left:-90px;right:auto}.carousel-nav_position-left_right .one-elements__carousel-next{left:auto;right:-90px}.carousel-nav_position-both_left .slick-arrow,.carousel-nav_position-both_right .slick-arrow{top:50%}.carousel-nav_position-both_left .one-elements__carousel-prev,.carousel-nav_position-both_right .one-elements__carousel-prev{-webkit-transform:translateY(-117%);-ms-transform:translateY(-117%);transform:translateY(-117%)}.carousel-nav_position-both_left .one-elements__carousel-next,.carousel-nav_position-both_right .one-elements__carousel-next{-webkit-transform:translateY(17%);-ms-transform:translateY(17%);transform:translateY(17%)}.carousel-nav_position-both_left .slick-arrow{right:auto;left:-90px}.carousel-nav_position-both_right .slick-arrow{left:auto;right:-90px}.carousel-nav_position-bottom .slick-arrow{top:100%;bottom:auto;right:auto;left:50%;margin-top:35px}.carousel-nav_position-bottom .one-elements__carousel-prev{-webkit-transform:translateX(-117%);-ms-transform:translateX(-117%);transform:translateX(-117%)}.carousel-nav_position-bottom .one-elements__carousel-next{-webkit-transform:translateX(17%);-ms-transform:translateX(17%);transform:translateX(17%)}.carousel--dynamic-hide .slick-list{overflow:unset!important;width:100%}.carousel--dynamic-hide .slick-track .slick-slide{height:auto}.carousel--dynamic-hide .slick-slide{-webkit-transition:opacity .4s ease-in-out,visibility .4s ease-in-out,-webkit-transform .4s ease-in-out;transition:opacity .4s ease-in-out,visibility .4s ease-in-out,-webkit-transform .4s ease-in-out;-o-transition:opacity .4s ease-in-out,transform .4s ease-in-out,visibility .4s ease-in-out;transition:opacity .4s ease-in-out,transform .4s ease-in-out,visibility .4s ease-in-out;transition:opacity .4s ease-in-out,transform .4s ease-in-out,visibility .4s ease-in-out,-webkit-transform .4s ease-in-out;-webkit-transform:scale(.85);-ms-transform:scale(.85);transform:scale(.85);opacity:0;visibility:hidden}.carousel--dynamic-hide .slick-slide.slick-active,.carousel--dynamic-hide .slick-slide.slick-slide--show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1;visibility:visible}.carousel-dot_alignment-center .slick-dots{text-align:center}.carousel-dot_alignment-left .slick-dots{text-align:left}.carousel-dot_alignment-right .slick-dots{text-align:right}@media (max-width:1024px) and (min-width:768px){.carousel-tablet-nav_position-left_right .one-elements__carousel{padding-bottom:0}.carousel-tablet-nav_position-left_right .slick-arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.carousel-tablet-nav_position-left_right .one-elements__carousel-prev{left:-90px;right:auto}.carousel-tablet-nav_position-left_right .one-elements__carousel-next{left:auto;right:-90px}.carousel-tablet-nav_position-both_left .slick-arrow,.carousel-tablet-nav_position-both_right .slick-arrow{top:50%}.carousel-tablet-nav_position-both_left .one-elements__carousel-prev,.carousel-tablet-nav_position-both_right .one-elements__carousel-prev{-webkit-transform:translateY(-117%);-ms-transform:translateY(-117%);transform:translateY(-117%)}.carousel-tablet-nav_position-both_left .one-elements__carousel-next,.carousel-tablet-nav_position-both_right .one-elements__carousel-next{-webkit-transform:translateY(17%);-ms-transform:translateY(17%);transform:translateY(17%)}.carousel-tablet-nav_position-both_left .slick-arrow{right:auto;left:-90px}.carousel-tablet-nav_position-both_right .slick-arrow{left:auto;right:-90px}.carousel-tablet-nav_position-bottom .one-elements__carousel{padding-bottom:90px}.carousel-tablet-nav_position-bottom .slick-arrow{top:100%;bottom:auto;right:auto;left:50%;margin-top:35px}.carousel-tablet-nav_position-bottom .one-elements__carousel-prev{-webkit-transform:translateX(-117%);-ms-transform:translateX(-117%);transform:translateX(-117%)}.carousel-tablet-nav_position-bottom .one-elements__carousel-next{-webkit-transform:translateX(17%);-ms-transform:translateX(17%);transform:translateX(17%)}.carousel-tablet-dot_alignment-center .slick-dots{text-align:center}.carousel-tablet-dot_alignment-left .slick-dots{text-align:left}.carousel-tablet-dot_alignment-right .slick-dots{text-align:right}}@media (max-width:767px){.carousel-mobile-nav_position-left_right .one-elements__carousel{padding-bottom:0}.carousel-mobile-nav_position-left_right .slick-arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.carousel-mobile-nav_position-left_right .one-elements__carousel-prev{left:-90px;right:auto}.carousel-mobile-nav_position-left_right .one-elements__carousel-next{left:auto;right:-90px}.carousel-mobile-nav_position-both_left .slick-arrow,.carousel-mobile-nav_position-both_right .slick-arrow{top:50%}.carousel-mobile-nav_position-both_left .one-elements__carousel-prev,.carousel-mobile-nav_position-both_right .one-elements__carousel-prev{-webkit-transform:translateY(-117%);-ms-transform:translateY(-117%);transform:translateY(-117%)}.carousel-mobile-nav_position-both_left .one-elements__carousel-next,.carousel-mobile-nav_position-both_right .one-elements__carousel-next{-webkit-transform:translateY(17%);-ms-transform:translateY(17%);transform:translateY(17%)}.carousel-mobile-nav_position-both_left .slick-arrow{right:auto;left:-90px}.carousel-mobile-nav_position-both_right .slick-arrow{left:auto;right:-90px}.carousel-mobile-nav_position-bottom .one-elements__carousel{padding-bottom:90px}.carousel-mobile-nav_position-bottom .slick-arrow{top:100%;bottom:auto;right:auto;left:50%;margin-top:35px}.carousel-mobile-nav_position-bottom .one-elements__carousel-prev{-webkit-transform:translateX(-117%);-ms-transform:translateX(-117%);transform:translateX(-117%)}.carousel-mobile-nav_position-bottom .one-elements__carousel-next{-webkit-transform:translateX(17%);-ms-transform:translateX(17%);transform:translateX(17%)}.carousel-mobile-dot_alignment-center .slick-dots{text-align:center}.carousel-mobile-dot_alignment-left .slick-dots{text-align:left}.carousel-mobile-dot_alignment-right .slick-dots{text-align:right}}.one-elements-divider__wrapper{margin-top:10px;margin-bottom:10px;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out;font-size:0}.one-elements-divider{height:1px;-webkit-transition:inherit;-o-transition:inherit;transition:inherit;display:inline-block;max-width:100%}.one-elements-divider .one-elements-element__regular-state{background:#0b52e0}.one-elements-divider__secondary{margin-top:2px}.one-elements-icon{line-height:1;background:rgba(0,0,0,0)!important;border:none!important;outline:none!important;display:inline-block}.one-elements-icon .one-elements-element__content{color:#0b52e0;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.one-elements-icon .one-elements-icon__content_icon{line-height:0}.one-elements-icon .one-elements-icon__content_icon,.one-elements-icon .one-elements-icon__content_icon>*{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-icon .one-elements-icon__content_icon svg{height:auto}.one-elements-icon__svg .one-elements-icon__content_icon{font-size:0!important}.one-elements-icon__svg .one-elements-icon__content_icon>svg{height:auto}.one-elements-heading>.one-elements-element__content{display:inline-block;margin:0}.one-elements-icon_lists{margin:0;padding:0;display:inline-block}.one-elements-icon_lists .one-elements-icon_list{list-style:none}.one-elements-icon_lists .one-elements-icon{width:18px;margin-right:8px}.one-elements-icon_lists .one-elements-element__content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.one-elements-icon_lists .one-elements-icon__content_icon,.one-elements-icon_lists .one-elements-icon__content_icon i,.one-elements-icon_lists .one-elements-icon_list--text{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-icon_lists .one-elements-icon_list--text{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.elementor-icon-list--layout-inline .one-elements-icon_lists .one-elements-icon_list{display:inline-block}.elementor-icon-list--layout-inline .one-elements-icon_lists .one-elements-icon_list:not(:last-child){margin-right:20px}.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container{overflow:unset}.rtl .one-elements-icon_lists .one-elements-icon{margin-right:0;margin-left:8px}.one-elements-social_icons{font-size:0;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease}.one-elements-social_icons>*{display:inline-block}.one-elements-social_icons .one-elements-social_icons__single{display:inline-block}.one-elements-social_icons .one-elements-social_icons__single:not(:last-child){margin-right:12px}.one-elements-social_icons .one-elements-icon{min-width:16px;min-height:16px;width:34px;height:34px;line-height:34px}.one-elements-social_icons .one-elements-icon>.one-elements-element__regular-state{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.one-elements-social_icons .one-elements-icon:hover>.one-elements-element__regular-state{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}.one-elements-social_icons .one-elements-icon__content_icon{font-size:16px}.one-elements-social_icons .one-elements-icon,.one-elements-social_icons .one-elements-social_icons__single{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.enabled-official-bg-color-hover .one-elements-icon:hover .one-elements-icon__content_icon>*,.enabled-official-bg-color .one-elements-icon .one-elements-icon__content_icon>*{color:#fff}.one-elements-social_icon-android .one-elements-icon__content_icon>*{color:#a4c639}.one-elements-social_icon-apple .one-elements-icon__content_icon>*{color:#999}.one-elements-social_icon-behance .one-elements-icon__content_icon>*{color:#1769ff}.one-elements-social_icon-bitbucket .one-elements-icon__content_icon>*{color:#205081}.one-elements-social_icon-codepen .one-elements-icon__content_icon>*{color:#000}.one-elements-social_icon-delicious .one-elements-icon__content_icon>*{color:#39f}.one-elements-social_icon-deviantart .one-elements-icon__content_icon>*{color:#05cc47}.one-elements-social_icon-digg .one-elements-icon__content_icon>*{color:#005be2}.one-elements-social_icon-dribbble .one-elements-icon__content_icon>*{color:#ea4c89}.one-elements-social_icon-envelope .one-elements-icon__content_icon>*{color:#ea4335}.one-elements-social_icon-facebook .one-elements-icon__content_icon>*{color:#3b5998}.one-elements-social_icon-flickr .one-elements-icon__content_icon>*{color:#0063dc}.one-elements-social_icon-foursquare .one-elements-icon__content_icon>*{color:#2d5be3}.one-elements-social_icon-freecodecamp .one-elements-icon__content_icon>*{color:#006400}.one-elements-social_icon-github .one-elements-icon__content_icon>*{color:#333}.one-elements-social_icon-gitlab .one-elements-icon__content_icon>*{color:#e24329}.one-elements-social_icon-globe .one-elements-icon__content_icon>*{color:#818a91}.one-elements-social_icon-google-plus .one-elements-icon__content_icon>*{color:#dd4b39}.one-elements-social_icon-houzz .one-elements-icon__content_icon>*{color:#7ac142}.one-elements-social_icon-instagram .one-elements-icon__content_icon>*{color:#262626}.one-elements-social_icon-jsfiddle .one-elements-icon__content_icon>*{color:#487aa2}.one-elements-social_icon-link .one-elements-icon__content_icon>*{color:#818a91}.one-elements-social_icon-linkedin .one-elements-icon__content_icon>*{color:#0077b5}.one-elements-social_icon-medium .one-elements-icon__content_icon>*{color:#00ab6b}.one-elements-social_icon-meetup .one-elements-icon__content_icon>*{color:#ec1c40}.one-elements-social_icon-mixcloud .one-elements-icon__content_icon>*{color:#273a4b}.one-elements-social_icon-odnoklassniki .one-elements-icon__content_icon>*{color:#f4731c}.one-elements-social_icon-pinterest .one-elements-icon__content_icon>*{color:#bd081c}.one-elements-social_icon-product-hunt .one-elements-icon__content_icon>*{color:#da552f}.one-elements-social_icon-reddit .one-elements-icon__content_icon>*{color:#ff4500}.one-elements-social_icon-rss .one-elements-icon__content_icon>*{color:#f26522}.one-elements-social_icon-shopping-cart .one-elements-icon__content_icon>*{color:#4caf50}.one-elements-social_icon-skype .one-elements-icon__content_icon>*{color:#00aff0}.one-elements-social_icon-slideshare .one-elements-icon__content_icon>*{color:#0077b5}.one-elements-social_icon-snapchat .one-elements-icon__content_icon>*{color:#fffc00}.one-elements-social_icon-soundcloud .one-elements-icon__content_icon>*{color:#f80}.one-elements-social_icon-spotify .one-elements-icon__content_icon>*{color:#2ebd59}.one-elements-social_icon-stack-overflow .one-elements-icon__content_icon>*{color:#fe7a15}.one-elements-social_icon-steam .one-elements-icon__content_icon>*{color:#00adee}.one-elements-social_icon-stumbleupon .one-elements-icon__content_icon>*{color:#eb4924}.one-elements-social_icon-telegram .one-elements-icon__content_icon>*{color:#2ca5e0}.one-elements-social_icon-thumb-tack .one-elements-icon__content_icon>*{color:#1aa1d8}.one-elements-social_icon-tripadvisor .one-elements-icon__content_icon>*{color:#589442}.one-elements-social_icon-tumblr .one-elements-icon__content_icon>*{color:#35465c}.one-elements-social_icon-twitch .one-elements-icon__content_icon>*{color:#6441a5}.one-elements-social_icon-twitter .one-elements-icon__content_icon>*{color:#1da1f2}.one-elements-social_icon-vimeo .one-elements-icon__content_icon>*{color:#1ab7ea}.one-elements-social_icon-vk .one-elements-icon__content_icon>*{color:#45668e}.one-elements-social_icon-weibo .one-elements-icon__content_icon>*{color:#df2029}.one-elements-social_icon-weixin .one-elements-icon__content_icon>*{color:#7bb32e}.one-elements-social_icon-whatsapp .one-elements-icon__content_icon>*{color:#25d366}.one-elements-social_icon-wordpress .one-elements-icon__content_icon>*{color:#21759b}.one-elements-social_icon-xing .one-elements-icon__content_icon>*{color:#026466}.one-elements-social_icon-yelp .one-elements-icon__content_icon>*{color:#af0606}.one-elements-social_icon-youtube .one-elements-icon__content_icon>*{color:#cd201f}.one-elements-social_icon-500px .one-elements-icon__content_icon>*{color:#0099e5}.enabled-official-bg-color .one-elements-social_icon-android .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#a4c639}.enabled-official-bg-color .one-elements-social_icon-apple .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#999}.enabled-official-bg-color .one-elements-social_icon-behance .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#1769ff}.enabled-official-bg-color .one-elements-social_icon-bitbucket .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#205081}.enabled-official-bg-color .one-elements-social_icon-codepen .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#000}.enabled-official-bg-color .one-elements-social_icon-delicious .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#39f}.enabled-official-bg-color .one-elements-social_icon-deviantart .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#05cc47}.enabled-official-bg-color .one-elements-social_icon-digg .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#005be2}.enabled-official-bg-color .one-elements-social_icon-dribbble .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#ea4c89}.enabled-official-bg-color .one-elements-social_icon-envelope .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#ea4335}.enabled-official-bg-color .one-elements-social_icon-facebook .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#3b5998}.enabled-official-bg-color .one-elements-social_icon-flickr .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#0063dc}.enabled-official-bg-color .one-elements-social_icon-foursquare .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#2d5be3}.enabled-official-bg-color .one-elements-social_icon-freecodecamp .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#006400}.enabled-official-bg-color .one-elements-social_icon-github .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#333}.enabled-official-bg-color .one-elements-social_icon-gitlab .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#e24329}.enabled-official-bg-color .one-elements-social_icon-globe .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#818a91}.enabled-official-bg-color .one-elements-social_icon-google-plus .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#dd4b39}.enabled-official-bg-color .one-elements-social_icon-houzz .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#7ac142}.enabled-official-bg-color .one-elements-social_icon-instagram .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#262626}.enabled-official-bg-color .one-elements-social_icon-jsfiddle .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#487aa2}.enabled-official-bg-color .one-elements-social_icon-link .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#818a91}.enabled-official-bg-color .one-elements-social_icon-linkedin .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#0077b5}.enabled-official-bg-color .one-elements-social_icon-medium .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#00ab6b}.enabled-official-bg-color .one-elements-social_icon-meetup .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#ec1c40}.enabled-official-bg-color .one-elements-social_icon-mixcloud .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#273a4b}.enabled-official-bg-color .one-elements-social_icon-odnoklassniki .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#f4731c}.enabled-official-bg-color .one-elements-social_icon-pinterest .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#bd081c}.enabled-official-bg-color .one-elements-social_icon-product-hunt .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#da552f}.enabled-official-bg-color .one-elements-social_icon-reddit .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#ff4500}.enabled-official-bg-color .one-elements-social_icon-rss .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#f26522}.enabled-official-bg-color .one-elements-social_icon-shopping-cart .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#4caf50}.enabled-official-bg-color .one-elements-social_icon-skype .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#00aff0}.enabled-official-bg-color .one-elements-social_icon-slideshare .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#0077b5}.enabled-official-bg-color .one-elements-social_icon-snapchat .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#fffc00}.enabled-official-bg-color .one-elements-social_icon-soundcloud .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#f80}.enabled-official-bg-color .one-elements-social_icon-spotify .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#2ebd59}.enabled-official-bg-color .one-elements-social_icon-stack-overflow .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#fe7a15}.enabled-official-bg-color .one-elements-social_icon-steam .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#00adee}.enabled-official-bg-color .one-elements-social_icon-stumbleupon .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#eb4924}.enabled-official-bg-color .one-elements-social_icon-telegram .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#2ca5e0}.enabled-official-bg-color .one-elements-social_icon-thumb-tack .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#1aa1d8}.enabled-official-bg-color .one-elements-social_icon-tripadvisor .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#589442}.enabled-official-bg-color .one-elements-social_icon-tumblr .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#35465c}.enabled-official-bg-color .one-elements-social_icon-twitch .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#6441a5}.enabled-official-bg-color .one-elements-social_icon-twitter .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#1da1f2}.enabled-official-bg-color .one-elements-social_icon-vimeo .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#1ab7ea}.enabled-official-bg-color .one-elements-social_icon-vk .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#45668e}.enabled-official-bg-color .one-elements-social_icon-weibo .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#df2029}.enabled-official-bg-color .one-elements-social_icon-weixin .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#7bb32e}.enabled-official-bg-color .one-elements-social_icon-whatsapp .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#25d366}.enabled-official-bg-color .one-elements-social_icon-wordpress .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#21759b}.enabled-official-bg-color .one-elements-social_icon-xing .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#026466}.enabled-official-bg-color .one-elements-social_icon-yelp .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#af0606}.enabled-official-bg-color .one-elements-social_icon-youtube .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#cd201f}.enabled-official-bg-color .one-elements-social_icon-500px .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#0099e5}.enabled-official-bg-color-hover .one-elements-social_icon-android .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#a4c639}.enabled-official-bg-color-hover .one-elements-social_icon-apple .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#999}.enabled-official-bg-color-hover .one-elements-social_icon-behance .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#1769ff}.enabled-official-bg-color-hover .one-elements-social_icon-bitbucket .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#205081}.enabled-official-bg-color-hover .one-elements-social_icon-codepen .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#000}.enabled-official-bg-color-hover .one-elements-social_icon-delicious .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#39f}.enabled-official-bg-color-hover .one-elements-social_icon-deviantart .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#05cc47}.enabled-official-bg-color-hover .one-elements-social_icon-digg .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#005be2}.enabled-official-bg-color-hover .one-elements-social_icon-dribbble .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#ea4c89}.enabled-official-bg-color-hover .one-elements-social_icon-envelope .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#ea4335}.enabled-official-bg-color-hover .one-elements-social_icon-facebook .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#3b5998}.enabled-official-bg-color-hover .one-elements-social_icon-flickr .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#0063dc}.enabled-official-bg-color-hover .one-elements-social_icon-foursquare .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#2d5be3}.enabled-official-bg-color-hover .one-elements-social_icon-freecodecamp .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#006400}.enabled-official-bg-color-hover .one-elements-social_icon-github .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#333}.enabled-official-bg-color-hover .one-elements-social_icon-gitlab .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#e24329}.enabled-official-bg-color-hover .one-elements-social_icon-globe .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#818a91}.enabled-official-bg-color-hover .one-elements-social_icon-google-plus .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#dd4b39}.enabled-official-bg-color-hover .one-elements-social_icon-houzz .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#7ac142}.enabled-official-bg-color-hover .one-elements-social_icon-instagram .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#262626}.enabled-official-bg-color-hover .one-elements-social_icon-jsfiddle .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#487aa2}.enabled-official-bg-color-hover .one-elements-social_icon-link .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#818a91}.enabled-official-bg-color-hover .one-elements-social_icon-linkedin .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#0077b5}.enabled-official-bg-color-hover .one-elements-social_icon-medium .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#00ab6b}.enabled-official-bg-color-hover .one-elements-social_icon-meetup .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#ec1c40}.enabled-official-bg-color-hover .one-elements-social_icon-mixcloud .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#273a4b}.enabled-official-bg-color-hover .one-elements-social_icon-odnoklassniki .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#f4731c}.enabled-official-bg-color-hover .one-elements-social_icon-pinterest .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#bd081c}.enabled-official-bg-color-hover .one-elements-social_icon-product-hunt .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#da552f}.enabled-official-bg-color-hover .one-elements-social_icon-reddit .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#ff4500}.enabled-official-bg-color-hover .one-elements-social_icon-rss .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#f26522}.enabled-official-bg-color-hover .one-elements-social_icon-shopping-cart .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#4caf50}.enabled-official-bg-color-hover .one-elements-social_icon-skype .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#00aff0}.enabled-official-bg-color-hover .one-elements-social_icon-slideshare .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#0077b5}.enabled-official-bg-color-hover .one-elements-social_icon-snapchat .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#fffc00}.enabled-official-bg-color-hover .one-elements-social_icon-soundcloud .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#f80}.enabled-official-bg-color-hover .one-elements-social_icon-spotify .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#2ebd59}.enabled-official-bg-color-hover .one-elements-social_icon-stack-overflow .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#fe7a15}.enabled-official-bg-color-hover .one-elements-social_icon-steam .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#00adee}.enabled-official-bg-color-hover .one-elements-social_icon-stumbleupon .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#eb4924}.enabled-official-bg-color-hover .one-elements-social_icon-telegram .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#2ca5e0}.enabled-official-bg-color-hover .one-elements-social_icon-thumb-tack .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#1aa1d8}.enabled-official-bg-color-hover .one-elements-social_icon-tripadvisor .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#589442}.enabled-official-bg-color-hover .one-elements-social_icon-tumblr .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#35465c}.enabled-official-bg-color-hover .one-elements-social_icon-twitch .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#6441a5}.enabled-official-bg-color-hover .one-elements-social_icon-twitter .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#1da1f2}.enabled-official-bg-color-hover .one-elements-social_icon-vimeo .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#1ab7ea}.enabled-official-bg-color-hover .one-elements-social_icon-vk .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#45668e}.enabled-official-bg-color-hover .one-elements-social_icon-weibo .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#df2029}.enabled-official-bg-color-hover .one-elements-social_icon-weixin .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#7bb32e}.enabled-official-bg-color-hover .one-elements-social_icon-whatsapp .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#25d366}.enabled-official-bg-color-hover .one-elements-social_icon-wordpress .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#21759b}.enabled-official-bg-color-hover .one-elements-social_icon-xing .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#026466}.enabled-official-bg-color-hover .one-elements-social_icon-yelp .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#af0606}.enabled-official-bg-color-hover .one-elements-social_icon-youtube .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#cd201f}.enabled-official-bg-color-hover .one-elements-social_icon-500px .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#0099e5}.one-elements-button{cursor:pointer;text-decoration:none;line-height:1;background:rgba(0,0,0,0)!important;border:none!important;outline:none!important;display:inline-block;-webkit-border-radius:2px;border-radius:2px}.one-elements-button:focus,.one-elements-button:hover:focus{text-decoration:none}.one-elements-button>.one-elements-element__content{-webkit-border-radius:inherit;border-radius:inherit;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;color:#fff}.one-elements-button>.one-elements-element__regular-state .one-elements-element__state-inner{background:#0b52e0}.one-elements-button .one-elements-icon{position:relative}.one-elements-button .one-elements-icon>.one-elements-element__content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:100%;height:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;color:inherit;-webkit-border-radius:inherit;border-radius:inherit}.one-elements-button .one-elements-icon__svg{line-height:0}.one-elements-button__load_more{margin-top:32px}.one-elements-button__icon-right>.one-elements-element__content{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.one-elements-button__content_text{line-height:2;-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-button__type-flat.one-elements-button__size-xs .one-elements-button__content_text,.one-elements-button__type-flat.one-elements-button__size-xs .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-xs .one-elements-button__content_text,.one-elements-button__type-regular.one-elements-button__size-xs .one-elements-icon{font-size:14px}.one-elements-button__type-flat.one-elements-button__size-xs.one-elements-button__icon-left .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-xs.one-elements-button__icon-left .one-elements-icon{margin-right:7px}.one-elements-button__type-flat.one-elements-button__size-xs.one-elements-button__icon-right .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-xs.one-elements-button__icon-right .one-elements-icon{margin-left:7px}.one-elements-button__type-flat.one-elements-button__size-sm .one-elements-button__content_text,.one-elements-button__type-flat.one-elements-button__size-sm .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-sm .one-elements-button__content_text,.one-elements-button__type-regular.one-elements-button__size-sm .one-elements-icon{font-size:15px}.one-elements-button__type-flat.one-elements-button__size-sm.one-elements-button__icon-left .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-sm.one-elements-button__icon-left .one-elements-icon{margin-right:8px}.one-elements-button__type-flat.one-elements-button__size-sm.one-elements-button__icon-right .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-sm.one-elements-button__icon-right .one-elements-icon{margin-left:8px}.one-elements-button__type-flat.one-elements-button__size-md .one-elements-button__content_text,.one-elements-button__type-regular.one-elements-button__size-md .one-elements-button__content_text{font-size:17px;font-weight:600}.one-elements-button__type-flat.one-elements-button__size-md .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-md .one-elements-icon{font-size:20px}.one-elements-button__type-flat.one-elements-button__size-md.one-elements-button__icon-left .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-md.one-elements-button__icon-left .one-elements-icon{margin-right:9px}.one-elements-button__type-flat.one-elements-button__size-md.one-elements-button__icon-right .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-md.one-elements-button__icon-right .one-elements-icon{margin-left:9px}.one-elements-button__type-flat.one-elements-button__size-lg .one-elements-button__content_text,.one-elements-button__type-regular.one-elements-button__size-lg .one-elements-button__content_text{font-size:17px;font-weight:600}.one-elements-button__type-flat.one-elements-button__size-lg .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-lg .one-elements-icon{font-size:22px}.one-elements-button__type-flat.one-elements-button__size-lg.one-elements-button__icon-left .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-lg.one-elements-button__icon-left .one-elements-icon{margin-right:13px}.one-elements-button__type-flat.one-elements-button__size-lg.one-elements-button__icon-right .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-lg.one-elements-button__icon-right .one-elements-icon{margin-left:13px}.one-elements-button__type-flat.one-elements-button__size-xl .one-elements-button__content_text,.one-elements-button__type-regular.one-elements-button__size-xl .one-elements-button__content_text{font-size:18px;font-weight:600}.one-elements-button__type-flat.one-elements-button__size-xl .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-xl .one-elements-icon{font-size:24px}.one-elements-button__type-flat.one-elements-button__size-xl.one-elements-button__icon-left .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-xl.one-elements-button__icon-left .one-elements-icon{margin-right:15px}.one-elements-button__type-flat.one-elements-button__size-xl.one-elements-button__icon-right .one-elements-icon,.one-elements-button__type-regular.one-elements-button__size-xl.one-elements-button__icon-right .one-elements-icon{margin-left:15px}.one-elements-button__type-regular.one-elements-button__size-xs{padding:2px 14px}.one-elements-button__type-regular.one-elements-button__size-sm{padding:6px 17px}.one-elements-button__type-regular.one-elements-button__size-md{padding:9px 25px}.one-elements-button__type-regular.one-elements-button__size-lg{padding:12px 30px}.one-elements-button__type-regular.one-elements-button__size-xl{padding:19px 30px}.one-elements-button__type-circle{text-align:center;padding:0!important;-webkit-border-radius:50%;border-radius:50%}.one-elements-button__type-circle>.one-elements-element__content{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.one-elements-button__type-circle.one-elements-button__size-xs{line-height:32px;width:32px;height:32px}.one-elements-button__type-circle.one-elements-button__size-xs .one-elements-icon>.one-elements-element__content{font-size:14px}.one-elements-button__type-circle.one-elements-button__size-sm{line-height:42px;width:42px;height:42px}.one-elements-button__type-circle.one-elements-button__size-sm .one-elements-icon>.one-elements-element__content{font-size:18px}.one-elements-button__type-circle.one-elements-button__size-md{line-height:52px;width:52px;height:52px}.one-elements-button__type-circle.one-elements-button__size-md .one-elements-icon>.one-elements-element__content{font-size:22px}.one-elements-button__type-circle.one-elements-button__size-lg{line-height:58px;width:58px;height:58px}.one-elements-button__type-circle.one-elements-button__size-lg .one-elements-icon>.one-elements-element__content{font-size:25px}.one-elements-button__type-circle.one-elements-button__size-xl{line-height:74px;width:74px;height:74px}.one-elements-button__type-circle.one-elements-button__size-xl .one-elements-icon>.one-elements-element__content{font-size:28px}.one-elements-button__type-flat{padding:0!important;-webkit-border-radius:0!important;border-radius:0!important}.one-elements-button__type-flat .one-elements-element__hover-state,.one-elements-button__type-flat .one-elements-element__regular-state{display:none}.one-elements-button__type-flat>.one-elements-element__content{color:#0b52e0}.one-elements-button__type-flat .one-elements-button__content_text{position:relative}.one-elements-button__type-flat .one-elements-button__underline{position:absolute;bottom:0;height:2px;width:100%;left:0;right:auto;-webkit-transform:none;-ms-transform:none;transform:none;background:#0b52e0;-webkit-border-radius:4px;border-radius:4px;-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-button__type-flat.one-elements-button__size-xs .one-elements-button__content_text{line-height:1.6}.one-elements-button__type-flat.one-elements-button__size-sm .one-elements-button__content_text{line-height:1.54}.one-elements-button__type-flat.one-elements-button__size-md .one-elements-button__content_text{line-height:1.45}.one-elements-button__type-flat.one-elements-button__size-lg .one-elements-button__content_text{line-height:1.42}.one-elements-button__type-flat.one-elements-button__size-xl .one-elements-button__content_text{line-height:1.39}.elementor-align-center .one-elements-button__underline{left:50%;right:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.elementor-align-left .one-elements-button__underline{left:0;right:auto;-webkit-transform:none;-ms-transform:none;transform:none}.elementor-align-right .one-elements-button__underline{left:auto;right:0;-webkit-transform:none;-ms-transform:none;transform:none}.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--2x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after,.oee-button-effect--2x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before,.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--2x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after,.oee-button-effect--2x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before,.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:after,.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:before,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:after,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:before,.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:after,.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:before,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:after,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:before,.oee-button-effect--pulse .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--pulse .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after,.oee-button-effect--pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before{width:100%;height:100%;position:absolute;top:50%;left:50%;display:block;content:"";-webkit-border-radius:inherit;border-radius:inherit;-webkit-transform:scale(1) translateY(-50%) translateX(-50%);-ms-transform:scale(1) translateY(-50%) translateX(-50%);transform:scale(1) translateY(-50%) translateX(-50%);opacity:0}.oee-button-effect--pulse .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--pulse .one-elements-button.one-elements-button__type-flat .one-elements-icon:before,.oee-button-effect--pulse .one-elements-button.one-elements-button__type-regular .one-elements-icon:before{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse 2.6s cubic-bezier(.25,.9,.2,1) .4s infinite;animation:oee-line-pulse 2.6s cubic-bezier(.25,.9,.2,1) .4s infinite}.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-flat .one-elements-icon:before,.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-regular .one-elements-icon:before{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse 2.6s cubic-bezier(.25,.9,.2,1) 0s infinite;animation:oee-line-pulse 2.6s cubic-bezier(.25,.9,.2,1) 0s infinite}.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-flat .one-elements-icon:after,.oee-button-effect--2x-pulse .one-elements-button.one-elements-button__type-regular .one-elements-icon:after{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse 2.6s cubic-bezier(.25,.9,.2,1) .4s infinite;animation:oee-line-pulse 2.6s cubic-bezier(.25,.9,.2,1) .4s infinite}.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-flat .one-elements-icon:before,.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-regular .one-elements-icon:before{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse 1.4s linear 0s infinite;animation:oee-line-pulse 1.4s linear 0s infinite}.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-flat .one-elements-icon:after,.oee-button-effect--2x-pulse-2 .one-elements-button.one-elements-button__type-regular .one-elements-icon:after{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse 1.4s linear .7s infinite;animation:oee-line-pulse 1.4s linear .7s infinite}.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse-2 3s cubic-bezier(.25,.9,.2,1) 0s infinite;animation:oee-line-pulse-2 3s cubic-bezier(.25,.9,.2,1) 0s infinite}.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse-2 3s cubic-bezier(.25,.9,.2,1) .4s infinite;animation:oee-line-pulse-2 3s cubic-bezier(.25,.9,.2,1) .4s infinite}.oee-button-effect--3x-pulse .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:after,.oee-button-effect--3x-pulse .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:after{border:1px solid rgba(132,139,152,.35);-webkit-animation:oee-line-pulse-2 3s cubic-bezier(.25,.9,.2,1) .8s infinite;animation:oee-line-pulse-2 3s cubic-bezier(.25,.9,.2,1) .8s infinite}.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle:before,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:before{background-color:rgba(132,139,152,.2);-webkit-animation:oee-bg-grow 4s cubic-bezier(.25,.9,.2,1) 0s infinite;animation:oee-bg-grow 4s cubic-bezier(.25,.9,.2,1) 0s infinite}.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:after,.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:before,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:after,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:before{width:200%;height:200%;border:1px solid rgba(132,139,152,.2)}.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle:after,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon:after{-webkit-animation:oee-line-pulse-3 4s cubic-bezier(.25,.9,.2,1) .7s infinite;animation:oee-line-pulse-3 4s cubic-bezier(.25,.9,.2,1) .7s infinite}.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:before,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:before{-webkit-animation:oee-line-pulse-3 4s cubic-bezier(.25,.9,.2,1) 1.05s infinite;animation:oee-line-pulse-3 4s cubic-bezier(.25,.9,.2,1) 1.05s infinite}.oee-button-effect--3x-pulse-2 .one-elements-button.one-elements-button__type-circle>.one-elements-element__content:after,.oee-button-effect--3x-pulse-2 .one-elements-button:not(.one-elements-button__type-circle) .one-elements-icon>.one-elements-element__content:after{-webkit-animation:oee-line-pulse-3 4s cubic-bezier(.25,.9,.2,1) 1.4s infinite;animation:oee-line-pulse-3 4s cubic-bezier(.25,.9,.2,1) 1.4s infinite}@-webkit-keyframes oee-bg-grow{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1);transform:translate3d(-50%,-50%,0) scale(1);opacity:1}to{-webkit-transform:translate3d(-50%,-50%,0) scale(2.5);transform:translate3d(-50%,-50%,0) scale(2.5);opacity:0}}@keyframes oee-bg-grow{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1);transform:translate3d(-50%,-50%,0) scale(1);opacity:1}to{-webkit-transform:translate3d(-50%,-50%,0) scale(2.5);transform:translate3d(-50%,-50%,0) scale(2.5);opacity:0}}@-webkit-keyframes oee-line-pulse{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1);transform:translate3d(-50%,-50%,0) scale(1);opacity:1}to{-webkit-transform:translate3d(-50%,-50%,0) scale(1.7);transform:translate3d(-50%,-50%,0) scale(1.7);opacity:0}}@keyframes oee-line-pulse{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1);transform:translate3d(-50%,-50%,0) scale(1);opacity:1}to{-webkit-transform:translate3d(-50%,-50%,0) scale(1.7);transform:translate3d(-50%,-50%,0) scale(1.7);opacity:0}}@-webkit-keyframes oee-line-pulse-2{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1.1);transform:translate3d(-50%,-50%,0) scale(1.1);opacity:1}80%{opacity:0}to{-webkit-transform:translate3d(-50%,-50%,0) scale(2.2);transform:translate3d(-50%,-50%,0) scale(2.2)}}@keyframes oee-line-pulse-2{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1.1);transform:translate3d(-50%,-50%,0) scale(1.1);opacity:1}80%{opacity:0}to{-webkit-transform:translate3d(-50%,-50%,0) scale(2.2);transform:translate3d(-50%,-50%,0) scale(2.2)}}@-webkit-keyframes oee-line-pulse-3{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1.25);transform:translate3d(-50%,-50%,0) scale(1.25);opacity:1}80%{opacity:0}to{-webkit-transform:translate3d(-50%,-50%,0) scale(2.5);transform:translate3d(-50%,-50%,0) scale(2.5)}}@keyframes oee-line-pulse-3{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1.25);transform:translate3d(-50%,-50%,0) scale(1.25);opacity:1}80%{opacity:0}to{-webkit-transform:translate3d(-50%,-50%,0) scale(2.5);transform:translate3d(-50%,-50%,0) scale(2.5)}}@media (max-width:1024px){.elementor-tablet-align-center .one-elements-button__underline{left:50%;right:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.elementor-tablet-align-left .one-elements-button__underline{left:0;right:auto;-webkit-transform:none;-ms-transform:none;transform:none}.elementor-tablet-align-right .one-elements-button__underline{left:auto;right:0;-webkit-transform:none;-ms-transform:none;transform:none}}@media (max-width:767px){.elementor-mobile-align-center .one-elements-button__underline{left:50%;right:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.elementor-mobile-align-left .one-elements-button__underline{left:0;right:auto;-webkit-transform:none;-ms-transform:none;transform:none}.elementor-mobile-align-right .one-elements-button__underline{left:auto;right:0;-webkit-transform:none;-ms-transform:none;transform:none}}.one-elements-image-area{display:inline-block;position:relative}.one-elements-image-area .one-elements-image--caption{margin-top:10px;font-size:medium}.one-elements-image{overflow:hidden}.one-elements-image>.one-elements-element__content{-webkit-border-radius:inherit;border-radius:inherit;font-size:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden}.one-elements-image>.one-elements-element__content .oee__image{-webkit-border-radius:inherit;border-radius:inherit;width:100%;height:auto;-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.oee_image--style-1 .one-elements-image-area:before{content:"";position:absolute;width:100%;height:100%;background:#f9fafc}.oee_image--style-1.oee_image--style-position_top-left .one-elements-image-area{margin-top:30px;margin-left:30px}.oee_image--style-1.oee_image--style-position_top-left .one-elements-image-area:before{top:-30px;left:-30px}.oee_image--style-1.oee_image--style-position_top-right .one-elements-image-area{margin-top:30px;margin-right:30px}.oee_image--style-1.oee_image--style-position_top-right .one-elements-image-area:before{top:-30px;right:-30px}.oee_image--style-1.oee_image--style-position_bottom-left .one-elements-image-area{margin-bottom:30px;margin-left:30px}.oee_image--style-1.oee_image--style-position_bottom-left .one-elements-image-area:before{bottom:-30px;left:-30px}.oee_image--style-1.oee_image--style-position_bottom-right .one-elements-image-area{margin-bottom:30px;margin-right:30px}.oee_image--style-1.oee_image--style-position_bottom-right .one-elements-image-area:before{bottom:-30px;right:-30px}.one-elements-single-logo{line-height:1}.one-elements-single-logo .one-elements-element__content{-ms-flex-align:center;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center}.one-elements-single-logo .one-elements-element__content,.one-elements-single-logo .one-elements-image{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.one-elements-single-logo .one-elements-image{width:100%;-ms-flex-align:center}.one-elements-single-logo .one-elements-image img{max-width:100%;max-height:100%}.one-elements-single-logo .one-elements-heading{-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.oee-logos--layout-default .one-elements-single-logo .one-elements-element__content,.oee-logos--layout-default .one-elements-single-logo .one-elements-image{height:100%}.oee-logos--layout-1 .one-elements-single-logo .one-elements-element__content{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.oee-logos--layout-1 .one-elements-single-logo .one-elements-image{max-height:85%}.oee-logos--layout-1 .one-elements-single-logo .one-elements-heading{margin-top:20px}.one-elements-accordion{-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.one-elements-accordion .one-elements-accordion--single{background:#fff;margin-bottom:24px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 5px 80px 0 rgba(29,42,64,.03);box-shadow:0 5px 80px 0 rgba(29,42,64,.03);-webkit-transition:inherit;-o-transition:inherit;transition:inherit;overflow-y:hidden}.one-elements-accordion .one-elements-accordion--title{padding:20px 24px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.one-elements-accordion .one-elements-accordion--title,.one-elements-accordion .one-elements-accordion--title .oee__icon_indicator,.one-elements-accordion .one-elements-accordion--title .oee__icon_indicator span,.one-elements-accordion .one-elements-accordion--title .oee__icon_indicator span>*,.one-elements-accordion .one-elements-accordion--title .oee__title{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-accordion .one-elements-accordion--title .oee__title{font-size:20px;width:100%;margin:0}.one-elements-accordion .one-elements-accordion--content{display:none;padding:20px 24px;-webkit-transition-timing-function:ease-in-out;-o-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.one-elements-accordion .one-elements-accordion--content>:first-child{margin-top:0}.one-elements-accordion .one-elements-accordion--content>:last-child{margin-bottom:0}.one-elements-accordion .oee__icon_indicator{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);margin-top:6px}.one-elements-accordion .oee__icon_indicator span{width:22px;height:22px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.one-elements-accordion .oee__icon_indicator span i{font-size:22px}.one-elements-accordion .oee_is--active .one-elements-accordion--title{background:#424242}.one-elements-accordion .oee_is--active .one-elements-accordion--title .oee__icon_indicator span>*,.one-elements-accordion .oee_is--active .one-elements-accordion--title .oee__title{color:#fff}.one-elements-accordion.oee__has_secondary--icon-indicator .oee__icon_indicator span:last-child:not(:first-child){display:none}.one-elements-accordion.oee__has_secondary--icon-indicator .oee_is--active .oee__icon_indicator span:first-child{display:none}.one-elements-accordion.oee__has_secondary--icon-indicator .oee_is--active .oee__icon_indicator span:last-child{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.one-elements-accordion.oee__icon-indicator-position--left .oee__icon_indicator{margin-right:10px}.one-elements-accordion.oee__icon-indicator-position--right .oee__icon_indicator{margin-left:16px}.one-elements-accordion.oee__icon-indicator-position--right .one-elements-accordion--title{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.one-elements-accordion:not(.oee__has_secondary--icon-indicator).oee__icon-indicator-position--left .oee_is--active .oee__icon_indicator{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.one-elements-accordion:not(.oee__has_secondary--icon-indicator).oee__icon-indicator-position--right .oee_is--active .oee__icon_indicator{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.one-elements-counter{-webkit-box-shadow:0 8px 40px rgba(11,82,224,.1);box-shadow:0 8px 40px rgba(11,82,224,.1);-webkit-border-radius:4px;border-radius:4px;padding:32px}.one-elements-counter>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:#fff}.one-elements-counter .counter_icon__wrapper{font-size:0;margin-bottom:20px}.one-elements-counter .one-elements-heading .one-elements-element__content{margin-bottom:0;font-size:16px}.one-elements-counter .one-elements-counter__number-wrapper{margin-bottom:10px}.one-elements-counter .one-elements-counter__number-wrapper>*{display:inline-block}.one-elements-counter .one-elements-counter__number-wrapper,.one-elements-counter .one-elements-counter__number-wrapper>*{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-counter .one-elements-counter__number{font-size:42px;font-weight:700;line-height:1.2}.one-elements-counter .one-elements-counter__content_icon{width:84px;height:84px;line-height:84px}.one-elements-counter .one-elements-counter__content_icon .one-elements-element__content{font-size:42px}.one-elements-counter .one-elements-counter__content_icon .one-elements-element__content>*{color:#fff}.one-elements-counter .one-elements-counter__content_icon .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#0b52e0}.one-elements-counter .counter_icon__wrapper,.one-elements-counter .one-elements-counter__content_icon,.one-elements-counter .one-elements-heading{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-counter__layout_2{padding-top:42px}.one-elements-counter__layout_2 .counter_icon__wrapper{margin-top:-74px}.one-elements-counter__layout_3 .counter_icon__wrapper{margin:0 16px 0 0}.one-elements-counter__layout_4 .counter_icon__wrapper{margin:0 0 0 16px}.one-elements-counter__layout_5{padding-left:42px}.one-elements-counter__layout_5 .counter_icon__wrapper{margin:0 16px 0 -74px}.one-elements-counter__layout_6{padding-right:42px}.one-elements-counter__layout_6 .counter_icon__wrapper{margin:0 -74px 0 16px}.one-elements-counter__layout_4 .oee__row .oee__column:nth-child(2),.one-elements-counter__layout_6 .oee__row .oee__column:nth-child(2){width:100%}.one-elements-icon_box{-webkit-box-shadow:0 8px 40px rgba(11,82,224,.1);box-shadow:0 8px 40px rgba(11,82,224,.1);-webkit-border-radius:4px;border-radius:4px}.one-elements-icon_box>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:#fff}.one-elements-icon_box>.one-elements-element__content{padding:32px}.one-elements-icon_box .icon_box_icon__wrapper{font-size:0}.one-elements-icon_box .icon_box_icon__wrapper,.one-elements-icon_box .one-elements-heading .one-elements-element__content{margin-bottom:24px}.one-elements-icon_box .one-elements-icon_box__content_icon{width:84px;height:84px;line-height:84px}.one-elements-icon_box .one-elements-icon_box__content_icon .one-elements-element__content{font-size:42px}.one-elements-icon_box .one-elements-icon_box__content_icon .one-elements-element__content>*{color:#fff}.one-elements-icon_box .one-elements-icon_box__content_icon .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#0b52e0}.one-elements-icon_box .elementor-text-editor,.one-elements-icon_box .icon_box_icon__wrapper,.one-elements-icon_box .one-elements-button,.one-elements-icon_box .one-elements-divider__wrapper,.one-elements-icon_box .one-elements-heading,.one-elements-icon_box .one-elements-icon_box__content_icon{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-icon_box .oee__floating-text{position:absolute}.one-elements-icon_box .oee__floating-text,.one-elements-icon_box .oee__floating-text span{-webkit-transition:inherit;-o-transition:inherit;transition:inherit;display:inline-block}.oee_ft-position_x_left .oee__floating-text{left:0}.oee_ft-position_x_right .oee__floating-text{right:0}.oee_ft-position_y_top .oee__floating-text{top:0}.oee_ft-position_y_bottom .oee__floating-text{bottom:0}.oee_ft-position_x_center .oee__floating-text{left:50%}.oee_ft-position_y_center .oee__floating-text{top:50%}.oee_ft-position_x_center.oee_ft-position_y_center .oee__floating-text{-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.oee_ft-position_x_center:not(.oee_ft-position_y_center) .oee__floating-text{-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.oee_ft-position_y_center:not(.oee_ft-position_x_center) .oee__floating-text{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.one-elements-icon-box__border-gradient .one-elements-element__state-inner{-webkit-border-radius:inherit;border-radius:inherit}.one-elements-icon_box__layout_2{padding-top:42px}.one-elements-icon_box__layout_2 .icon_box_icon__wrapper{margin-top:-74px}.one-elements-icon_box__layout_4 .oee__row .oee__column:last-child{width:100%}.one-elements-icon_box__layout_3 .icon_box_icon__wrapper,.one-elements-icon_box__layout_5 .icon_box_icon__wrapper{margin-right:16px}.one-elements-icon_box__layout_4 .icon_box_icon__wrapper,.one-elements-icon_box__layout_6 .icon_box_icon__wrapper{margin-left:16px}.one-elements-icon_box__layout_7{padding-left:42px}.one-elements-icon_box__layout_7 .icon_box_icon__wrapper{margin:0 16px 0 -74px}.one-elements-icon_box__layout_8{padding-right:42px}.one-elements-icon_box__layout_8 .icon_box_icon__wrapper{margin:0 -74px 0 16px}.one-elements-posts_single{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-shadow:0 20px 38px 0 rgba(152,163,203,.08);box-shadow:0 20px 38px 0 rgba(152,163,203,.08);padding:45px 36px 32px}.one-elements-posts_single.oee__dynamic-height-ratio:before{padding-bottom:136.365%}.one-elements-posts_single.oee__dynamic-height-fixed{height:460px}.one-elements-posts_single .elementor-text-editor{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-posts_single,.one-elements-posts_single>.one-elements-element__border-gradient .one-elements-element__state-inner,.one-elements-posts_single>.one-elements-element__hover-state,.one-elements-posts_single>.one-elements-element__regular-state{-webkit-border-radius:4px;border-radius:4px}.one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner,.one-elements-posts_single>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:#fff}.one-elements-posts_single .one-elements-heading:not(:last-child){margin-bottom:12px}.one-elements-posts_single .one-elements-heading .one-elements-element__content{color:#434a55;font-family:Lora,Sans-serif;font-size:22px;font-weight:400;line-height:34px}.one-elements-posts_single .one-elements-heading .one-elements-element__content a{color:inherit;-webkit-transition:none;-o-transition:none;transition:none}.one-elements-posts_single .elementor-text-editor{color:#7a8189}.one-elements-posts_single .elementor-text-editor p{font-family:Nunito Sans,Sans-serif;font-size:18px;font-weight:400;line-height:30px;height:60px;margin-bottom:0}.one-elements-posts_single .author-info>*{display:inline-block;vertical-align:middle}.one-elements-posts_single .author-info,.one-elements-posts_single .author-info a{display:inline-block}.one-elements-posts_single .author-avatar{-webkit-border-radius:50%;border-radius:50%;overflow:hidden;width:38px;height:38px;background:#fff;border:2px solid #fff;margin-right:10px}.one-elements-posts_single .author-avatar *{-webkit-border-radius:inherit;border-radius:inherit}.one-elements-posts_single .author-name{text-transform:capitalize}.one-elements-posts_single .author-name,.one-elements-posts_single .author-name a{color:#424242}.one-elements-posts_single .author-name a{font-size:16px}.one-elements-posts_single .post-categories a{margin-right:8px}.one-elements-posts_single .one-elements-button{padding:0;margin-top:25px;margin-bottom:-5px}.one-elements-posts_single .one-elements-button>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:rgba(0,0,0,0)}.one-elements-posts_single .one-elements-button .one-elements-button__content_text{color:#d9ad4e;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:600;line-height:19px}.one-elements-posts_single .one-elements-button .one-elements-icon .one-elements-element__regular-state .one-elements-element__state-inner{background-color:rgba(0,0,0,0)}.one-elements-posts_single .one-elements-button .one-elements-icon__content_icon>*{color:#e5aa4b}.one-elements-posts_single .oee_post_meta--info{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-posts_single .oee_post_meta--info:not(:last-child){margin-bottom:10px}.one-elements-posts_single .oee_post_meta--info>*{margin-right:24px;margin-bottom:16px}.one-elements-posts_single .oee_post_meta--info .oee_meta_text,.one-elements-posts_single .oee_post_meta--info .oee_post_meta--single,.one-elements-posts_single .oee_post_meta--info i{-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-posts_single .oee_post_meta--info i{margin-right:8px}.card_style--classic-card-1 .one-elements-posts_single:hover .oee_post_meta--single .oee_meta_text,.card_style--classic-card-1 .one-elements-posts_single:hover .oee_post_meta--single i{color:#fff}.card_style--classic-card-3 .one-elements-posts_single .author-name,.card_style--classic-card-3 .one-elements-posts_single .author-name a,.card_style--classic-card-3 .one-elements-posts_single .oee_post_meta--single .oee_meta_text,.card_style--classic-card-3 .one-elements-posts_single .oee_post_meta--single i,.card_style--classic-card-4 .one-elements-posts_single .author-name,.card_style--classic-card-4 .one-elements-posts_single .author-name a,.card_style--classic-card-4 .one-elements-posts_single .oee_post_meta--single .oee_meta_text,.card_style--classic-card-4 .one-elements-posts_single .oee_post_meta--single i,.card_style--classic-card-5 .one-elements-posts_single .author-name,.card_style--classic-card-5 .one-elements-posts_single .author-name a,.card_style--classic-card-5 .one-elements-posts_single .oee_post_meta--single .oee_meta_text,.card_style--classic-card-5 .one-elements-posts_single .oee_post_meta--single i,.card_style--modern-card .one-elements-posts_single .author-name,.card_style--modern-card .one-elements-posts_single .author-name a,.card_style--modern-card .one-elements-posts_single .oee_post_meta--single .oee_meta_text,.card_style--modern-card .one-elements-posts_single .oee_post_meta--single i{color:#fff}.card_style--classic-card .oee__item{width:33.33333%}.card_style--classic-card-1 .one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner{background-color:#d9ad4e}.card_style--classic-card-1 .one-elements-posts_single:hover{-webkit-box-shadow:0 20px 38px 0 rgba(217,173,78,.18);box-shadow:0 20px 38px 0 rgba(217,173,78,.18)}.card_style--classic-card-1 .one-elements-posts_single:hover .one-elements-heading .one-elements-element__content{color:#fff}.card_style--classic-card-1 .one-elements-posts_single:hover .elementor-text-editor{color:#fff}.card_style--classic-card-1 .one-elements-posts_single:hover .one-elements-button .one-elements-button__content_text{color:#fff}.card_style--classic-card-1 .one-elements-posts_single:hover .one-elements-button .one-elements-icon__content_icon>*{color:#fff}.card_style--classic-card-2 .one-elements-posts_single{padding:48px 36px 42px;-webkit-box-shadow:none;box-shadow:none}.card_style--classic-card-2 .one-elements-posts_single>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:rgba(0,0,0,0)}.card_style--classic-card-2 .one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner{background-color:#fff}.card_style--classic-card-2 .one-elements-posts_single .one-elements-heading:not(:last-child){margin-bottom:16px}.card_style--classic-card-2 .one-elements-posts_single .elementor-text-editor p{height:84px}.card_style--classic-card-2 .one-elements-posts_single .button_posts .one-elements-button__content_text{color:#394049;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:700}.card_style--classic-card-2 .one-elements-posts_single:hover{-webkit-box-shadow:0 20px 38px 0 rgba(152,163,203,.15);box-shadow:0 20px 38px 0 rgba(152,163,203,.15)}.card_style--classic-card-3 .one-elements-posts_single,.card_style--classic-card-4 .one-elements-posts_single,.card_style--classic-card-5 .one-elements-posts_single{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:perspective(1450px) scale(1);transform:perspective(1450px) scale(1)}.card_style--classic-card-3 .one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner,.card_style--classic-card-3 .one-elements-posts_single>.one-elements-element__regular-state .one-elements-element__state-inner,.card_style--classic-card-4 .one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner,.card_style--classic-card-4 .one-elements-posts_single>.one-elements-element__regular-state .one-elements-element__state-inner,.card_style--classic-card-5 .one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner,.card_style--classic-card-5 .one-elements-posts_single>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:#222738}.card_style--classic-card-3 .one-elements-posts_single .one-elements-heading:not(:last-child),.card_style--classic-card-4 .one-elements-posts_single .one-elements-heading:not(:last-child),.card_style--classic-card-5 .one-elements-posts_single .one-elements-heading:not(:last-child){margin-bottom:16px}.card_style--classic-card-3 .one-elements-posts_single .elementor-text-editor,.card_style--classic-card-3 .one-elements-posts_single .one-elements-heading .one-elements-element__content,.card_style--classic-card-4 .one-elements-posts_single .elementor-text-editor,.card_style--classic-card-4 .one-elements-posts_single .one-elements-heading .one-elements-element__content,.card_style--classic-card-5 .one-elements-posts_single .elementor-text-editor,.card_style--classic-card-5 .one-elements-posts_single .one-elements-heading .one-elements-element__content{color:#fff}.card_style--classic-card-3 .one-elements-posts_single .elementor-text-editor p,.card_style--classic-card-4 .one-elements-posts_single .elementor-text-editor p,.card_style--classic-card-5 .one-elements-posts_single .elementor-text-editor p{height:84px}.card_style--classic-card-3 .one-elements-posts_single .button_posts .one-elements-button__content_text,.card_style--classic-card-4 .one-elements-posts_single .button_posts .one-elements-button__content_text,.card_style--classic-card-5 .one-elements-posts_single .button_posts .one-elements-button__content_text{color:#fff;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:700}.card_style--classic-card-3 .one-elements-posts_single{margin-right:-1px;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:all .45s cubic-bezier(.24,1,.3,1);-o-transition:all .45s cubic-bezier(.24,1,.3,1);transition:all .45s cubic-bezier(.24,1,.3,1)}.card_style--classic-card-3 .one-elements-posts_single,.card_style--classic-card-3 .one-elements-posts_single>.one-elements-element__border-gradient .one-elements-element__state-inner,.card_style--classic-card-3 .one-elements-posts_single>.one-elements-element__hover-state,.card_style--classic-card-3 .one-elements-posts_single>.one-elements-element__regular-state{-webkit-border-radius:0;border-radius:0}.card_style--classic-card-3 .one-elements-posts_single:hover{-webkit-box-shadow:-15px 0 50px 0 rgba(55,60,68,.15),20px 30px 60px 0 rgba(55,60,68,.15);box-shadow:-15px 0 50px 0 rgba(55,60,68,.15),20px 30px 60px 0 rgba(55,60,68,.15);-webkit-transform:perspective(1450px) scale(1.08);transform:perspective(1450px) scale(1.08)}.card_style--classic-card-3 .one-elements-posts_single:hover>.one-elements-element__hover-state,.card_style--classic-card-3 .one-elements-posts_single:hover>.one-elements-element__regular-state{overflow:hidden}.card_style--classic-card-3 .one-elements-posts_single:hover>.one-elements-element__hover-state>*,.card_style--classic-card-3 .one-elements-posts_single:hover>.one-elements-element__regular-state>*{-webkit-transform:scale(1.08);-ms-transform:scale(1.08);transform:scale(1.08)}.card_style--classic-card-4 .one-elements-posts_single,.card_style--classic-card-5 .one-elements-posts_single{overflow:hidden;-webkit-box-shadow:0 20px 38px 0 rgba(152,163,203,.08);box-shadow:0 20px 38px 0 rgba(152,163,203,.08)}.card_style--classic-card-4 .one-elements-posts_single>.one-elements-element__content,.card_style--classic-card-5 .one-elements-posts_single>.one-elements-element__content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:inherit;-webkit-align-items:inherit;-ms-flex-align:inherit;align-items:inherit;-webkit-box-pack:inherit;-webkit-justify-content:inherit;-ms-flex-pack:inherit;justify-content:inherit}.card_style--classic-card-4 .one-elements-posts_single:hover>.one-elements-element__hover-state,.card_style--classic-card-4 .one-elements-posts_single:hover>.one-elements-element__regular-state,.card_style--classic-card-5 .one-elements-posts_single:hover>.one-elements-element__hover-state,.card_style--classic-card-5 .one-elements-posts_single:hover>.one-elements-element__regular-state{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.card_style--classic-card-4 .one-elements-posts_single .author-info{position:absolute;top:45px;left:35px}.card_style--classic-card-4 .one-elements-posts_single>.one-elements-element__content{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.card_style--classic-card-5 .one-elements-posts_single .author-info{position:absolute;bottom:45px;left:35px}.card_style--classic-card-5 .one-elements-posts_single>.one-elements-element__content{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.card_style--modern-card .one-elements-posts_single{padding:45px 30px 40px;overflow:hidden;-webkit-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:perspective(1450px) scale(1);transform:perspective(1450px) scale(1)}.card_style--modern-card .one-elements-posts_single>.one-elements-element__hover-state,.card_style--modern-card .one-elements-posts_single>.one-elements-element__regular-state{overflow:hidden}.card_style--modern-card .one-elements-posts_single>.one-elements-element__hover-state .one-elements-element__state-inner,.card_style--modern-card .one-elements-posts_single>.one-elements-element__regular-state .one-elements-element__state-inner{background-color:#222738;background-repeat:no-repeat;background-size:cover;background-position:50%}.card_style--modern-card .one-elements-posts_single .one-elements-heading:not(:last-child){margin-bottom:14px}.card_style--modern-card .one-elements-posts_single .one-elements-heading .one-elements-element__content{color:#fff;font-size:22px;line-height:1.5}.card_style--modern-card .one-elements-posts_single .elementor-text-editor{color:#f2f2f2}.card_style--modern-card .one-elements-posts_single .one-elements-button{margin-top:20px}.card_style--modern-card .one-elements-posts_single .one-elements-button .one-elements-icon__content_icon i{color:#e5aa4b}.card_style--modern-card .one-elements-posts_single:hover>.one-elements-element__hover-state,.card_style--modern-card .one-elements-posts_single:hover>.one-elements-element__regular-state{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.card_style--modern-card .oee__item{float:left;height:336px}.card_style--modern-card .oee__item>*{height:100%!important}.card_style--modern-card .oee__item--sm{width:25%!important}.card_style--modern-card .oee__item--md{width:50%!important}.card_style--modern-card .oee__item--lg{width:50%!important;height:672px}.card_style--post-card .one-elements-posts_single{padding:0;-webkit-box-shadow:none;box-shadow:none}.card_style--post-card .one-elements-posts_single>.one-elements-element__hover-state,.card_style--post-card .one-elements-posts_single>.one-elements-element__regular-state{display:none}.card_style--post-card .one-elements-posts_single .one-elements-heading:not(:last-child){margin-bottom:8px}.card_style--post-card .one-elements-posts_single .one-elements-heading .one-elements-element__content{color:#373c44}.card_style--post-card .one-elements-posts_single .one-elements-image{overflow:hidden;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-shadow:0 20px 38px 0 rgba(152,163,203,.08);box-shadow:0 20px 38px 0 rgba(152,163,203,.08);margin-bottom:22px}.card_style--post-card .one-elements-posts_single .one-elements-image.oee__dynamic-height-ratio:before{padding-bottom:68%}.card_style--post-card .one-elements-posts_single .one-elements-image>.one-elements-element__hover-state .one-elements-element__state-inner:after,.card_style--post-card .one-elements-posts_single .one-elements-image>.one-elements-element__regular-state .one-elements-element__state-inner:after{background-color:#1c1d20;opacity:.12}.card_style--post-card .one-elements-posts_single .one-elements-image,.card_style--post-card .one-elements-posts_single .one-elements-image .one-elements-element__border-gradient .one-elements-element__state-inner,.card_style--post-card .one-elements-posts_single .one-elements-image .one-elements-element__hover-state,.card_style--post-card .one-elements-posts_single .one-elements-image .one-elements-element__regular-state{-webkit-border-radius:4px;border-radius:4px}.card_style--post-card .one-elements-posts_single .one-elements-image .one-elements-element__content{display:block}.card_style--post-card .one-elements-posts_single .one-elements-image .one-elements-element__content>img{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:perspective(1450px) scale(1);transform:perspective(1450px) scale(1);-webkit-transition:inherit;-o-transition:inherit;transition:inherit;width:100%}.card_style--post-card .one-elements-posts_single .one-elements-button{margin-bottom:0;margin-top:16px}.card_style--post-card .one-elements-posts_single:hover .one-elements-image .one-elements-element__content>img{-webkit-transform:scale(1.15);-ms-transform:scale(1.15);transform:scale(1.15)}.card_style--post-card-2 .one-elements-posts_single .one-elements-image>.one-elements-element__hover-state .one-elements-element__state-inner:after,.card_style--post-card-3 .one-elements-posts_single .one-elements-image>.one-elements-element__hover-state .one-elements-element__state-inner:after,.card_style--post-card-4 .one-elements-posts_single .one-elements-image>.one-elements-element__hover-state .one-elements-element__state-inner:after{opacity:.7}.card_style--post-card-2 .one-elements-posts_single .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back),.card_style--post-card-3 .one-elements-posts_single .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back),.card_style--post-card-4 .one-elements-posts_single .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back){position:absolute;top:0;left:0;padding:24px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.card_style--post-card-2 .one-elements-posts_single .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back){-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.card_style--post-card-2 .one-elements-posts_single .one-elements-button{margin:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0}.card_style--post-card-2 .one-elements-posts_single:hover .one-elements-button{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.card_style--post-card-3 .one-elements-posts_single .author-name,.card_style--post-card-3 .one-elements-posts_single .author-name a,.card_style--post-card-4 .one-elements-posts_single .author-name,.card_style--post-card-4 .one-elements-posts_single .author-name a{color:#fff}.card_style--post-card-3 .one-elements-posts_single .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back){-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.card_style--post-card-4 .one-elements-posts_single .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back){-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.card_style--post-card-4 .one-elements-posts_single .post-sticky--indicator{position:absolute;top:32px;left:32px}.animation-one .one-elements-posts_single>.one-elements-element__content>.one-elements-element__content-inner>*{-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}.animation-one .one-elements-posts_single .one-elements-button{opacity:0}.animation-one .one-elements-posts_single:hover>.one-elements-element__content>.one-elements-element__content-inner>*{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.animation-one .one-elements-posts_single:hover .one-elements-heading{-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.animation-one .one-elements-posts_single:hover .elementor-text-editor{-webkit-transition-duration:.36s;-o-transition-duration:.36s;transition-duration:.36s}.animation-one .one-elements-posts_single:hover .one-elements-button{opacity:1;-webkit-transition-duration:.42s;-o-transition-duration:.42s;transition-duration:.42s}.animation-two .one-elements-posts_single .one-elements-button{opacity:0}.animation-two .one-elements-posts_single:hover .one-elements-button{opacity:1}.animation-three .one-elements-posts_single .one-elements-button{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}.animation-three .one-elements-posts_single:hover .one-elements-button{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}@media (max-width:1024px){.one-elements-posts .card_style--modern-card .oee__item.oee__item--sm{width:100%;height:300px}.one-elements-posts .card_style--modern-card .oee__item.oee__item--md{height:300px}.one-elements-posts .card_style--modern-card .oee__item.oee__item--lg{height:600px}}@media (max-width:767px){.one-elements-posts .card_style--modern-card .oee__item{width:100%!important;height:auto}}.one-elements-team_member{padding:30px;-webkit-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out}.one-elements-team_member.oee__dynamic-height-ratio:before{padding-bottom:136.365%}.one-elements-team_member.oee__dynamic-height-fixed{height:480px}.one-elements-team_member .one-elements-image{display:block}.one-elements-team_member .team-member-name .one-elements-element__content{color:#fff;font-family:Lora,Sans-serif;font-size:22px;line-height:30px}.one-elements-team_member .team-member-name .one-elements-element__content a{color:inherit}.one-elements-team_member .team-member-designation .one-elements-element__content{color:#0b52e0;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:600;line-height:22px}.one-elements-team_member .one-elements-social_icons{margin-top:20px;-webkit-transition:inherit;-o-transition:inherit;transition:inherit}.one-elements-team_member .one-elements-social_icons .one-elements-icon{width:30px;height:30px;-webkit-box-shadow:0 13px 31px 0 rgba(152,163,203,.3);box-shadow:0 13px 31px 0 rgba(152,163,203,.3)}.one-elements-team_member .one-elements-social_icons .one-elements-icon,.one-elements-team_member .one-elements-social_icons .one-elements-icon .one-elements-element__border-gradient .one-elements-element__state-inner,.one-elements-team_member .one-elements-social_icons .one-elements-icon .one-elements-element__hover-state,.one-elements-team_member .one-elements-social_icons .one-elements-icon .one-elements-element__regular-state{-webkit-border-radius:50%;border-radius:50%}.one-elements-team_member .one-elements-social_icons .one-elements-icon .one-elements-element__regular-state .one-elements-element__state-inner{background-color:#fff}.one-elements-team_member .one-elements-social_icons .one-elements-icon .one-elements-element__hover-state .one-elements-element__state-inner{background-color:#0b52e0}.one-elements-team_member .one-elements-social_icons .one-elements-icon .one-elements-icon__content_icon{font-size:14px}.one-elements-team_member .one-elements-social_icons .one-elements-icon i{color:#0b52e0}.one-elements-team_member .one-elements-social_icons .one-elements-icon:hover i{color:#fff}.one-elements-team_member .oee__content_column{display:inline-block;vertical-align:middle;text-align:left}.one-elements-team_member>.one-elements-element__content>.one-elements-element__content-inner{width:100%;overflow:hidden;position:relative}.one-elements-team_member>.one-elements-element__content>.one-elements-element__content-inner:before{content:"";position:absolute;top:0;left:0;-webkit-transition:inherit;-o-transition:inherit;transition:inherit;width:100%;height:100%;opacity:0}.one-elements-team_member:hover>.one-elements-element__content>.one-elements-element__content-inner:before{opacity:1}.card_style--classic-card .one-elements-team_member>.one-elements-element__hover-state .one-elements-element__state-inner:after,.card_style--classic-card .one-elements-team_member>.one-elements-element__regular-state .one-elements-element__state-inner:after{background-color:#1c1d20;opacity:.28}.card_style--classic-card .one-elements-team_member>.one-elements-element__hover-state .one-elements-element__state-inner:after{opacity:.38}.card_style--classic-card .one-elements-team_member,.card_style--classic-card .one-elements-team_member>.one-elements-element__border-gradient .one-elements-element__state-inner,.card_style--classic-card .one-elements-team_member>.one-elements-element__hover-state,.card_style--classic-card .one-elements-team_member>.one-elements-element__regular-state{-webkit-border-radius:4px;border-radius:4px}.card_style--post-card .one-elements-team_member{padding:0;-webkit-box-shadow:none;box-shadow:none}.card_style--post-card .one-elements-team_member .team-member-name .one-elements-element__content{color:#373c44}.card_style--post-card .one-elements-team_member .one-elements-social_icons{margin-top:0}.card_style--post-card .one-elements-team_member .one-elements-image{margin-bottom:24px;-webkit-box-shadow:none;box-shadow:none}.card_style--post-card .one-elements-team_member .one-elements-image,.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__border-gradient .one-elements-element__state-inner,.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__hover-state,.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__regular-state{-webkit-border-radius:4px;border-radius:4px}.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__hover-state .one-elements-element__state-inner:after,.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__regular-state .one-elements-element__state-inner:after{background-color:#1c1d20;opacity:.28}.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__hover-state .one-elements-element__state-inner:after{opacity:.42}.card_style--post-card .one-elements-team_member .one-elements-image.oee__dynamic-height-ratio:before{padding-bottom:116.85%}.card_style--post-card .one-elements-team_member .one-elements-image>.one-elements-element__content:not(.one-elements-element__content-back){padding:32px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.card_style--post-card .one-elements-team_member:hover .one-elements-image{-webkit-box-shadow:0 16px 42px 0 rgba(152,163,203,.18);box-shadow:0 16px 42px 0 rgba(152,163,203,.18)}.card_style--post-card-2 .one-elements-team_member .one-elements-social_icons{-webkit-transform:translateY(50px);-ms-transform:translateY(50px);transform:translateY(50px);opacity:0;visibility:hidden}.card_style--post-card-2 .one-elements-team_member:hover .one-elements-social_icons{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1;visibility:visible}.one-elements-team .social-display-on_hover .one-elements-social_icons{visibility:hidden;opacity:0;margin-bottom:-60px}.one-elements-team .social-display-on_hover .one-elements-team_member:hover .one-elements-social_icons{visibility:visible;opacity:1;margin-bottom:0!important}.one-elements-testimonial_single{padding:40px;-webkit-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 18px 40px 0 rgba(152,163,203,.12);box-shadow:0 18px 40px 0 rgba(152,163,203,.12)}.one-elements-testimonial_single>.one-elements-element__regular-state .one-elements-element__state-inner{background:#fff}.one-elements-testimonial_single .one-elements-image{display:inline-block;margin-right:20px}.one-elements-testimonial_single .one-elements-name .one-elements-element__content{color:#282d40;font-family:Lora,Sans-serif;font-size:22px;line-height:28px}.one-elements-testimonial_single .one-elements-name .one-elements-element__content a{color:inherit}.one-elements-testimonial_single .one-elements-designation .one-elements-element__content{color:#0b52e0;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:600;line-height:22px}.one-elements-testimonial_single .elementor-text-editor{color:#838a92;font-family:Nunito Sans,Sans-serif;font-size:18px;font-style:oblique;line-height:27px}.one-elements-testimonial_single .elementor-text-editor :last-child{margin-bottom:0}.one-elements-testimonial_single .oee__testimonial-icon{line-height:1;display:inline-block}.one-elements-testimonial_single .oee__testimonial-icon i{color:#f2f2f2;font-size:55px}.one-elements-testimonial_single .oee__content_column{display:inline-block;vertical-align:middle;text-align:left}.one-elements-testimonial_single>.one-elements-element__content>.oee__content_row{position:relative}.one-elements-testimonial_single>.one-elements-element__content>.oee__content_row .elementor-text-editor{margin-top:17px;margin-bottom:24px}.one-elements-testimonial_single>.one-elements-element__content>.oee__content_row:first-child .elementor-text-editor{margin-top:0}.one-elements-testimonial_single>.one-elements-element__content>.oee__content_row:last-child .elementor-text-editor{margin-bottom:0}.card_style--classic-card-1 .oee__testimonial-icon{position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.card_style--classic-card-2 .one-elements-testimonial_single{-webkit-border-radius:4px 4px 4px 0;border-radius:4px 4px 4px 0;-webkit-box-shadow:0 12px 50px 5px rgba(137,161,184,.1);box-shadow:0 12px 50px 5px rgba(137,161,184,.1);padding:34px 28px 36px;margin-bottom:60px}.card_style--classic-card-2 .one-elements-testimonial_single:after{content:"";position:absolute;top:100%;left:0;border:25px solid rgba(0,0,0,0);border-left-color:#fff;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.card_style--classic-card-2 .one-elements-name .one-elements-element__content{color:#0b52e0;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:600;line-height:22px}.card_style--classic-card-2 .one-elements-designation .one-elements-element__content{color:#a0a6ac;font-family:Nunito Sans,Sans-serif;font-size:16px;font-weight:400;line-height:22px}.card_style--classic-card-2 .one-elements-element__content>.oee__content_row .elementor-text-editor{margin-bottom:15px}.card_style--classic-card-2 .elementor-text-editor{font-size:17px;font-weight:400;line-height:30px;font-style:normal}.card_style--classic-card-2 .oee__testimonial-icon{position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.card_style--classic-card-2 .one-elements-image{position:absolute;top:100%;left:16px;-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}.card_style--classic-card-2 .one-elements-image img{width:50px;height:50px}.card_style--classic-card-3 .one-elements-testimonial_single{-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;padding:0}.card_style--classic-card-3 .one-elements-element__content>.oee__content_row .elementor-text-editor{margin-bottom:15px}.card_style--classic-card-3 .oee__testimonial-icon{margin-bottom:24px}.one-elements-contact-form-7 .wpcf7-form label{display:block}.one-elements-contact-form-7 .wpcf7-form-control.wpcf7-not-valid{border-color:#f36e6e}.one-elements-contact-form-7 select.wpcf7-not-valid+.custom-select .custom-select__dropdown,.one-elements-contact-form-7 select.wpcf7-not-valid+.custom-select button{border-color:#f36e6e!important}.one-elements-contact-form-7 .custom-select .custom-select__option--value,.one-elements-contact-form-7 input:not([type=submit]),.one-elements-contact-form-7 select,.one-elements-contact-form-7 textarea{padding:16px 20px;font-size:16px;color:#70768a;font-family:Nunito Sans,Sans-serif;line-height:1.75;border:2px solid rgba(0,0,0,0);outline:none;-webkit-box-shadow:none;box-shadow:none;background-color:rgba(0,0,0,.02)}.one-elements-contact-form-7 .custom-select.custom-select--active .custom-select__option--value,.one-elements-contact-form-7 .custom-select .custom-select__dropdown,.one-elements-contact-form-7 input:not([type=submit]):focus,.one-elements-contact-form-7 select:focus,.one-elements-contact-form-7 textarea:focus{border-color:rgba(0,0,0,.2)}.one-elements-contact-form-7 span.wpcf7-list-item{margin:0 1.2em 0 0}.one-elements-contact-form-7 span.wpcf7-list-item-label{margin-left:3px;vertical-align:middle}.one-elements-contact-form-7 div.wpcf7 .ajax-loader{background-size:100%;margin-left:20px}.elementor-animation-forward{-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.elementor-animation-forward:hover{-webkit-transform:translateX(8px);-ms-transform:translateX(8px);transform:translateX(8px)}.elementor-animation-backward{-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.elementor-animation-backward:hover{-webkit-transform:translateX(-8px);-ms-transform:translateX(-8px);transform:translateX(-8px)}@-webkit-keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translate3d(0,-40px,0);transform:translate3d(0,-40px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translate3d(0,-40px,0);transform:translate3d(0,-40px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownSmall{-webkit-animation-name:fadeInDownSmall;animation-name:fadeInDownSmall}@-webkit-keyframes fadeInLeftSmall{0%{opacity:0;-webkit-transform:translate3d(-40px,0,0);transform:translate3d(-40px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftSmall{0%{opacity:0;-webkit-transform:translate3d(-40px,0,0);transform:translate3d(-40px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftSmall{-webkit-animation-name:fadeInLeftSmall;animation-name:fadeInLeftSmall}@-webkit-keyframes fadeInRightSmall{0%{opacity:0;-webkit-transform:translate3d(40px,0,0);transform:translate3d(40px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightSmall{0%{opacity:0;-webkit-transform:translate3d(40px,0,0);transform:translate3d(40px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightSmall{-webkit-animation-name:fadeInRightSmall;animation-name:fadeInRightSmall}@-webkit-keyframes fadeInUpSmall{0%{opacity:0;-webkit-transform:translate3d(0,40px,0);transform:translate3d(0,40px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpSmall{0%{opacity:0;-webkit-transform:translate3d(0,40px,0);transform:translate3d(0,40px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpSmall{-webkit-animation-name:fadeInUpSmall;animation-name:fadeInUpSmall}@-webkit-keyframes fadeInDownLarge{0%{opacity:0;-webkit-transform:translate3d(0,-80px,0);transform:translate3d(0,-80px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownLarge{0%{opacity:0;-webkit-transform:translate3d(0,-80px,0);transform:translate3d(0,-80px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownLarge{-webkit-animation-name:fadeInDownLarge;animation-name:fadeInDownLarge}@-webkit-keyframes fadeInLeftLarge{0%{opacity:0;-webkit-transform:translate3d(-80px,0,0);transform:translate3d(-80px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftLarge{0%{opacity:0;-webkit-transform:translate3d(-80px,0,0);transform:translate3d(-80px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftLarge{-webkit-animation-name:fadeInLeftLarge;animation-name:fadeInLeftLarge}@-webkit-keyframes fadeInRightLarge{0%{opacity:0;-webkit-transform:translate3d(80px,0,0);transform:translate3d(80px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightLarge{0%{opacity:0;-webkit-transform:translate3d(80px,0,0);transform:translate3d(80px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightLarge{-webkit-animation-name:fadeInRightLarge;animation-name:fadeInRightLarge}@-webkit-keyframes fadeInUpLarge{0%{opacity:0;-webkit-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpLarge{0%{opacity:0;-webkit-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpLarge{-webkit-animation-name:fadeInUpLarge;animation-name:fadeInUpLarge}@-webkit-keyframes slideInDownSmall{0%{-webkit-transform:translate3d(0,-40px,0);transform:translate3d(0,-40px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDownSmall{0%{-webkit-transform:translate3d(0,-40px,0);transform:translate3d(0,-40px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDownSmall{-webkit-animation-name:slideInDownSmall;animation-name:slideInDownSmall}@-webkit-keyframes slideInLeftSmall{0%{-webkit-transform:translate3d(-40px,0,0);transform:translate3d(-40px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeftSmall{0%{-webkit-transform:translate3d(-40px,0,0);transform:translate3d(-40px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeftSmall{-webkit-animation-name:slideInLeftSmall;animation-name:slideInLeftSmall}@-webkit-keyframes slideInRightSmall{0%{-webkit-transform:translate3d(40px,0,0);transform:translate3d(40px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRightSmall{0%{-webkit-transform:translate3d(40px,0,0);transform:translate3d(40px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRightSmall{-webkit-animation-name:slideInRightSmall;animation-name:slideInRightSmall}@-webkit-keyframes slideInUpSmall{0%{-webkit-transform:translate3d(0,40px,0);transform:translate3d(0,40px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUpSmall{0%{-webkit-transform:translate3d(0,40px,0);transform:translate3d(0,40px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUpSmall{-webkit-animation-name:slideInUpSmall;animation-name:slideInUpSmall}@-webkit-keyframes slideInDownLarge{0%{-webkit-transform:translate3d(0,-80px,0);transform:translate3d(0,-80px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDownLarge{0%{-webkit-transform:translate3d(0,-80px,0);transform:translate3d(0,-80px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDownLarge{-webkit-animation-name:slideInDownLarge;animation-name:slideInDownLarge}@-webkit-keyframes slideInLeftLarge{0%{-webkit-transform:translate3d(-80px,0,0);transform:translate3d(-80px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeftLarge{0%{-webkit-transform:translate3d(-80px,0,0);transform:translate3d(-80px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeftLarge{-webkit-animation-name:slideInLeftLarge;animation-name:slideInLeftLarge}@-webkit-keyframes slideInRightLarge{0%{-webkit-transform:translate3d(80px,0,0);transform:translate3d(80px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRightLarge{0%{-webkit-transform:translate3d(80px,0,0);transform:translate3d(80px,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRightLarge{-webkit-animation-name:slideInRightLarge;animation-name:slideInRightLarge}@-webkit-keyframes slideInUpLarge{0%{-webkit-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUpLarge{0%{-webkit-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUpLarge{-webkit-animation-name:slideInUpLarge;animation-name:slideInUpLarge}div.wpforms-container-full,
div.wpforms-container-full .wpforms-form * {
background: none;
border: 0 none;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
float: none;
font-size: 100%;
height: auto;
letter-spacing: normal;
list-style: none;
outline: none;
position: static;
text-decoration: none;
text-indent: 0;
text-shadow: none;
text-transform: none;
width: auto;
visibility: visible;
overflow: visible;
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
div.wpforms-container-full {
margin-left: auto;
margin-right: auto;
}
div.wpforms-container-full .wpforms-form amp-img > img {
position: absolute; }
div.wpforms-container-full .wpforms-form input,
div.wpforms-container-full .wpforms-form label,
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form button,
div.wpforms-container-full .wpforms-form textarea {
margin: 0;
border: 0;
padding: 0;
display: inline-block;
vertical-align: middle;
background: none;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
div.wpforms-container-full .wpforms-form textarea {
width: 100%;
}
div.wpforms-container-full .wpforms-form ul,
div.wpforms-container-full .wpforms-form ul li {
background: none !important;
border: 0 !important;
margin: 0 !important;
padding: 0 !important;
list-style: none !important;
}
div.wpforms-container-full .wpforms-form ul li {
margin-bottom: 5px !important;
}
div.wpforms-container-full .wpforms-form ul li:last-of-type {
margin-bottom: 0 !important;
}
div.wpforms-container-full .wpforms-form hr {
border-top: 1px solid #ccc;
margin: 0.5em auto;
} .wpforms-clear:before {
content: " ";
display: table;
}
.wpforms-clear:after {
clear: both;
content: " ";
display: table;
}  div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
max-width: 60%;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
height: 120px;
} div.wpforms-container-full .wpforms-form input.wpforms-field-small,
div.wpforms-container-full .wpforms-form select.wpforms-field-small,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-small {
max-width: 25%;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-small {
height: 70px;
} div.wpforms-container-full .wpforms-form input.wpforms-field-large,
div.wpforms-container-full .wpforms-form select.wpforms-field-large,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-large {
max-width: 100%;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {
height: 220px;
} div.wpforms-container-full .wpforms-form .wpforms-field {
padding: 10px 0;
clear: both;
} div.wpforms-container-full .wpforms-form .wpforms-field-description,
div.wpforms-container-full .wpforms-form .wpforms-field-limit-text {
font-size: 13px;
line-height: 1.3;
margin: 8px 0 0 0;
}
div.wpforms-container-full .wpforms-form .wpforms-field-description.wpforms-disclaimer-description {
background-color: #fff;
border: 1px solid #ddd;
color: #444;
padding: 15px 15px 0;
margin-top: 15px;
height: 125px;
overflow-y: scroll;
overflow-x: hidden;
font-size: 12px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-description.wpforms-disclaimer-description p {
color: #444;
font-size: 12px;
line-height: 18px;
margin-bottom: 15px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-description-before,
div.wpforms-container-full .wpforms-form .wpforms-field-description.before {
margin: 0 0 8px 0;
} div.wpforms-container-full .wpforms-form .wpforms-field-label {
display: block;
font-weight: 700;
font-size: 16px;
float: none;
line-height: 1.3;
margin: 0 0 4px 0;
padding: 0;
}
div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
display: block;
font-size: 13px;
float: none;
font-weight: 400;
line-height: 1.3;
margin: 4px 0 0;
padding: 0;
}
div.wpforms-container-full .wpforms-form .wpforms-field-sublabel.before {
margin: 0 0 4px 0;
}
div.wpforms-container-full .wpforms-form .wpforms-field-label-inline {
display: inline;
vertical-align: baseline;
font-size: 16px;
font-weight: 400;
line-height: 1.3;
}
div.wpforms-container-full .wpforms-form .wpforms-field-label.wpforms-label-hide,
div.wpforms-container-full .wpforms-form .wpforms-field-sublabel.wpforms-sublabel-hide {
position: absolute;
top: -99999px;
left: -99999px;
}
div.wpforms-container-full .wpforms-form .wpforms-required-label {
color: #ff0000;
font-weight: 400;
} div.wpforms-container-full .wpforms-form .wpforms-field-row {
margin-bottom: 8px;
position: relative;
}
div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-row:last-of-type {
margin-bottom: 0;
} div.wpforms-container-full .wpforms-form .wpforms-field-row:before {
content: " ";
display: table;
}
div.wpforms-container-full .wpforms-form .wpforms-field-row:after {
clear: both;
content: " ";
display: table;
}
div.wpforms-container-full .wpforms-form .wpforms-field-address .wpforms-one-half:only-child {
margin-left: 0;
}  div.wpforms-container-full .wpforms-form .wpforms-five-sixths,
div.wpforms-container-full .wpforms-form .wpforms-four-sixths,
div.wpforms-container-full .wpforms-form .wpforms-four-fifths,
div.wpforms-container-full .wpforms-form .wpforms-one-fifth,
div.wpforms-container-full .wpforms-form .wpforms-one-fourth,
div.wpforms-container-full .wpforms-form .wpforms-one-half,
div.wpforms-container-full .wpforms-form .wpforms-one-sixth,
div.wpforms-container-full .wpforms-form .wpforms-one-third,
div.wpforms-container-full .wpforms-form .wpforms-three-fourths,
div.wpforms-container-full .wpforms-form .wpforms-three-fifths,
div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-fourths,
div.wpforms-container-full .wpforms-form .wpforms-two-fifths,
div.wpforms-container-full .wpforms-form .wpforms-two-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-thirds {
float: left;
margin-left: 4%;
clear: none;
}
div.wpforms-container-full .wpforms-form .wpforms-one-half,
div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-fourths {
width: 48%;
}
div.wpforms-container-full .wpforms-form .wpforms-one-third,
div.wpforms-container-full .wpforms-form .wpforms-two-sixths {
width: 30.6666666667%;
}
div.wpforms-container-full .wpforms-form .wpforms-four-sixths,
div.wpforms-container-full .wpforms-form .wpforms-two-thirds {
width: 65.3333333333%;
}
div.wpforms-container-full .wpforms-form .wpforms-one-fourth {
width: 22%;
}
div.wpforms-container-full .wpforms-form .wpforms-three-fourths {
width: 74%;
}
div.wpforms-container-full .wpforms-form .wpforms-one-fifth {
width: 16.8%;
}
div.wpforms-container-full .wpforms-form .wpforms-two-fifths {
width: 37.6%;
}
div.wpforms-container-full .wpforms-form .wpforms-three-fifths {
width: 58.4%;
}
div.wpforms-container-full .wpforms-form .wpforms-four-fifths {
width: 79.2%;
}
div.wpforms-container-full .wpforms-form .wpforms-one-sixth {
width: 13.3333333333%;
}
div.wpforms-container-full .wpforms-form .wpforms-five-sixths {
width: 82.6666666667%;
}
div.wpforms-container-full .wpforms-form .wpforms-first {
clear: both !important;
margin-left: 0 !important;
} div.wpforms-container-full .wpforms-form .wpforms-checkbox-2-columns ul,
div.wpforms-container-full .wpforms-form .wpforms-multiplechoice-2-columns ul,
div.wpforms-container-full .wpforms-form .wpforms-list-2-columns ul,
div.wpforms-container-full .wpforms-form .wpforms-checkbox-3-columns ul,
div.wpforms-container-full .wpforms-form .wpforms-multiplechoice-3-columns ul,
div.wpforms-container-full .wpforms-form .wpforms-list-3-columns ul {
display: -ms-flex;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
div.wpforms-container-full .wpforms-form .wpforms-checkbox-2-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-multiplechoice-2-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-list-2-columns ul li {
width: 50%;
display: block;
padding-right: 26px !important;
}
div.wpforms-container-full .wpforms-form .wpforms-checkbox-3-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-multiplechoice-3-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-list-3-columns ul li {
width: 33.3333%;
display: block;
padding-right: 26px !important;
}
div.wpforms-container-full .wpforms-form .wpforms-list-inline ul li {
display: inline-block;
vertical-align: top;
margin-right: 20px !important;
} div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-first-half {
float: left;
width: 48%;
clear: both;
}
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-last-half {
float: right;
width: 48%;
clear: none;
}
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-first-third {
float: left;
width: 30.666666667%;
clear: both;
}
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-middle-third {
float: left;
width: 30.666666667%;
margin-left: 4%;
clear: none;
}
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-last-third {
float: right;
width: 30.666666667%;
clear: none;
}
div.wpforms-container-full .wpforms-form div.wpforms-last {
float: right !important;
margin-right: 0 !important;
clear: none;
}  div.wpforms-container-full.inline-fields {
overflow: hidden;
}
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-field-container {
display: table;
width: calc(100% - 160px);
float: left;
}
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-field {
display: table-cell;
padding-right: 2%;
vertical-align: top;
}
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-submit-container {
float: right;
width: 160px;
clear: none;
}
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-submit {
display: block;
width: 100%;
}
div.wpforms-container-full.inline-fields .wpforms-form input.wpforms-field-medium,
div.wpforms-container-full.inline-fields .wpforms-form select.wpforms-field-medium,
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-field-row.wpforms-field-medium {
max-width: 100%;
} div.wpforms-container-full .wpforms-form input[type=date],
div.wpforms-container-full .wpforms-form input[type=datetime],
div.wpforms-container-full .wpforms-form input[type=datetime-local],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=month],
div.wpforms-container-full .wpforms-form input[type=number],
div.wpforms-container-full .wpforms-form input[type=password],
div.wpforms-container-full .wpforms-form input[type=range],
div.wpforms-container-full .wpforms-form input[type=search],
div.wpforms-container-full .wpforms-form input[type=tel],
div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=time],
div.wpforms-container-full .wpforms-form input[type=url],
div.wpforms-container-full .wpforms-form input[type=week],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
background-color: #fff;
box-sizing: border-box;
border-radius: 2px;
color: #333;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
display: block;
float: none;
font-size: 16px;
border: 1px solid #ccc;
padding: 6px 10px;
height: 38px;
width: 100%;
line-height: 1.3;
}
div.wpforms-container-full .wpforms-form input[type=checkbox],
div.wpforms-container-full .wpforms-form input[type=radio] {
border: 1px solid #ccc;
background-color: #fff;
width: 14px;
height: 14px;
margin: 0 10px 0 3px;
display: inline-block;
vertical-align: baseline;
}
div.wpforms-container-full .wpforms-form input[type=radio] {
border-radius: 50%;
}
div.wpforms-container-full .wpforms-form select {
max-width: 100%;
text-transform: none;
white-space: nowrap;
}
div.wpforms-container-full .wpforms-form select[multiple] {
height: auto;
overflow-y: scroll;
background-image: none;
}
div.wpforms-container-full .wpforms-form input[type=submit],
div.wpforms-container-full .wpforms-form button[type=submit],
div.wpforms-container-full .wpforms-form .wpforms-page-button {
background-color: #eee;
border: 1px solid #ddd;
color: #333;
font-size: 1em;
padding: 10px 15px;
}
div.wpforms-container-full .wpforms-form .wpforms-page-button {
font-size: 0.9em;
font-weight: 400;
margin: 0 5px;
min-width: 90px;
text-align: center;
}
div.wpforms-container-full .wpforms-form input[type=submit]:hover,
div.wpforms-container-full .wpforms-form input[type=submit]:focus,
div.wpforms-container-full .wpforms-form input[type=submit]:active,
div.wpforms-container-full .wpforms-form button[type=submit]:hover,
div.wpforms-container-full .wpforms-form button[type=submit]:focus,
div.wpforms-container-full .wpforms-form button[type=submit]:active,
div.wpforms-container-full .wpforms-form .wpforms-page-button:hover,
div.wpforms-container-full .wpforms-form .wpforms-page-button:active,
div.wpforms-container-full .wpforms-form .wpforms-page-button:focus {
background-color: #ddd;
border: 1px solid #ccc;
cursor: pointer;
}
div.wpforms-container-full .wpforms-form input[type=submit]:disabled,
div.wpforms-container-full .wpforms-form button[type=submit]:disabled,
div.wpforms-container-full .wpforms-form .wpforms-page-button:disabled {
background-color: #eee;
border: 1px solid #ddd;
cursor: default;
opacity: 0.5;
}
div.wpforms-container-full .wpforms-form input:focus,
div.wpforms-container-full .wpforms-form textarea:focus,
div.wpforms-container-full .wpforms-form select:focus,
div.wpforms-container-full .wpforms-form .is-focused .choices__inner,
div.wpforms-container-full .wpforms-form .is-open .choices__inner,
div.wpforms-container-full .wpforms-form .is-open .choices__list--dropdown {
border: 1px solid #999;
box-shadow: none;
}
div.wpforms-container-full .wpforms-form input:disabled,
div.wpforms-container-full .wpforms-form textarea:disabled,
div.wpforms-container-full .wpforms-form select:disabled {
background-color: #f9f9f9;
border-color: #ddd;
color: #999;
cursor: not-allowed;
} div.wpforms-container-full .wpforms-form .wpforms-error-container,
div.wpforms-container-full .wpforms-form noscript.wpforms-error-noscript {
color: #990000;
}
div.wpforms-container-full .wpforms-form label.wpforms-error {
display: block;
color: #990000;
font-size: 12px;
float: none;
cursor: default;
}
div.wpforms-container-full .wpforms-form .wpforms-field input.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field input.user-invalid,
div.wpforms-container-full .wpforms-form .wpforms-field textarea.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field textarea.user-invalid,
div.wpforms-container-full .wpforms-form .wpforms-field select.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field select.user-invalid,
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-has-error .choices__inner {
border: 1px solid #cc0000;
}
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-expiration label.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-code label.wpforms-error {
display: none !important;
}
div.wpforms-container-full .wpforms-form .wpforms-error-alert {
color: #b94a48;
background-color: #f2dede;
border: 1px solid #eed3d7;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
padding: 10px 15px;
font-size: 13px;
margin: 0 0 10px 0;
}  .wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full {
color: #333;
margin: 0 auto 24px;
padding: 15px 15px;
}
.wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
background: #e0ffc7;
border: 1px solid #b4d39b;
}
.wpforms-confirmation-container-full p:last-of-type,
div[submit-success] > .wpforms-confirmation-container-full p:last-of-type {
margin: 0;
} .amp-form-submit-success .wpforms-field-container,
.amp-form-submit-success .wpforms-submit-container {
display: none;
} div.wpforms-container-full .wpforms-form .wpforms-recaptcha-container {
padding: 10px 0 20px 0;
clear: both;
}
div.wpforms-container-full .wpforms-form .wpforms-recaptcha-container iframe {
width: 100%;
max-width: 100%;
} div.wpforms-container-full .wpforms-form .wpforms-title {
font-size: 26px;
margin: 0 0 10px 0;
}
div.wpforms-container-full .wpforms-form .wpforms-description {
margin: 0 0 10px 0;
} div.wpforms-container-full .wpforms-form .wpforms-submit-container {
padding: 10px 0 0 0;
clear: both;
position: relative;
}
div.wpforms-container-full .wpforms-form .wpforms-submit-spinner {
margin-left: 0.5em;
display: inline-block;
vertical-align: middle;
max-width: 26px;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-center {
text-align: center;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left {
text-align: left;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-button {
margin: 0 10px 0 0;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-right {
text-align: right;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-right .wpforms-page-button {
margin: 0 0 0 10px;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-split .wpforms-page-prev {
float: left;
margin: 0;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-split .wpforms-page-next {
float: right;
margin: 0;
} div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-number {
margin-right: 100px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-code {
position: absolute;
right: 0;
top: 0;
width: 90px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-name {
margin-right: 170px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-expiration {
position: absolute;
right: 0;
top: 0;
width: 160px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-expiration select {
width: 45%;
float: left;
display: block;
}
div.wpforms-container-full .wpforms-form .wpforms-field-credit-card-expiration span {
float: left;
width: 10%;
text-align: center;
line-height: 38px;
} div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range] {
-webkit-appearance: none;
appearance: none;
height: 10px;
background: #fff;
border: 1px solid #CCC;
border-radius: 5px;
outline: none;
padding: 0;
margin: 10px 0 5px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range]::-ms-track {
color: transparent;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none; appearance: none;
width: 17px;
height: 17px;
background: #B5B5B5;
cursor: pointer;
border-radius: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range]::-moz-range-thumb {
width: 17px;
height: 17px;
background: #B5B5B5;
cursor: pointer;
border-radius: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range]::-ms-thumb {
width: 17px;
height: 17px;
background: #B5B5B5;
cursor: pointer;
border-radius: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider .wpforms-field-number-slider-hint {
font-size: 13px;
} div.wpforms-container-full .wpforms-form .wpforms-field-stripe-credit-card-cardnumber,
div.wpforms-container-full .wpforms-form input.wpforms-stripe-credit-card-hidden-input {
background-color: #fff;
box-sizing: border-box;
border-radius: 2px;
color: #333;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
display: block;
float: none;
font-size: 16px;
border: 1px solid #ccc;
padding: 8px 10px;
height: 38px;
width: 100%;
line-height: 1.3;
}
div.wpforms-container-full .wpforms-form .wpforms-stripe-element-invalid {
border: 1px solid #cc0000 !important;
} div.wpforms-container-full .wpforms-form .wpforms-field-html ul,
div.wpforms-container-full .wpforms-form .wpforms-field-html ol {
margin: 0 0 20px !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field-html ul li,
div.wpforms-container-full .wpforms-form .wpforms-field-html ol li {
margin: 0 0 5px 0 !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field-html ul li {
list-style: disc !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field-html ol li {
list-style: decimal !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field-html li > ul,
div.wpforms-container-full .wpforms-form .wpforms-field-html li > ol {
margin: 6px 0 0 20px !important;
} div.wpforms-container-full .wpforms-field-date-time-date-sep {
display: inline-block;
padding: 0 5px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-date-time-date-year,
div.wpforms-container-full .wpforms-form .wpforms-field-date-time-date-day,
div.wpforms-container-full .wpforms-form .wpforms-field-date-time-date-month {
display: inline-block;
width: auto;
}
div.wpforms-container-full .wpforms-datepicker-wrap {
position: relative;
}
div.wpforms-container-full .wpforms-datepicker-wrap .wpforms-datepicker-clear {
position: absolute;
background-image: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/wpforms-lite/assets/images/times-solid-white.svg);
background-position: 50% 50%;
background-repeat: no-repeat;
background-color: #cccccc;
background-size: 8px;
width: 16px;
height: 16px;
cursor: pointer;
display: block;
border-radius: 50%;
right: 10px;
top: 50%;
margin-top: -8px;
transition: all 0.3s;
}
div.wpforms-container-full .wpforms-datepicker-wrap .wpforms-datepicker-clear:hover {
background-color: red;
}
div.wpforms-container-full .wpforms-datepicker-wrap .wpforms-field-small + .wpforms-datepicker-clear {
right: calc( 75% + 10px);
}
div.wpforms-container-full .wpforms-datepicker-wrap .wpforms-field-medium + .wpforms-datepicker-clear {
right: calc( 40% + 10px);
} div.wpforms-container-full .wpforms-form .wpforms-captcha-math input {
display: inline-block;
width: 70px;
vertical-align: inherit;
margin: 0 0 0 5px;
}
div.wpforms-container-full .wpforms-form .wpforms-captcha-equation {
font-size: 16px;
}
div.wpforms-container-full .wpforms-form .wpforms-captcha-question {
margin: 0 0 4px 0;
} div.wpforms-container-full .wpforms-form .wpforms-field-rating-item {
padding-right: 6px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-rating svg {
cursor: pointer;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
opacity: 0.60;
}
div.wpforms-container-full .wpforms-form .wpforms-field-rating-item.selected svg,
div.wpforms-container-full .wpforms-form .wpforms-field-rating-item.hover svg,
div.wpforms-container-full .wpforms-form .wpforms-field-rating-item input:focus + svg {
-webkit-transform: scale(1.3);
transform: scale(1.3);
opacity: 1;
} div.wpforms-field-file-upload .wpforms-hide {
display: none !important;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern {
border: 2px dashed rgba(0, 0, 0, 0.1);
background: rgba(0, 0, 0, 0.02);
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
cursor: pointer;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern.wpforms-with-files {
padding: 5px;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern svg {
height: 50px;
width: 50px;
color: #e27730;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-modern-title {
font-weight: bold;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-modern-hint {
color: rgba(0, 0, 0, 0.1);
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern.wpforms-highlighted {
border-color: #e27730;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-text {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block {
width: 100px;
height: 100px;
border: 1px solid rgba(0, 0, 0, 0.1);
background: #fff;
background-size: cover !important;
margin: 5px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
cursor: default;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block:hover .wpforms-overlay {
opacity: 1;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay .wpforms-close {
position: absolute;
right: 5px;
top: 5px;
cursor: pointer;
display: block;
width: 18px;
height: 18px;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay .wpforms-title {
position: absolute;
font-size: 12px;
color: #fff;
top: 25px;
bottom: 10px;
left: 5px;
right: 5px;
overflow-y: auto;
line-height: 16px;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay .wpforms-close .wpforms-close-left,
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay .wpforms-close .wpforms-close-right {
height: 18px;
width: 1px;
background: #fff;
position: absolute;
display: block;
z-index: 1;
right: 9px;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay .wpforms-close .wpforms-close-left {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-overlay .wpforms-close .wpforms-close-right {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block svg {
height: 25px;
width: 25px;
color: rgba(0, 0, 0, 0.1);
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern .wpforms-preview-block .wpforms-progress {
height: 5px;
width: 0;
position: absolute;
bottom: 0;
left: 0;
background: #e27730;
transition: all 0.5s;
}
div.wpforms-field-file-upload .wpforms-file-upload-builder-modern input[type="file"] {
display: none;
} div.wpforms-container-full .wpforms-form ul.wpforms-image-choices label:not(.wpforms-error) {
cursor: pointer;
position: relative;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices label input {
top: 50%;
} div.wpforms-container-full .wpforms-form .wpforms-list-inline ul.wpforms-image-choices-modern li {
margin: 5px 5px 5px 5px !important;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern img {
display: inline-block;
margin: 0 auto;
max-width: 100%;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern label:not(.wpforms-error) {
background-color: #fff;
display: block;
margin: 0 auto;
border: 1px solid #fff;
border-radius: 3px;
padding: 20px 20px 18px 20px;
transition: all 0.5s;
text-align: center;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern label:not(.wpforms-error):hover,
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern label:not(.wpforms-error):focus {
border: 1px solid #ddd;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-selected label {
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-image-choices-image:after {
content: "\2714";
font-size: 22px;
line-height: 32px;
color: #fff;
background: green;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
margin: -16px 0 0 -16px;
width: 32px;
height: 32px;
border-radius: 50%;
transition: all 0.5s;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-selected .wpforms-image-choices-image:after {
opacity: 1;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-image-choices-image {
display: block;
position: relative;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-selected .wpforms-image-choices-label {
font-weight: 700;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-image-choices-label {
display: block;
margin-top: 12px;
} div.wpforms-container-full .wpforms-form .wpforms-list-inline ul.wpforms-image-choices-classic li {
margin: 0 10px 10px 0 !important;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic img {
display: inline-block;
margin: 0 auto;
max-width: 100%;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic label:not(.wpforms-error) {
background-color: #fff;
display: block;
margin: 0 auto;
border: 2px solid #fff;
padding: 10px;
text-align: center;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic label:not(.wpforms-error):hover,
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic label:not(.wpforms-error):focus {
border-color: #ddd;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic .wpforms-image-choices-image {
display: block;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic .wpforms-selected label {
border-color: #666 !important;
}
div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-classic .wpforms-image-choices-label {
display: block;
margin-top: 8px;
} div.wpforms-container-full .wpforms-form .wpforms-page-indicator {
margin: 0 0 20px 0;
overflow: hidden;
} div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles {
border-top: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
padding: 15px 10px;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .wpforms-page-indicator-page {
float: left;
margin: 0 20px 0 0;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .wpforms-page-indicator-page:last-of-type {
margin: 0;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .wpforms-page-indicator-page-number {
height: 40px;
width: 40px;
border-radius: 50%;
display: inline-block;
margin: 0 10px 0 0;
line-height: 40px;
text-align: center;
background-color: #ddd;
color: #666;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .active .wpforms-page-indicator-page-number {
color: #fff;
} div.wpforms-container-full .wpforms-form .wpforms-page-indicator.connector .wpforms-page-indicator-page {
float: left;
text-align: center;
font-size: 16px;
line-height: 1.2;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.connector .wpforms-page-indicator-page-number {
display: block;
text-indent: -9999px;
height: 6px;
background-color: #ddd;
margin: 0 0 16px 0;
position: relative;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.connector .wpforms-page-indicator-page-triangle {
position: absolute;
top: 100%;
left: 50%;
width: 0;
height: 0;
margin-left: -5px;
border-style: solid;
border-width: 6px 5px 0 5px;
border-color: transparent transparent transparent transparent;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.connector .wpforms-page-indicator-page-title {
display: inline-block;
padding: 0 15px;
font-size: 16px;
} div.wpforms-container-full .wpforms-form .wpforms-page-indicator.progress {
font-size: 18px;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-progress-wrap {
display: block;
width: 100%;
background-color: #ddd;
height: 18px;
border-radius: 10px;
overflow: hidden;
position: relative;
margin: 5px 0 0;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-progress {
height: 18px;
position: absolute;
left: 0;
top: 0;
} div.wpforms-container-full .wpforms-form .wpforms-field-select select > option {
color: inherit;
}
div.wpforms-container-full .wpforms-form .wpforms-field-select select > option.placeholder,
div.wpforms-container-full .wpforms-form .wpforms-field-select select > option[disabled] {
color: inherit;
opacity: 0.5;
} div.wpforms-container-full .wpforms-field.wpforms-field-select-style-classic select {
padding-left: 6px;
}
div.wpforms-container-full .wpforms-field.wpforms-field-select-style-classic select[multiple] {
padding: 0;
}
div.wpforms-container-full .wpforms-field.wpforms-field-select-style-classic select[multiple] > option {
padding: 10px;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}
div.wpforms-container-full .wpforms-field.wpforms-field-select-style-classic select[multiple] > option.placeholder,
div.wpforms-container-full .wpforms-field.wpforms-field-select-style-classic select[multiple] > option[disabled] {
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
} div.wpforms-container-full .wpforms-form .choices {
font-size: 16px;
color: #333;
}
div.wpforms-container-full .wpforms-form .choices .choices__list--single {
font-size: 1em;
line-height: normal;
}
div.wpforms-container-full .wpforms-form .choices.is-open.is-flipped .choices__inner,
div.wpforms-container-full .wpforms-form .choices.is-open .choices__list--dropdown {
border-radius: 0 0 2px 2px;
}
div.wpforms-container-full .wpforms-form .choices.is-open.is-flipped .choices__list--dropdown,
div.wpforms-container-full .wpforms-form .choices.is-open .choices__inner {
border-radius: 2px 2px 0 0;
}
div.wpforms-container-full .wpforms-form .choices .choices__inner {
min-height: 38px;
border-radius: 2px;
}
div.wpforms-container-full .wpforms-form .choices input.choices__input {
display: inline-block;
height: auto;
line-height: 1.3;
}
div.wpforms-container-full .wpforms-form .choices ::-webkit-input-placeholder {
color: inherit;
opacity: 0.5;
}
div.wpforms-container-full .wpforms-form .choices ::-moz-placeholder {
color: inherit;
opacity: 0.5;
}
div.wpforms-container-full .wpforms-form .choices :-ms-input-placeholder {
color: inherit;
opacity: 0.5;
} div.wpforms-container-full .wpforms-notice {
background-color: #fff;
border: 1px solid #ddd;
border-left-width: 12px;
color: #333;
font-size: 16px;
line-height: 1.5;
margin-bottom: 30px;
padding: 20px 36px 20px 26px;
position: relative;
}
div.wpforms-container-full .wpforms-notice .wpforms-delete {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-moz-appearance: none;
-webkit-appearance: none;
background-color: rgba(10, 10, 10, 0.2);
border: none;
border-radius: 290486px;
cursor: pointer;
display: inline-block;
height: 20px;
margin: 0;
padding: 0;
outline: none;
vertical-align: top;
width: 20px;
position: absolute;
right: 10px;
top: 10px;
}
div.wpforms-container-full .wpforms-notice .wpforms-delete:before,
div.wpforms-container-full .wpforms-notice .wpforms-delete:after {
background-color: #fff;
content: "";
display: block;
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
-webkit-transform-origin: center center;
transform-origin: center center;
}
div.wpforms-container-full .wpforms-notice .wpforms-delete:before {
height: 2px;
width: 50%;
}
div.wpforms-container-full .wpforms-notice .wpforms-delete:after {
height: 50%;
width: 2px;
}
div.wpforms-container-full .wpforms-notice .wpforms-delete:hover,
div.wpforms-container-full .wpforms-notice .wpforms-delete:focus {
background-color: rgba(10, 10, 10, 0.3);
}
div.wpforms-container-full .wpforms-notice a {
text-decoration: underline;
}
div.wpforms-container-full .wpforms-notice p {
margin: 0 0 20px 0;
}
div.wpforms-container-full .wpforms-notice p:last-of-type {
margin-bottom: 0;
}
div.wpforms-container-full .wpforms-notice.wpforms-info .wpforms-notice-action,
div.wpforms-container-full .wpforms-notice.wpforms-info {
border-color: #3273dc;
}
div.wpforms-container-full .wpforms-notice.wpforms-success .wpforms-notice-action,
div.wpforms-container-full .wpforms-notice.wpforms-success {
border-color: #23d160;
}
div.wpforms-container-full .wpforms-notice.wpforms-warning .wpforms-notice-action,
div.wpforms-container-full .wpforms-notice.wpforms-warning {
border-color: #ffdd57;
}
div.wpforms-container-full .wpforms-notice.wpforms-error .wpforms-notice-action,
div.wpforms-container-full .wpforms-notice.wpforms-error {
border-color: #ff3860;
}
div.wpforms-container-full .wpforms-notice .wpforms-notice-actions {
margin-top: 20px;
}
div.wpforms-container-full .wpforms-notice .wpforms-notice-action {
border: 2px solid;
margin-right: 20px;
padding: 5px;
text-decoration: none;
}
div.wpforms-container-full .wpforms-notice .wpforms-notice-action:hover,
div.wpforms-container-full .wpforms-notice .wpforms-notice-action:focus,
div.wpforms-container-full .wpforms-notice .wpforms-notice-action:active {
color: #fff;
}
div.wpforms-container-full .wpforms-notice.wpforms-info .wpforms-notice-action:hover,
div.wpforms-container-full .wpforms-notice.wpforms-info .wpforms-notice-action:focus,
div.wpforms-container-full .wpforms-notice.wpforms-info .wpforms-notice-action:active {
background-color: #3273dc;
}
div.wpforms-container-full .wpforms-notice.wpforms-success .wpforms-notice-action:hover,
div.wpforms-container-full .wpforms-notice.wpforms-success .wpforms-notice-action:focus,
div.wpforms-container-full .wpforms-notice.wpforms-success .wpforms-notice-action:active {
background-color: #23d160;
}
div.wpforms-container-full .wpforms-notice.wpforms-warning .wpforms-notice-action:hover,
div.wpforms-container-full .wpforms-notice.wpforms-warning .wpforms-notice-action:focus,
div.wpforms-container-full .wpforms-notice.wpforms-warning .wpforms-notice-action:active {
background-color: #ffdd57;
color: inherit;
}
div.wpforms-container-full .wpforms-notice.wpforms-error .wpforms-notice-action:hover,
div.wpforms-container-full .wpforms-notice.wpforms-error .wpforms-notice-action:focus,
div.wpforms-container-full .wpforms-notice.wpforms-error .wpforms-notice-action:active {
background-color: #ff3860;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-small.wp-editor-area {
height: 100px;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium.wp-editor-area {
height: 250px;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-large.wp-editor-area {
height: 400px;
} div.wpforms-container-full {
margin-bottom: 24px;
}
div.wpforms-container-full .wpforms-form h3 {
font-size: 24px;
} div.wpforms-container-full .wpforms-form .wpforms-field-hp {
display: none !important;
position: absolute !important;
left: -9000px !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field-hidden {
display: none;
padding: 0;
}
div.wpforms-container-full .wpforms-form .wpforms-screen-reader-element {
position: absolute !important;
clip: rect(0, 0, 0, 0) !important;
height: 1px !important;
width: 1px !important;
border: 0 !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
word-wrap: normal !important;
} div.wpforms-container-full .wpforms-form .wpforms-limit-text {
font-size: 13px;
display: block;
}  body.rtl .wpforms-field-phone input[type=tel] {
direction: ltr;
unicode-bidi: embed;
text-align: right;
}
body.rtl .wpforms-container-full .wpforms-form .wpforms-first {
float: right;
}
body.rtl .wpforms-container-full .wpforms-form .wpforms-first + .wpforms-one-half {
margin-right: 4%;
margin-left: 0;
}
@media only screen and (max-width: 600px) {
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-field-container,
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-field {
display: block;
width: 100%;
}
div.wpforms-container-full.inline-fields .wpforms-form .wpforms-submit-container {
width: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern) {
overflow-x: hidden;
}
div.wpforms-container-full .wpforms-form .wpforms-field > * {
max-width: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-mobile-full {
width: 100%;
margin-left: 0;
float: none;
}
div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium,
div.wpforms-container-full .wpforms-form input.wpforms-field-small,
div.wpforms-container-full .wpforms-form select.wpforms-field-small,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-small,
div.wpforms-container-full .wpforms-form input.wpforms-field-large,
div.wpforms-container-full .wpforms-form select.wpforms-field-large,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-large {
max-width: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-checkbox-2-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-multiplechoice-2-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-list-2-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-checkbox-3-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-multiplechoice-3-columns ul li,
div.wpforms-container-full .wpforms-form .wpforms-list-3-columns ul li {
float: none;
width: 100%;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .wpforms-page-indicator-page {
margin: 0 10px 0 0;
}
div.wpforms-container-full .wpforms-form .wpforms-page-indicator.circles .wpforms-page-indicator-page-number {
width: 30px;
height: 30px;
line-height: 30px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range] {
margin: 20px 0 15px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-number-slider input[type=range]::-webkit-slider-thumb {
width: 30px;
height: 30px;
}
}#wpadminbar .sa-el-wp-admin-bar > .ab-item {
position: relative;
cursor: pointer;
}
#wpadminbar .sa-el-wp-admin-bar > .ab-item:before {
top: 5px;
font-size: 16px;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
font-family: "Font Awesome 5 Free";
font-weight: 900; 
content: "\f1f8";
}.swiper-container-wrap .swiper-slide, .swiper-container .swiper-slide { text-align: center; } .swiper-container-wrap .swiper-slide img, .swiper-container .swiper-slide img { width: auto; } .swiper-container-wrap-dots-outside .swiper-pagination, .swiper-container-dots-outside .swiper-pagination { position: static; } .swiper-container-wrap .swiper-button-next, .swiper-container-wrap .swiper-button-prev, .swiper-container .swiper-button-next, .swiper-container .swiper-button-prev { background: transparent; font-size: 20px; height: auto; line-height: 1; margin: 0; text-align: center; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); width: auto; } .swiper-container-wrap .swiper-button-next .fa, .swiper-container-wrap .swiper-button-prev .fa, .swiper-container .swiper-button-next .fa, .swiper-container .swiper-button-prev .fa { vertical-align: top; } .swiper-container-wrap .swiper-pagination { bottom: 10px; left: 0; width: 100%; } .swiper-container-wrap-dots-outside .swiper-pagination { position: static; } .swiper-container-wrap .swiper-pagination-bullet { background: #ccc; margin: 0 4px; opacity: 1; height: 8px; width: 8px; } .swiper-container-wrap .swiper-pagination-bullet-active { background: #000; } .swiper-container-3d .swiper-slide { -o-transition-property: all; transition-property: all; -webkit-transition-property: all; }.elementor-element.sa-el-prallax-multi { overflow: hidden; } .elementor-element .sa-el-parallax-layer { position: absolute; display: block; width: 100%; height: 100%; background-repeat: no-repeat; overflow: hidden; pointer-events: none; } .elementor-section.sa-el-particles-section .elementor-container { z-index: 1; } .elementor-section.sa-el-particles-section > canvas { position: absolute; top: 0; }a, a:visited {
text-decoration: underline;
}
}*, ::after, ::before {
box-sizing: border-box;
}
a {
text-decoration: none;
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
.htb-container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width:576px) {
.htb-container {
max-width: 540px;
}
}
@media (min-width:768px) {
.htb-container {
max-width: 720px;
}
}@media (min-width:992px) {
.htb-container {
max-width: 960px;
}
}@media (min-width:1200px) {
.htb-container {
max-width: 1200px;
}
}.htb-container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.htb-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.htb-col, .htb-col-1, .htb-col-10, .htb-col-11, .htb-col-12, .htb-col-2, .htb-col-3, .htb-col-4, .htb-col-5, .htb-col-6, .htb-col-7, .htb-col-8, .htb-col-9, .htb-col-auto, .htb-col-lg, .htb-col-lg-1, .htb-col-lg-10, .htb-col-lg-11, .htb-col-lg-12, .htb-col-lg-2, .htb-col-lg-3, .htb-col-lg-4, .htb-col-lg-5, .htb-col-lg-6, .htb-col-lg-7, .htb-col-lg-8, .htb-col-lg-9, .htb-col-lg-auto, .htb-col-md, .htb-col-md-1, .htb-col-md-10, .htb-col-md-11, .htb-col-md-12, .htb-col-md-2, .htb-col-md-3, .htb-col-md-4, .htb-col-md-5, .htb-col-md-6, .htb-col-md-7, .htb-col-md-8, .htb-col-md-9, .htb-col-md-auto, .htb-col-sm, .htb-col-sm-1, .htb-col-sm-10, .htb-col-sm-11, .htb-col-sm-12, .htb-col-sm-2, .htb-col-sm-3, .htb-col-sm-4, .htb-col-sm-5, .htb-col-sm-6, .htb-col-sm-7, .htb-col-sm-8, .htb-col-sm-9, .htb-col-sm-auto, .htb-col-xl, .htb-col-xl-1, .htb-col-xl-10, .htb-col-xl-11, .htb-col-xl-12, .htb-col-xl-2, .htb-col-xl-3, .htb-col-xl-4, .htb-col-xl-5, .htb-col-xl-6, .htb-col-xl-7, .htb-col-xl-8, .htb-col-xl-9, .htb-col-xl-auto {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.htb-col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.htb-col-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
.htb-col-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.htb-col-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.htb-col-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.htb-col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.htb-col-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.htb-col-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.htb-col-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.htb-col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.htb-col-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.htb-col-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.htb-col-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.htb-col-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.htb-order-first {
-ms-flex-order: -1;
order: -1;
}
.htb-order-1 {
-ms-flex-order: 1;
order: 1;
}
.htb-order-2 {
-ms-flex-order: 2;
order: 2;
}
.htb-order-3 {
-ms-flex-order: 3;
order: 3;
}
.htb-order-4 {
-ms-flex-order: 4;
order: 4;
}
.htb-order-5 {
-ms-flex-order: 5;
order: 5;
}
.htb-order-6 {
-ms-flex-order: 6;
order: 6;
}
.htb-order-7 {
-ms-flex-order: 7;
order: 7;
}
.htb-order-8 {
-ms-flex-order: 8;
order: 8;
}
.htb-order-9 {
-ms-flex-order: 9;
order: 9;
}
.htb-order-10 {
-ms-flex-order: 10;
order: 10;
}
.htb-order-11 {
-ms-flex-order: 11;
order: 11;
}
.htb-order-12 {
-ms-flex-order: 12;
order: 12;
}
.htb-offset-1 {
margin-left: 8.333333%;
}
.htb-offset-2 {
margin-left: 16.666667%;
}
.htb-offset-3 {
margin-left: 25%;
}
.htb-offset-4 {
margin-left: 33.333333%;
}
.htb-offset-5 {
margin-left: 41.666667%;
}
.htb-offset-6 {
margin-left: 50%;
}
.htb-offset-7 {
margin-left: 58.333333%;
}
.htb-offset-8 {
margin-left: 66.666667%;
}
.htb-offset-9 {
margin-left: 75%;
}
.htb-offset-10 {
margin-left: 83.333333%;
}
.htb-offset-11 {
margin-left: 91.666667%;
}
@media (min-width:576px) {
.htb-col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.htb-col-sm-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
.htb-col-sm-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.htb-col-sm-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.htb-col-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.htb-col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.htb-col-sm-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.htb-col-sm-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.htb-col-sm-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.htb-col-sm-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.htb-col-sm-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.htb-col-sm-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.htb-col-sm-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.htb-col-sm-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.htb-order-sm-first {
-ms-flex-order: -1;
order: -1;
}
.htb-order-sm-1 {
-ms-flex-order: 1;
order: 1;
}
.htb-order-sm-2 {
-ms-flex-order: 2;
order: 2;
}
.htb-order-sm-3 {
-ms-flex-order: 3;
order: 3;
}
.htb-order-sm-4 {
-ms-flex-order: 4;
order: 4;
}
.htb-order-sm-5 {
-ms-flex-order: 5;
order: 5;
}
.htb-order-sm-6 {
-ms-flex-order: 6;
order: 6;
}
.htb-order-sm-7 {
-ms-flex-order: 7;
order: 7;
}
.htb-order-sm-8 {
-ms-flex-order: 8;
order: 8;
}
.htb-order-sm-9 {
-ms-flex-order: 9;
order: 9;
}
.htb-order-sm-10 {
-ms-flex-order: 10;
order: 10;
}
.htb-order-sm-11 {
-ms-flex-order: 11;
order: 11;
}
.htb-order-sm-12 {
-ms-flex-order: 12;
order: 12;
}
.htb-offset-sm-0 {
margin-left: 0;
}
.htb-offset-sm-1 {
margin-left: 8.333333%;
}
.htb-offset-sm-2 {
margin-left: 16.666667%;
}
.htb-offset-sm-3 {
margin-left: 25%;
}
.htb-offset-sm-4 {
margin-left: 33.333333%;
}
.htb-offset-sm-5 {
margin-left: 41.666667%;
}
.htb-offset-sm-6 {
margin-left: 50%;
}
.htb-offset-sm-7 {
margin-left: 58.333333%;
}
.htb-offset-sm-8 {
margin-left: 66.666667%;
}
.htb-offset-sm-9 {
margin-left: 75%;
}
.htb-offset-sm-10 {
margin-left: 83.333333%;
}
.htb-offset-sm-11 {
margin-left: 91.666667%;
}
}@media (min-width:768px) {
.htb-col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.htb-col-md-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
.htb-col-md-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.htb-col-md-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.htb-col-md-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.htb-col-md-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.htb-col-md-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.htb-col-md-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.htb-col-md-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.htb-col-md-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.htb-col-md-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.htb-col-md-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.htb-col-md-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.htb-col-md-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.htb-order-md-first {
-ms-flex-order: -1;
order: -1;
}
.htb-order-md-1 {
-ms-flex-order: 1;
order: 1;
}
.htb-order-md-2 {
-ms-flex-order: 2;
order: 2;
}
.htb-order-md-3 {
-ms-flex-order: 3;
order: 3;
}
.htb-order-md-4 {
-ms-flex-order: 4;
order: 4;
}
.htb-order-md-5 {
-ms-flex-order: 5;
order: 5;
}
.htb-order-md-6 {
-ms-flex-order: 6;
order: 6;
}
.htb-order-md-7 {
-ms-flex-order: 7;
order: 7;
}
.htb-order-md-8 {
-ms-flex-order: 8;
order: 8;
}
.htb-order-md-9 {
-ms-flex-order: 9;
order: 9;
}
.htb-order-md-10 {
-ms-flex-order: 10;
order: 10;
}
.htb-order-md-11 {
-ms-flex-order: 11;
order: 11;
}
.htb-order-md-12 {
-ms-flex-order: 12;
order: 12;
}
.htb-offset-md-0 {
margin-left: 0;
}
.htb-offset-md-1 {
margin-left: 8.333333%;
}
.htb-offset-md-2 {
margin-left: 16.666667%;
}
.htb-offset-md-3 {
margin-left: 25%;
}
.htb-offset-md-4 {
margin-left: 33.333333%;
}
.htb-offset-md-5 {
margin-left: 41.666667%;
}
.htb-offset-md-6 {
margin-left: 50%;
}
.htb-offset-md-7 {
margin-left: 58.333333%;
}
.htb-offset-md-8 {
margin-left: 66.666667%;
}
.htb-offset-md-9 {
margin-left: 75%;
}
.htb-offset-md-10 {
margin-left: 83.333333%;
}
.htb-offset-md-11 {
margin-left: 91.666667%;
}
}@media (min-width:992px) {
.htb-col-lg {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.htb-col-lg-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
.htb-col-lg-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.htb-col-lg-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.htb-col-lg-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.htb-col-lg-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.htb-col-lg-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.htb-col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.htb-col-lg-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.htb-col-lg-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.htb-col-lg-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.htb-col-lg-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.htb-col-lg-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.htb-col-lg-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.htb-order-lg-first {
-ms-flex-order: -1;
order: -1;
}
.htb-order-lg-1 {
-ms-flex-order: 1;
order: 1;
}
.htb-order-lg-2 {
-ms-flex-order: 2;
order: 2;
}
.htb-order-lg-3 {
-ms-flex-order: 3;
order: 3;
}
.htb-order-lg-4 {
-ms-flex-order: 4;
order: 4;
}
.htb-order-lg-5 {
-ms-flex-order: 5;
order: 5;
}
.htb-order-lg-6 {
-ms-flex-order: 6;
order: 6;
}
.htb-order-lg-7 {
-ms-flex-order: 7;
order: 7;
}
.htb-order-lg-8 {
-ms-flex-order: 8;
order: 8;
}
.htb-order-lg-9 {
-ms-flex-order: 9;
order: 9;
}
.htb-order-lg-10 {
-ms-flex-order: 10;
order: 10;
}
.htb-order-lg-11 {
-ms-flex-order: 11;
order: 11;
}
.htb-order-lg-12 {
-ms-flex-order: 12;
order: 12;
}
.htb-offset-lg-0 {
margin-left: 0;
}
.htb-offset-lg-1 {
margin-left: 8.333333%;
}
.htb-offset-lg-2 {
margin-left: 16.666667%;
}
.htb-offset-lg-3 {
margin-left: 25%;
}
.htb-offset-lg-4 {
margin-left: 33.333333%;
}
.htb-offset-lg-5 {
margin-left: 41.666667%;
}
.htb-offset-lg-6 {
margin-left: 50%;
}
.htb-offset-lg-7 {
margin-left: 58.333333%;
}
.htb-offset-lg-8 {
margin-left: 66.666667%;
}
.htb-offset-lg-9 {
margin-left: 75%;
}
.htb-offset-lg-10 {
margin-left: 83.333333%;
}
.htb-offset-lg-11 {
margin-left: 91.666667%;
}
}@media (min-width:1200px) {
.htb-col-xl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.htb-col-xl-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
.htb-col-xl-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.htb-col-xl-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.htb-col-xl-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.htb-col-xl-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.htb-col-xl-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.htb-col-xl-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.htb-col-xl-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.htb-col-xl-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.htb-col-xl-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.htb-col-xl-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.htb-col-xl-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.htb-col-xl-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.htb-order-xl-first {
-ms-flex-order: -1;
order: -1;
}
.htb-order-xl-1 {
-ms-flex-order: 1;
order: 1;
}
.htb-order-xl-2 {
-ms-flex-order: 2;
order: 2;
}
.htb-order-xl-3 {
-ms-flex-order: 3;
order: 3;
}
.htb-order-xl-4 {
-ms-flex-order: 4;
order: 4;
}
.htb-order-xl-5 {
-ms-flex-order: 5;
order: 5;
}
.htb-order-xl-6 {
-ms-flex-order: 6;
order: 6;
}
.htb-order-xl-7 {
-ms-flex-order: 7;
order: 7;
}
.htb-order-xl-8 {
-ms-flex-order: 8;
order: 8;
}
.htb-order-xl-9 {
-ms-flex-order: 9;
order: 9;
}
.htb-order-xl-10 {
-ms-flex-order: 10;
order: 10;
}
.htb-order-xl-11 {
-ms-flex-order: 11;
order: 11;
}
.htb-order-xl-12 {
-ms-flex-order: 12;
order: 12;
}
.htb-offset-xl-0 {
margin-left: 0;
}
.htb-offset-xl-1 {
margin-left: 8.333333%;
}
.htb-offset-xl-2 {
margin-left: 16.666667%;
}
.htb-offset-xl-3 {
margin-left: 25%;
}
.htb-offset-xl-4 {
margin-left: 33.333333%;
}
.htb-offset-xl-5 {
margin-left: 41.666667%;
}
.htb-offset-xl-6 {
margin-left: 50%;
}
.htb-offset-xl-7 {
margin-left: 58.333333%;
}
.htb-offset-xl-8 {
margin-left: 66.666667%;
}
.htb-offset-xl-9 {
margin-left: 75%;
}
.htb-offset-xl-10 {
margin-left: 83.333333%;
}
.htb-offset-xl-11 {
margin-left: 91.666667%;
}
}.htb-table {
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
background-color: transparent;
}
.htb-table td, .htb-table th {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #e9ecef;
}
.htb-table thead th {
vertical-align: bottom;
border-bottom: 2px solid #e9ecef;
}
.htb-table tbody+tbody {
border-top: 2px solid #e9ecef;
}
.htb-table .htb-table {
background-color: #fff;
}
.htb-table-sm td, .htb-table-sm th {
padding: .3rem;
}
.htb-table-bordered {
border: 1px solid #e9ecef;
}
.htb-table-bordered td, .htb-table-bordered th {
border: 1px solid #e9ecef;
}
.htb-table-bordered thead td, .htb-table-bordered thead th {
border-bottom-width: 2px;
}
.htb-table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, .05);
}
.htb-table-hover tbody tr:hover {
background-color: rgba(0, 0, 0, .075);
}
.htb-table-primary, .htb-table-primary>td, .htb-table-primary>th {
background-color: #b8daff;
}
.htb-table-hover .htb-table-primary:hover {
background-color: #9fcdff;
}
.htb-table-hover .htb-table-primary:hover>td, .htb-table-hover .htb-table-primary:hover>th {
background-color: #9fcdff;
}
.htb-table-secondary, .htb-table-secondary>td, .htb-table-secondary>th {
background-color: #dddfe2;
}
.htb-table-hover .htb-table-secondary:hover {
background-color: #cfd2d6;
}
.htb-table-hover .htb-table-secondary:hover>td, .htb-table-hover .htb-table-secondary:hover>th {
background-color: #cfd2d6;
}
.htb-table-success, .htb-table-success>td, .htb-table-success>th {
background-color: #c3e6cb;
}
.htb-table-hover .htb-table-success:hover {
background-color: #b1dfbb;
}
.htb-table-hover .htb-table-success:hover>td, .htb-table-hover .htb-table-success:hover>th {
background-color: #b1dfbb;
}
.htb-table-info, .htb-table-info>td, .htb-table-info>th {
background-color: #bee5eb;
}
.htb-table-hover .htb-table-info:hover {
background-color: #abdde5;
}
.htb-table-hover .htb-table-info:hover>td, .htb-table-hover .htb-table-info:hover>th {
background-color: #abdde5;
}
.htb-table-warning, .htb-table-warning>td, .htb-table-warning>th {
background-color: #ffeeba;
}
.htb-table-hover .htb-table-warning:hover {
background-color: #ffe8a1;
}
.htb-table-hover .htb-table-warning:hover>td, .htb-table-hover .htb-table-warning:hover>th {
background-color: #ffe8a1;
}
.htb-table-danger, .htb-table-danger>td, .htb-table-danger>th {
background-color: #f5c6cb;
}
.htb-table-hover .htb-table-danger:hover {
background-color: #f1b0b7;
}
.htb-table-hover .htb-table-danger:hover>td, .htb-table-hover .htb-table-danger:hover>th {
background-color: #f1b0b7;
}
.htb-table-light, .htb-table-light>td, .htb-table-light>th {
background-color: #fdfdfe;
}
.htb-table-hover .htb-table-light:hover {
background-color: #ececf6;
}
.htb-table-hover .htb-table-light:hover>td, .htb-table-hover .htb-table-light:hover>th {
background-color: #ececf6;
}
.htb-table-dark, .htb-table-dark>td, .htb-table-dark>th {
background-color: #c6c8ca;
}
.htb-table-hover .htb-table-dark:hover {
background-color: #b9bbbe;
}
.htb-table-hover .htb-table-dark:hover>td, .htb-table-hover .htb-table-dark:hover>th {
background-color: #b9bbbe;
}
.htb-table-active, .htb-table-active>td, .htb-table-active>th {
background-color: rgba(0, 0, 0, .075);
}
.htb-table-hover .htb-table-active:hover {
background-color: rgba(0, 0, 0, .075);
}
.htb-table-hover .htb-table-active:hover>td, .htb-table-hover .htb-table-active:hover>th {
background-color: rgba(0, 0, 0, .075);
}
.htb-table .htb-thead-dark th {
color: #fff;
background-color: #212529;
border-color: #32383e;
}
.htb-table .htb-thead-light th {
color: #495057;
background-color: #e9ecef;
border-color: #e9ecef;
}
.htb-table-dark {
color: #fff;
background-color: #212529;
}
.htb-table-dark td, .htb-table-dark th, .htb-table-dark thead th {
border-color: #32383e;
}
.htb-table-dark.htb-table-bordered {
border: 0;
}
.htb-table-dark.htb-table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(255, 255, 255, .05);
}
.htb-table-dark.htb-table-hover tbody tr:hover {
background-color: rgba(255, 255, 255, .075);
}
@media (max-width:575px) {
.htb-table-responsive-sm {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.htb-table-responsive-sm.htb-table-bordered {
border: 0;
}
}@media (max-width:767px) {
.htb-table-responsive-md {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.htb-table-responsive-md.htb-table-bordered {
border: 0;
}
}@media (max-width:991px) {
.htb-table-responsive-lg {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.htb-table-responsive-lg.htb-table-bordered {
border: 0;
}
}@media (max-width:1199px) {
.htb-table-responsive-xl {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.htb-table-responsive-xl.htb-table-bordered {
border: 0;
}
}.htb-table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.htb-table-responsive.htb-table-bordered {
border: 0;
}
.htb-form-control {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-image: none;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.htb-form-control::-ms-expand {
background-color: transparent;
border: 0;
}
.htb-form-control:focus {
color: #495057;
background-color: #fff;
border-color: #80bdff;
outline: 0;
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.htb-form-control::-webkit-input-placeholder {
color: #868e96;
opacity: 1;
}
.htb-form-control:-ms-input-placeholder {
color: #868e96;
opacity: 1;
}
.htb-form-control::-ms-input-placeholder {
color: #868e96;
opacity: 1;
}
.htb-form-control::placeholder {
color: #868e96;
opacity: 1;
}
.htb-form-control:disabled, .htb-form-control[readonly] {
background-color: #e9ecef;
opacity: 1;
}
select.htb-form-control:not([size]):not([multiple]) {
height: calc(2.25rem + 2px);
}
select.htb-form-control:focus::-ms-value {
color: #495057;
background-color: #fff;
}
.htb-form-control-file, .htb-form-control-range {
display: block;
}
.htb-col-form-label {
padding-top: calc(.375rem + 1px);
padding-bottom: calc(.375rem + 1px);
margin-bottom: 0;
line-height: 1.5;
}
.htb-col-form-label-lg {
padding-top: calc(.5rem + 1px);
padding-bottom: calc(.5rem + 1px);
font-size: 1.25rem;
line-height: 1.5;
}
.htb-col-form-label-sm {
padding-top: calc(.25rem + 1px);
padding-bottom: calc(.25rem + 1px);
font-size: .875rem;
line-height: 1.5;
}
.htb-form-group {
margin-bottom: 1rem;
}
.htb-form-text {
display: block;
margin-top: .25rem;
}
.htb-form-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -5px;
margin-left: -5px;
}
.htb-form-row>.htb-col, .htb-form-row>[class*=col-] {
padding-right: 5px;
padding-left: 5px;
}
.htb-btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.htb-btn:focus, .htb-btn:hover {
text-decoration: none;
}
.htb-btn.htb-focus, .htb-btn:focus {
outline: 0;
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.htb-btn.disabled, .htb-btn:disabled {
opacity: .65;
}
.htb-btn:not([disabled]):not(.disabled).htb-active, .htb-btn:not([disabled]):not(.htb-disabled):active {
background-image: none;
}
a.htb-btn.htb-disabled, fieldset[disabled] a.htb-htb-btn {
pointer-events: none;
}
.htb-btn-primary {
color: #fff;
background-color: #007bff;
border-color: #007bff;
}
.htb-btn-primary:hover {
color: #fff;
background-color: #0069d9;
border-color: #0062cc;
}
.htb-btn-primary.htb-focus, .htb-btn-primary:focus {
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.htb-btn-primary.htb-disabled, .htb-btn-primary:disabled {
background-color: #007bff;
border-color: #007bff;
}
.htb-btn-primary:not([disabled]):not(.htb-disabled).htb-active, .htb-btn-primary:not([disabled]):not(.htb-disabled):active, .show>.htb-btn-primary.htb-dropdown-toggle {
color: #fff;
background-color: #0062cc;
border-color: #005cbf;
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.htb-btn-secondary {
color: #fff;
background-color: #868e96;
border-color: #868e96;
}
.htb-btn-secondary:hover {
color: #fff;
background-color: #727b84;
border-color: #6c757d;
}
.htb-btn-secondary.htb-focus, .htb-btn-secondary:focus {
box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5);
}
.htb-btn-secondary.htb-disabled, .htb-btn-secondary:disabled {
background-color: #868e96;
border-color: #868e96;
}
.htb-btn-secondary:not([disabled]):not(.htb-disabled).htb-active, .htb-btn-secondary:not([disabled]):not(.htb-disabled):active, .show>.htb-btn-secondary.htb-dropdown-toggle {
color: #fff;
background-color: #6c757d;
border-color: #666e76;
box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5);
}
.htb-btn-success {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.htb-btn-success:hover {
color: #fff;
background-color: #218838;
border-color: #1e7e34;
}
.htb-btn-success.htb-focus, .htb-btn-success:focus {
box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.htb-btn-success.htb-disabled, .htb-btn-success:disabled {
background-color: #28a745;
border-color: #28a745;
}
.htb-btn-success:not([disabled]):not(.htb-disabled).htb-active, .htb-btn-success:not([disabled]):not(.htb-disabled):active, .htb-show>.htb-btn-success.htb-dropdown-toggle {
color: #fff;
background-color: #1e7e34;
border-color: #1c7430;
box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.htb-btn-info {
color: #fff;
background-color: #17a2b8;
border-color: #17a2b8;
}
.htb-btn-info:hover {
color: #fff;
background-color: #138496;
border-color: #117a8b;
}
.htb-btn-info.focus, .htb-btn-info:focus {
box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.htb-btn-info.disabled, .htb-btn-info:disabled {
background-color: #17a2b8;
border-color: #17a2b8;
}
.htb-btn-info:not([disabled]):not(.htb-disabled).htb-active, .htb-btn-info:not([disabled]):not(.htb-disabled):active, .htb-show>.htb-btn-info.htb-dropdown-toggle {
color: #fff;
background-color: #117a8b;
border-color: #10707f;
box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.htb-btn-warning {
color: #111;
background-color: #ffc107;
border-color: #ffc107;
}
.htb-btn-warning:hover {
color: #111;
background-color: #e0a800;
border-color: #d39e00;
}
.htb-btn-warning.focus, .htb-btn-warning:focus {
box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.htb-btn-warning.disabled, .htb-btn-warning:disabled {
background-color: #ffc107;
border-color: #ffc107;
}
.htb-btn-warning:not([disabled]):not(.htb-disabled).htb-active, .htb-btn-warning:not([disabled]):not(.htb-disabled):active, .htb-show>.htb-btn-warning.htb-dropdown-toggle {
color: #111;
background-color: #d39e00;
border-color: #c69500;
box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.htb-btn-danger {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.htb-btn-danger:hover {
color: #fff;
background-color: #c82333;
border-color: #bd2130;
}
.htb-btn-danger.focus, .htb-btn-danger:focus {
box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.htb-btn-danger.disabled, .htb-btn-danger:disabled {
background-color: #dc3545;
border-color: #dc3545;
}
.htb-btn-danger:not([disabled]):not(.htb-disabled).htb-active, .htb-btn-danger:not([disabled]):not(.htb-disabled):active, .htb-show>.htb-btn-danger.htb-dropdown-toggle {
color: #fff;
background-color: #bd2130;
border-color: #b21f2d;
box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.htb-fade {
opacity: 0;
transition: opacity .15s linear;
}
.htb-modal.htb-fade {
display: none;
}
.htb-modal.htb-fade.htb-show {
display: block;
}
.htb-fade.htb-show {
opacity: 1;
}
.htb-collapse {
display: none;
}
.htb-collapse.htb-show {
display: block;
}
.htb-collapsing{
position:relative;
height:0;
overflow:hidden;
transition:height .35s ease;
}
tr.htb-collapse.htb-show {
display: table-row;
}
tbody.htb-collapse.htb-show {
display: table-row-group;
}
[data-toggle=buttons]>.htb-btn input[type=checkbox], [data-toggle=buttons]>.htb-btn input[type=radio], [data-toggle=buttons]>.htb-btn-group>.htb-btn input[type=checkbox], [data-toggle=buttons]>.htb-btn-group>.htb-btn input[type=radio] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.htb-nav {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.htb-nav-link {
display: block;
padding: .5rem 1rem;
}
.htb-nav-link:focus, .htb-nav-link:hover {
text-decoration: none;
}
.htb-nav-link.htb-disabled {
color: #868e96;
}
.htb-nav-tabs {
border-bottom: 1px solid #ddd;
}
.htb-nav-tabs .htb-nav-item {
margin-bottom: -1px;
}
.htb-nav-tabs .htb-nav-link {
border: 1px solid transparent;
border-top-left-radius: .25rem;
border-top-right-radius: .25rem;
}
.htb-nav-tabs .htb-nav-link:focus, .htb-nav-tabs .htb-nav-link:hover {
border-color: #e9ecef #e9ecef #ddd;
}
.htb-nav-tabs .htb-nav-link.htb-disabled {
color: #868e96;
background-color: transparent;
border-color: transparent;
}
.htb-nav-tabs .htb-nav-item.show .htb-nav-link, .htb-nav-tabs .htb-nav-link.htb-active {
color: #495057;
background-color: #fff;
border-color: #ddd #ddd #fff;
}
.htb-nav-pills .htb-nav-link {
border-radius: .25rem;
}
.htb-nav-pills .htb-nav-link.htb-active, .htb-nav-pills .show>.htb-nav-link {
color: #fff;
background-color: #007bff;
}
.htb-nav-fill .htb-nav-item {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.htb-nav-justified .htb-nav-item {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
.htb-tab-content>.htb-tab-pane {
display: none;
}
.htb-tab-content>.htb-active {
display: block;
}
@media (min-width:576px) {
.htb-pagination {
display: -ms-flexbox;
display: flex;
padding-left: 0;
list-style: none;
border-radius: .25rem;
}
.htb-alert {
position: relative;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 1rem 0;
}
to {
background-position: 0 0;
}
}@keyframes progress-bar-stripes {
from {
background-position: 1rem 0;
}
to {
background-position: 0 0;
}
}
.htb-progress {
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
font-size: .75rem;
background-color: #e9ecef;
border-radius: .25rem;
}
.htb-progress-bar {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
background-color: #007bff;
}
.htb-progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-size: 1rem 1rem;
}
.htb-progress-bar-animated {
-webkit-animation: progress-bar-stripes 1s linear infinite;
animation: progress-bar-stripes 1s linear infinite;
}
.htb-media {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
}@media (min-width:320px) {
.htb-close {
float: right;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: .5;
}
.htb-close:focus, .htb-close:hover {
color: #000;
text-decoration: none;
opacity: .75;
}
button.htb-close {
padding: 0;
background: 0 0;
border: 0;
-webkit-appearance: none;
}
.htb-modal-open {
overflow: hidden;
}
.htb-modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
display: none;
overflow: hidden;
outline: 0;
}
.htb-modal.htb-fade .htb-modal-dialog {
transition: -webkit-transform .3s ease-out;
transition: transform .3s ease-out;
transition: transform .3s ease-out, -webkit-transform .3s ease-out;
-webkit-transform: translate(0, -25%);
transform: translate(0, -25%);
}
.htb-modal.htb-show .htb-modal-dialog {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.htb-modal-open .htb-modal {
overflow-x: hidden;
overflow-y: auto;
}
.htb-modal-dialog {
position: relative;
width: auto;
margin: 10px;
pointer-events: none;
}
.htb-modal-content {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: .3rem;
outline: 0;
}
.htb-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
}
.htb-modal-backdrop.htb-fade {
opacity: 0;
}
.htb-modal-backdrop.htb-show {
opacity: .5;
}
.htb-modal-header {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 15px;
border-bottom: 1px solid #e9ecef;
border-top-left-radius: .3rem;
border-top-right-radius: .3rem;
}
.htb-modal-header .htb-close {
padding: 15px;
margin: -15px -15px -15px auto;
}
.htb-modal-title {
margin-bottom: 0;
line-height: 1.5;
}
.htb-modal-body {
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 15px;
}
.htb-modal-footer {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: end;
justify-content: flex-end;
padding: 15px;
border-top: 1px solid #e9ecef;
}
.htb-modal-footer>:not(:first-child) {
margin-left: .25rem;
}
.htb-modal-footer>:not(:last-child) {
margin-right: .25rem;
}
.htb-modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
.htb-modal-dialog {
max-width: 500px;
margin: 30px auto;
}
.htb-modal-sm {
max-width: 300px;
}
}@media (min-width:992px) {
.htb-modal-lg {
max-width: 800px;
}
}.htb-tooltip {
position: absolute;
z-index: 1070;
display: block;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: .875rem;
word-wrap: break-word;
opacity: 0;
}
.htb-tooltip.htb-show {
opacity: .9;
}
.htb-tooltip .htb-arrow {
position: absolute;
display: block;
width: 5px;
height: 5px;
}
.htb-tooltip .htb-arrow::before {
position: absolute;
border-color: transparent;
border-style: solid;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=top], .htb-tooltip.bs-tooltip-top {
padding: 5px 0;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=top] .htb-arrow, .htb-tooltip.bs-tooltip-top .htb-arrow {
bottom: 0;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=top] .htb-arrow::before, .htb-tooltip.bs-tooltip-top .htb-arrow::before {
margin-left: -3px;
content: "";
border-width: 5px 5px 0;
border-top-color: #000;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=right], .htb-tooltip.bs-tooltip-right {
padding: 0 5px;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=right] .htb-arrow, .htb-tooltip.bs-tooltip-right .htb-arrow {
left: 0;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=right] .htb-arrow::before, .htb-tooltip.bs-tooltip-right .htb-arrow::before {
margin-top: -3px;
content: "";
border-width: 5px 5px 5px 0;
border-right-color: #000;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=bottom], .htb-tooltip.bs-tooltip-bottom {
padding: 5px 0;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=bottom] .htb-arrow, .htb-tooltip.bs-tooltip-bottom .htb-arrow {
top: 0;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=bottom] .htb-arrow::before, .htb-tooltip.bs-tooltip-bottom .htb-arrow::before {
margin-left: -3px;
content: "";
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=left], .htb-tooltip.bs-tooltip-left {
padding: 0 5px;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=left] .htb-arrow, .htb-tooltip.bs-tooltip-left .htb-arrow {
right: 0;
}
.htb-tooltip.bs-tooltip-auto[x-placement^=left] .htb-arrow::before, .htb-tooltip.bs-tooltip-left .htb-arrow::before {
right: 0;
margin-top: -3px;
content: "";
border-width: 5px 0 5px 5px;
border-left-color: #000;
}
.htb-tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
background-color: #000;
border-radius: .25rem;
}
.htb-popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: block;
max-width: 276px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: .875rem;
word-wrap: break-word;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: .3rem;
}
.htb-popover .htb-arrow {
position: absolute;
display: block;
width: .8rem;
height: .4rem;
}
.htb-popover .htb-arrow::after, .htb-popover .htb-arrow::before {
position: absolute;
display: block;
border-color: transparent;
border-style: solid;
}
.htb-popover .htb-arrow::before {
content: "";
border-width: .8rem;
}
.htb-popover .htb-arrow::after {
content: "";
border-width: .8rem;
}
.htb-popover.htb-bs-popover-auto[x-placement^=top], .htb-popover.htb-bs-popover-top {
margin-bottom: .8rem;
}
.htb-popover.htb-bs-popover-auto[x-placement^=top] .htb-arrow, .htb-popover.htb-bs-popover-top .htb-arrow {
bottom: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=top] .htb-arrow::after, .htb-popover.htb-bs-popover-auto[x-placement^=top] .htb-arrow::before, .htb-popover.htb-bs-popover-top .htb-arrow::after, .htb-popover.htb-bs-popover-top .htb-arrow::before {
border-bottom-width: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=top] .htb-arrow::before, .htb-popover.htb-bs-popover-top .htb-arrow::before {
bottom: -.8rem;
margin-left: -.8rem;
border-top-color: rgba(0, 0, 0, .25);
}
.htb-popover.htb-bs-popover-auto[x-placement^=top] .htb-arrow::after, .htb-popover.htb-bs-popover-top .htb-arrow::after {
bottom: calc((.8rem - 1px) * -1);
margin-left: -.8rem;
border-top-color: #fff;
}
.htb-popover.htb-bs-popover-auto[x-placement^=right], .htb-popover.htb-bs-popover-right {
margin-left: .8rem;
}
.htb-popover.htb-bs-popover-auto[x-placement^=right] .htb-arrow, .htb-popover.htb-bs-popover-right .htb-arrow {
left: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=right] .htb-arrow::after, .htb-popover.htb-bs-popover-auto[x-placement^=right] .htb-arrow::before, .htb-popover.htb-bs-popover-right .htb-arrow::after, .htb-popover.htb-bs-popover-right .htb-arrow::before {
margin-top: -.8rem;
border-left-width: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=right] .htb-arrow::before, .htb-popover.htb-bs-popover-right .htb-arrow::before {
left: -.8rem;
border-right-color: rgba(0, 0, 0, .25);
}
.htb-popover.htb-bs-popover-auto[x-placement^=right] .htb-arrow::after, .htb-popover.htb-bs-popover-right .htb-arrow::after {
left: calc((.8rem - 1px) * -1);
border-right-color: #fff;
}
.htb-popover.htb-bs-popover-auto[x-placement^=bottom], .htb-popover.htb-bs-popover-bottom {
margin-top: .8rem;
}
.htb-popover.htb-bs-popover-auto[x-placement^=bottom] .htb-arrow, .htb-popover.htb-bs-popover-bottom .htb-arrow {
top: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=bottom] .htb-arrow::after, .htb-popover.htb-bs-popover-auto[x-placement^=bottom] .htb-arrow::before, .htb-popover.htb-bs-popover-bottom .htb-arrow::after, .htb-popover.htb-bs-popover-bottom .htb-arrow::before {
margin-left: -.8rem;
border-top-width: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=bottom] .htb-arrow::before, .htb-popover.htb-bs-popover-bottom .htb-arrow::before {
top: -.8rem;
border-bottom-color: rgba(0, 0, 0, .25);
}
.htb-popover.htb-bs-popover-auto[x-placement^=bottom] .htb-arrow::after, .htb-popover.htb-bs-popover-bottom .htb-arrow::after {
top: calc((.8rem - 1px) * -1);
border-bottom-color: #fff;
}
.htb-popover.htb-bs-popover-auto[x-placement^=bottom] .htb-popover-header::before, .htb-popover.htb-bs-popover-bottom .htb-popover-header::before {
position: absolute;
top: 0;
left: 50%;
display: block;
width: 20px;
margin-left: -10px;
content: "";
border-bottom: 1px solid #f7f7f7;
}
.htb-popover.htb-bs-popover-auto[x-placement^=left], .htb-popover.htb-bs-popover-left {
margin-right: .8rem;
}
.htb-popover.htb-bs-popover-auto[x-placement^=left] .htb-arrow, .htb-popover.htb-bs-popover-left .htb-arrow {
right: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=left] .htb-arrow::after, .htb-popover.htb-bs-popover-auto[x-placement^=left] .htb-arrow::before, .htb-popover.htb-bs-popover-left .htb-arrow::after, .htb-popover.htb-bs-popover-left .htb-arrow::before {
margin-top: -.8rem;
border-right-width: 0;
}
.htb-popover.htb-bs-popover-auto[x-placement^=left] .htb-arrow::before, .htb-popover.htb-bs-popover-left .htb-arrow::before {
right: -.8rem;
border-left-color: rgba(0, 0, 0, .25);
}
.htb-popover.htb-bs-popover-auto[x-placement^=left] .htb-arrow::after, .htb-popover.htb-bs-popover-left .htb-arrow::after {
right: calc((.8rem - 1px) * -1);
border-left-color: #fff;
}
.htb-popover-header {
padding: .5rem .75rem;
margin-bottom: 0;
font-size: 1rem;
color: inherit;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-top-left-radius: calc(.3rem - 1px);
border-top-right-radius: calc(.3rem - 1px);
}
.htb-popover-header:empty {
display: none;
}
.htb-popover-body {
padding: .5rem .75rem;
color: #212529;
}
.htb-float-left {
float: left!important;
}
.htb-float-right {
float: right!important;
}
.htb-float-none {
float: none!important;
}
.htb-visible {
visibility: visible!important;
}
.htb-fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}
.htb-fixed-bottom {
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 1030;
}
@supports ((position:-webkit-sticky) or (position:sticky)) {
.htb-sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
.htb-justify-content-start {
-ms-flex-pack: start!important;
justify-content: flex-start!important;
}
.htb-justify-content-end {
-ms-flex-pack: end!important;
justify-content: flex-end!important;
}
.htb-justify-content-center {
-ms-flex-pack: center!important;
justify-content: center!important;
}
.htb-justify-content-between {
-ms-flex-pack: justify!important;
justify-content: space-between!important;
}
.htb-justify-content-around {
-ms-flex-pack: distribute!important;
justify-content: space-around!important;
}
.htb-align-items-start {
-ms-flex-align: start!important;
align-items: flex-start!important;
}
.htb-align-items-end {
-ms-flex-align: end!important;
align-items: flex-end!important;
}
.htb-align-items-center {
-ms-flex-align: center!important;
align-items: center!important;
}
.htb-align-items-baseline {
-ms-flex-align: baseline!important;
align-items: baseline!important;
}
.htb-align-items-stretch {
-ms-flex-align: stretch!important;
align-items: stretch!important;
}
.htb-align-content-start {
-ms-flex-line-pack: start!important;
align-content: flex-start!important;
}
.htb-align-content-end {
-ms-flex-line-pack: end!important;
align-content: flex-end!important;
}
.htb-align-content-center {
-ms-flex-line-pack: center!important;
align-content: center!important;
}
.htb-align-content-between {
-ms-flex-line-pack: justify!important;
align-content: space-between!important;
}
.htb-align-content-around {
-ms-flex-line-pack: distribute!important;
align-content: space-around!important;
}
.htb-align-content-stretch {
-ms-flex-line-pack: stretch!important;
align-content: stretch!important;
}
.htb-align-self-auto {
-ms-flex-item-align: auto!important;
align-self: auto!important;
}
.htb-align-self-start {
-ms-flex-item-align: start!important;
align-self: flex-start!important;
}
.htb-align-self-end {
-ms-flex-item-align: end!important;
align-self: flex-end!important;
}
.htb-align-self-center {
-ms-flex-item-align: center!important;
align-self: center!important;
}
.htb-align-self-baseline {
-ms-flex-item-align: baseline!important;
align-self: baseline!important;
}
.htb-align-self-stretch {
-ms-flex-item-align: stretch!important;
align-self: stretch!important;
}
.htb-btn-outline-primary {
color: #007bff;
background-color: transparent;
background-image: none;
border-color: #007bff;
}
.htb-btn-outline-primary:hover {
color: #fff;
background-color: #007bff;
border-color: #007bff;
}
.htb-btn-outline-primary.focus,
.htb-btn-outline-primary:focus {
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.htb-btn-outline-primary.disabled,
.htb-btn-outline-primary:disabled {
color: #007bff;
background-color: transparent;
}
.htb-btn-outline-primary:not([disabled]):not(.disabled).active,
.htb-btn-outline-primary:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #007bff;
border-color: #007bff;
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.htb-btn-outline-secondary {
color: #868e96;
background-color: transparent;
background-image: none;
border-color: #868e96;
}
.htb-btn-outline-secondary:hover {
color: #fff;
background-color: #868e96;
border-color: #868e96;
}
.htb-btn-outline-secondary.focus,
.htb-btn-outline-secondary:focus {
box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5);
}
.htb-btn-outline-secondary.disabled,
.htb-btn-outline-secondary:disabled {
color: #868e96;
background-color: transparent;
}
.htb-btn-outline-secondary:not([disabled]):not(.disabled).active,
.htb-btn-outline-secondary:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-secondary.dropdown-toggle {
color: #fff;
background-color: #868e96;
border-color: #868e96;
box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5);
}
.htb-btn-outline-success {
color: #28a745;
background-color: transparent;
background-image: none;
border-color: #28a745;
}
.htb-btn-outline-success:hover {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.htb-btn-outline-success.focus,
.htb-btn-outline-success:focus {
box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.htb-btn-outline-success.disabled,
.htb-btn-outline-success:disabled {
color: #28a745;
background-color: transparent;
}
.htb-btn-outline-success:not([disabled]):not(.disabled).active,
.htb-btn-outline-success:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-success.dropdown-toggle {
color: #fff;
background-color: #28a745;
border-color: #28a745;
box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.htb-btn-outline-info {
color: #17a2b8;
background-color: transparent;
background-image: none;
border-color: #17a2b8;
}
.htb-btn-outline-info:hover {
color: #fff;
background-color: #17a2b8;
border-color: #17a2b8;
}
.htb-btn-outline-info.focus,
.htb-btn-outline-info:focus {
box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.htb-btn-outline-info.disabled,
.htb-btn-outline-info:disabled {
color: #17a2b8;
background-color: transparent;
}
.htb-btn-outline-info:not([disabled]):not(.disabled).active,
.htb-btn-outline-info:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-info.dropdown-toggle {
color: #fff;
background-color: #17a2b8;
border-color: #17a2b8;
box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.htb-btn-outline-warning {
color: #ffc107;
background-color: transparent;
background-image: none;
border-color: #ffc107;
}
.htb-btn-outline-warning:hover {
color: #fff;
background-color: #ffc107;
border-color: #ffc107;
}
.htb-btn-outline-warning.focus,
.htb-btn-outline-warning:focus {
box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.htb-btn-outline-warning.disabled,
.htb-btn-outline-warning:disabled {
color: #ffc107;
background-color: transparent;
}
.htb-btn-outline-warning:not([disabled]):not(.disabled).active,
.htb-btn-outline-warning:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-warning.dropdown-toggle {
color: #fff;
background-color: #ffc107;
border-color: #ffc107;
box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.htb-btn-outline-danger {
color: #dc3545;
background-color: transparent;
background-image: none;
border-color: #dc3545;
}
.htb-btn-outline-danger:hover {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.htb-btn-outline-danger.focus,
.htb-btn-outline-danger:focus {
box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.htb-btn-outline-danger.disabled,
.htb-btn-outline-danger:disabled {
color: #dc3545;
background-color: transparent;
}
.htb-btn-outline-danger:not([disabled]):not(.disabled).active,
.htb-btn-outline-danger:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-danger.dropdown-toggle {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.htb-btn-outline-light {
color: #f8f9fa;
background-color: transparent;
background-image: none;
border-color: #f8f9fa;
}
.htb-btn-outline-light:hover {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.htb-btn-outline-light.focus,
.htb-btn-outline-light:focus {
box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}
.htb-btn-outline-light.disabled,
.htb-btn-outline-light:disabled {
color: #f8f9fa;
background-color: transparent;
}
.htb-btn-outline-light:not([disabled]):not(.disabled).active,
.htb-btn-outline-light:not([disabled]):not(.disabled):active,
.show>.htb-btn-outline-light.dropdown-toggle {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}
.htb-btn-outline-dark {
color: #343a40;
background-color: transparent;
background-image: none;
border-color: #343a40;
}
.htb-btn-outline-dark:hover {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}
.htb-btn-outline-dark.focus,
.htb-btn-outline-dark:focus {
box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}
.htb-btn-outline-dark.disabled,
.htb-btn-outline-dark:disabled {
color: #343a40;
background-color: transparent;
}
.htb-btn-outline-dark:not([disabled]):not(.disabled).htb-active,
.htb-btn-outline-dark:not([disabled]):not(.disabled):active,
.htb-show>.htb-btn-outline-dark.dropdown-toggle {
color: #fff;
background-color: #343a40;
border-color: #343a40;
box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}
.htb-alert {
position: relative;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
}
.htb-alert-success {
color: #155724;
background-color: #d4edda;
border-color: #c3e6cb;
}
.htb-alert-danger {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}.htmega-section-title svg{
width: 20px;
}
.htmega-section-title .section-title-txt {
color: #23252a;
font-weight: 600;
line-height: 1;
margin: 0;
display: inline-block;
}
.htmega-section-title .section-subtitle-txt{
color: #494849;
font-family: "Poppins",sans-serif;
font-size: 16px;
line-height: 30px;
margin: 5px 0;
font-weight: 400;
}
.htmega-section-title span.htmega-title-sperator {
background-color: #383838;
display: inline-block;
height: 3px;
margin-bottom: 13px;
margin-top: 30px;
position: relative;
width: 50px;
}
.htmega-section-title.title-style-three span.htmega-title-sperator::before {
background-color: #383838;
bottom: 0;
content: "";
display: block;
height: 3px;
left: -13px;
margin-bottom: 13px;
margin-top: 25px;
position: absolute;
width: 50px;
}
.htmega-title-align-left .htmega-section-title.title-style-three span.htmega-title-sperator::before,.htmega-title-align-justify .htmega-section-title.title-style-three span.htmega-title-sperator::before{
left: 13px;
}
.htmega-section-title.htmega-subtitle-position-top {
display: flex;
flex-direction: column;
}
.htmega-section-title.htmega-subtitle-position-top .section-title-txt {
order: 2;
}
.htmega-section-title.htmega-subtitle-position-top .section-subtitle-txt {
order: 1;
}
.htmega-section-title.htmega-subtitle-position-top img {
order: 3;
}
.htmega-section-title.htmega-subtitle-position-top i{
order: 3;
}
.htmega-section-title img {
margin: auto;
}
.htmega-section-title.htmega-subtitle-position-top .htmega-title-sperator-sec {
order: 4;
}
.htmega-section-title.htmega-subtitle-position-top.title-style-four .htmega-title-sperator-sec {
order: 2;
}
.htmega-section-title.htmega-subtitle-position-top.title-style-four .section-title-txt{
order: 3;
}
.htmega-section-title.htmega-subtitle-position-top.title-style-four span.htmega-title-sperator{
margin-top: 8px;
}
.title-style-two .htmega-title-sperator-sec,.title-style-five .htmega-title-sperator-sec {
display: none;
}
.title-style-two .section-title-txt{
padding: 0 10.5%;
position: relative;
}
.title-style-two .section-title-txt::before,.title-style-two .section-title-txt::after {
background: #412e51 none repeat scroll 0 0;
content: "";
height: 3px;
left: 0;
position: absolute;
top: 50%;
width: 100px;
}
.title-style-two .section-title-txt::after {
right: 0;
top: 50%;
left: auto;
}
.title-style-two .section-title-txt{
margin-right: auto !important;
margin-left: auto !important;
}
.section-advancetitle-txt{
color: #f1f1f1;
font-size: 80px;
font-weight: 800;
line-height: 28px;
margin: 0;
position: absolute;
text-transform: uppercase;
top: 50%;
transform: translateY(-50%);
width: 100%;
z-index: -1;
}
.htmega-title-sperator-sec {
line-height: 1;
} .htmega-button .htb-btn:focus,.htmega-button .htb-btn:active {
box-shadow: none !important;
}
.htmega-button .htb-btn-outline-light {
border-color: #c8c8c8;
color: #c8c8c8;
}
.htmega-button {
display: inline-block;
}
.htmega-button .htmega-btn-effect-5,.htmega-button .htmega-btn-effect-6,.htmega-button .htmega-btn-effect-10{
overflow: hidden;
}
.htmega_button_icon {
display: inline-block;
}
.htmega_button_icon svg {
width: 20px;
}
.htmega-button .htb-btn {
border-radius: 0;
position: relative;
border: none;
z-index: 1;
transition: all 0.4s ease-in-out 0s;
}
.button-align-icon-left span.htmega_button_icon {
float: left;
}
.button-align-icon-left span.htmega_button_txt {
float: right;
}
.button-align-icon-right span.htmega_button_icon {
float: right;
}
.button-align-icon-right span.htmega_button_txt {
float: left;
}
.button-align-icon-top span.htmega_button_icon,.button-align-icon-bottom span.htmega_button_icon {
display: block;
}
.button-align-icon-top span.htmega_button_txt,.button-align-icon-bottom span.htmega_button_txt {
display: block;
}
.button-align-icon-top a.htb-btn {
display: flex;
flex-flow: column-reverse nowrap;
} .htmega-btn-size-xl {
padding: 35px 50px !important;
}
.htmega-btn-size-lg {
padding: 25px 50px !important;
}
.htmega-btn-size-md {
padding: 16px 43px !important;
}
.htmega-btn-size-sm {
padding: 8px 40px !important;
}
.htmega-btn-size-xs {
padding: 3px 10px !important;
} .htmega-btn-style-2 .htb-btn::after{
border-radius: inherit;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
transition-delay: 0s, 0s;
transition-duration: 0.3s, 0.3s;
transition-property: transform, background-color;
transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
width: 100%;
z-index: -1;
background-color: #ff6b6b;
border-radius: 30px;
transform: scale3d(0.7, 0.7, 1);
} .htmega-btn-effect-1{
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
z-index: 1;
}
.htmega-btn-effect-1::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #623687;
z-index: -1;
opacity: 0;
-webkit-transform: scale3d(0.7, 1, 1);
transform: scale3d(0.7, 1, 1);
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
z-index: -1;
}
.htmega-btn-effect-1:hover::before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); 
}
.htmega-btn-effect-2 {
z-index: 1;
overflow: hidden;
}
.htmega-btn-effect-2::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 150%;
height: 100%;
background: #623687;
z-index: -1;
-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
-webkit-transform-origin: 0% 100%;
transform-origin: 0% 100%;
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
z-index: -1;
}
.htmega-btn-effect-2:hover::before {
opacity: 1;
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.htmega-btn-effect-3 {
z-index: 1;
color: #fff;
}
.htmega-btn-effect-3::before, .htmega-btn-effect-3::after {
content: '';
border-radius: inherit;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
transition: transform 0.3s, background-color 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
z-index: -1;
}
.htmega-btn-effect-3::before {
border: 2px solid #623687;
-webkit-transform: scale3d(0.7, 0.7, 1);
transform: scale3d(0.7, 0.7, 1);
}
.htmega-btn-effect-3::after {
background: #18012c;
}
.htmega-btn-effect-3:hover::before {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.htmega-btn-effect-3:hover::after {
background-color: #623687;
-webkit-transform: scale3d(0.7, 0.7, 1);
transform: scale3d(0.7, 0.7, 1);
}
.htmega-btn-effect-4::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
bottom: -20px;
right: -20px;
background: inherit;
z-index: -1;
opacity: 0.4;
-webkit-transform: scale3d(0.8, 0.5, 1);
transform: scale3d(0.8, 0.5, 1);
}
.htmega-btn-effect-4:hover::before {
-webkit-animation: np-btn--2 0.3s 0.3s forwards;
animation: np-btn--2 0.3s 0.3s forwards;
}
.htmega-btn-effect-4:hover {
-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
color: #ECEFF1;
background-color: #623687;
-webkit-animation: np-btn--1 0.3s forwards;
animation: np-btn--1 0.3s forwards;
}
.htmega-btn-effect-5::before {
content: '';
z-index: -1;
position: absolute;
top: 50%;
left: 100%;
margin: -15px 0 0 1px;
width: 30px;
height: 30px;
border-radius: 50%;
background: #623687;
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transform: scale3d(1, 2, 1);
transform: scale3d(1, 2, 1);
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}
.htmega-btn-effect-5:hover::before {
-webkit-transform: scale3d(9, 9, 1);
transform: scale3d(9, 9, 1);
}
.htmega-btn-effect-6::before {
content: '';
z-index: -1;
position: absolute;
top: 50%;
margin: -15px 0 0 1px;
width: 30px;
height: 30px;
border-radius: 50%;
background: #623687;
-webkit-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-transform: scale3d(1, 2, 1);
transform: scale3d(1, 2, 1);
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
right: 100%;
}
.htmega-btn-effect-6:hover::before {
-webkit-transform: scale3d(9, 9, 1);
transform: scale3d(9, 9, 1);
}
.htmega-btn-effect-7::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
background: #e09d8b;
-webkit-transform: scaleX(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
color: #fff;
}
.htmega-btn-effect-7:hover::before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.htmega-btn-effect-8::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #45b29d;
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-8:hover::before {
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.htmega-btn-effect-9::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: -1px;
bottom: 0;
background: #18012c;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-9:hover::before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.htmega-btn-effect-10::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #18012c;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-10:hover::before {
-webkit-transform: scale(2);
transform: scale(2);
}
.htmega-btn-effect-11::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #18012c;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-11:hover::before {
-webkit-transform: scale(1);
transform: scale(1);
}
.htmega-btn-effect-12::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: -1px;
bottom: 0;
background: #d82f4e;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-12:hover::before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.htmega-btn-effect-13::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #18012c;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-13:hover::before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.htmega-btn-effect-14::before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #18012c;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.htmega-btn-effect-14:hover::before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
} .htmega-btn-shadow-1 .htb-btn::before{
background: rgba(0, 0, 0, 0) radial-gradient(ellipse at center center , rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%) repeat scroll 0 0;
content: "";
height: 10px;
left: 5%;
opacity: 0;
pointer-events: none;
position: absolute;
top: 100%;
transition-duration: 0.3s;
transition-property: transform, opacity;
width: 90%;
z-index: -1;
}
.htmega-btn-shadow-1 .htb-btn:hover::before {
opacity: 1;
transform: translateY(5px);
}
.htmega-btn-shadow-2 .htb-btn::before, .htmega-btn-shadow-2 .htb-btn::after {
background-repeat: no-repeat;
box-sizing: border-box;
content: "";
height: 5px;
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
transition-duration: 0.3s;
transition-property: opacity;
width: 100%;
}
.htmega-btn-shadow-2 .htb-btn::before {
background: rgba(0, 0, 0, 0) radial-gradient(ellipse at 50% 150% , rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%) repeat scroll 0 0;
bottom: 100%;
}
.htmega-btn-shadow-2 .htb-btn::after {
background: rgba(0, 0, 0, 0) radial-gradient(ellipse at 50% -50% , rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%) repeat scroll 0 0;
top: 100%;
}
.htmega-btn-shadow-2 .htb-btn:hover::before, .htmega-btn-shadow-2 .htb-btn:hover::after {
opacity: 1;
} .single_accourdion {
margin-bottom: 15px;
}
.single_accourdion:last-child{
margin-bottom: 0 !important;
}
.accordion-content {
border: 1px solid #ddd;
padding: 15px;
}
.htmega-items-hedding {
background: #e6e6e6 none repeat scroll 0 0;
cursor: pointer;
padding: 10px 20px;
position: relative;
margin: 0;
}
.htmega-accourdion-title h2 {
font-size: 16px;
font-weight: 600;
}
.htmega-accourdion-title .htmega-items-hedding .accourdion-icon {
position: absolute;
right: 0;
top: 0;
width: 40px;
height: 100%;
text-align: center;
line-height: 40px;
}
.htmega-accourdion-title .htmega-items-hedding .close-accourdion {
opacity: 1;
visibility: visible;
}
.htmega-accourdion-title .htmega-items-hedding .open-accourdion {
opacity: 0;
visibility: hidden;
}
.htmega-accourdion-title .htmega-items-hedding.htb-collapsed .open-accourdion {
opacity: 1;
visibility: visible;
}
.htmega-accourdion-title .htmega-items-hedding.htb-collapsed .close-accourdion {
opacity: 0;
visibility: hidden;
}
.htmega-icon-align-left .htmega-items-hedding {
padding-left: 40px;
}
.htmega-icon-align-left .accourdion-icon {
left: 0;
right: 0;
}
.htmega-icon-align-right .htmega-items-hedding {
padding-right: 40px;
} .gallery-wrap {
display: flex;
flex-direction: row;
width: 100%;
height: 70vh;
}
.gallery-wrap .item {
flex: 1;
height: 100%;
background-position: center;
background-size: cover;
background-repeat: none;
transition: flex 0.8s ease;
}
.gallery-wrap .item:hover {
flex: 7;
} ul.accordion--4 {
list-style: none;
padding: 0;
margin: 0;
display: flex;
text-align: center !important;
justify-content: center;
}
ul.accordion--4 li {
width: 115px;
height: 480px;
display: block;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
background-color: #fff;
background-repeat: no-repeat;
background-position: center center;
position: relative;
overflow: hidden;
cursor: pointer;
-moz-box-shadow: 1px 3px 15px #555;
-webkit-box-shadow: 1px 3px 15px #555;
box-shadow: 1px 3px 15px #555;
}
ul.accordion--4 li.bleft {
border-left: 2px solid #fff;
}
ul.accordion--4 li .heading {
background-color: #fff;
padding: 10px;
margin-top: 60px;
text-transform: capitalize;
font-weight: 500;
font-size: 18px;
text-align: center;
color: #18012c;
}
ul.accordion--4 li .description {
position: absolute;
height: 175px;
bottom: 60px;
left: 0px;
display: none;
width: 100%;
}
ul.accordion--4 li .description h2 {
color: #18012c;
font-size: 30px;
}
ul.accordion--4 li .description p {
margin: 10px 22px;
font-size: 14px;
line-height: 28px;
color: #18012c;
}
ul.accordion--4 li .description a {
position: absolute;
bottom: 5px;
left: 20px;
text-transform: uppercase;
font-style: normal;
font-size: 11px;
text-decoration: none;
color: #888;
}
ul.accordion--4 li .description a:hover {
color: #333;
text-decoration: underline;
}
ul.accordion--4 li .bgDescription {
background: transparent url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/css/img/gallery/bgDescription.png) repeat-x top left;
height: 340px;
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
display: none;
}
.accordion--4 .accordion-content,.accordion--5 .accordion-content{
border:0;
} .accor_wrapper {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
background: #000;
}
.accordion--5 {
position: relative;
margin: 0 auto 0 auto;
}
.accordion--5 .single_accordion {
cursor: pointer;
position: absolute;
width: 100%;
left: 0px;
overflow: hidden;
text-align: center;
z-index: 2;
}
.accordion--5 .single_accordion::before {
position: absolute;
content: "";
background: #000000;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.4;
z-index: -1;
}
.accordion--5 .single_accordion .va-title {
text-transform: uppercase;
font-size: 40px;
margin-left: 5px;
color: #ffffff;
display: inline-block;
margin-top: 15px;
margin-right: 5px;
}
.accordion--5 .single_accordion .va-title div {
font-size: 22px;
font-style: italic;
font-family: Georgia, serif;
}
.accordion--5 .single_accordion .va-content {
display: none;
margin-left: 0;
padding: 0 23%;
margin-top: -36px;
}
.accordion--5 .single_accordion .va-content div{
color: #ffffff;
font-size: 14px;
line-height: 28px;
}
.accor_wrapper .single_accordion{
background: #000 url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/css/img/gallery/gallery-e1.jpg) no-repeat center center;
background-size: cover;
} .htmega-single-skill {
overflow: hidden;
padding-bottom: 23px;
}
.htmega-single-skill .htb-progress-bar {
border-radius: 3px;
position: relative;
}
.htmega-single-skill .htb-progress {
overflow: visible;
height: 6px;
border-radius: 3px;
}
.htmega-single-skill .htb-progress span.percent-label {
position: absolute;
right: 0;
top: -39px;
}
.htmega-progress-value-inner .htb-progress span.percent-label {
right: 50px;
top: 50%;
transform: translateY(-50%);
}
.htmega-single-skill p {
color: #666666;
font-family: "Montserrat",sans-serif;
font-size: 16px;
font-weight: 500;
margin-bottom: 17px;
display: inline-block;
}
.htmega-progressbar-value-bottom .htb-progress span.percent-label::after {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #18012c;
content: "";
height: 0;
left: 50%;
margin-left: -6px;
position: absolute;
top: 100%;
width: 0;
}
.htmega-progress-indicator .htb-progress .htb-progress-bar::after {
background: #fff none repeat scroll 0 0;
border: 4px solid #18012c;
border-radius: 100%;
content: "";
height: 24px;
position: absolute;
right: -1px;
top: 50%;
transform: translateY(-50%);
width: 24px;
} .htmega-single-skill.htmega-progress-bar-vertical {
display: flex;
flex-direction: column;
overflow-y: hidden; 
}
.htmega-progress-bar-vertical {
position: relative;
padding-top: 41px; 
}
.htmega-progress-bar-vertical .htb-progress {
width: 100%;
padding-top: 40px;
min-height: 390px;
display: flex;
align-items: flex-end;
background: transparent;
overflow: hidden; 
}
.htmega-progress-bar-vertical .htb-progress .htb-progress-bar {
width: 100%;
height: 0;
-webkit-transition: height 0.6s ease;
-o-transition: height 0.6s ease;
transition: height 0.6s ease; 
}
.htmega-progress-bar-vertical.htmega-single-skill p.htmega_progress_title {
order: 1;
}
.htmega-progress-bar-vertical.htmega-progress-value-inner .htb-progress span.percent-label {
position: absolute;
top: -36px;
left: 50%;
transform: translateX(-50%); 
}
.htmega-progress-bar-vertical.htmega-progress-value-inner .htb-progress span.percent-label {
left: 50%;
position: absolute;
top: -36px;
transform: translateX(-50%);
right: auto;
} .radial-progress-single {
text-align: center; 
}
.radial-progress-single .radial-progress {
position: relative; 
}
.radial-progress-single .radial-progress span{
position: absolute;
text-align: center;
display: block;
left: 50%;
top: -55%;
transform: translateX(-50%) translateY(0);
color: #383838;
font-size: 30px;
font-weight: 500;
font-family: "Montserrat", sans-serif; 
}
.radial-progress-single.htmega-progress-value-inner .radial-progress span{
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.radial-progress-single h5.radial-progress-title {
color: #666666;
font-size: 16px;
font-weight: 500;
margin: 0;
margin-top: 11px;
font-family: "Montserrat", sans-serif; 
}
.radial-progress-single canvas {
vertical-align: middle;
position: relative; 
}
.radial-progressbg {
display: inline-block;
position: relative;
} .htmega-countbox {
text-align: center; 
}
.htmega-countbox .ht-count {
display: inline-block;
position: relative;
margin: 0 22px;
line-height: 1;
}
.htmega-countbox .ht-count::before {
position: absolute;
content: ":";
right: -26px;
top: 50%;
transform: translateY(-50%);
color: #5e5b60;
font-size: 55px; 
}
.htmega-countbox .ht-count:last-child::before {
display: none; 
}
span.ht-count {
padding: 28px 0px;
border: 2px solid #18012c;
border-radius: 10px;
width: 139px;
text-align: center; 
}
.htmega-countbox span.time-count {
color: #242424;
font-size: 36px;
font-weight: 500;
display: block;
padding-bottom: 27px;
margin-bottom: 27px;
position: relative;
font-family: "Montserrat", sans-serif; 
}
.htmega-countbox span.time-count::before {
background-image: linear-gradient(to right, rgba(82, 65, 97, 0), rgba(82, 65, 97, 0.8) 40%, rgba(82, 65, 97, 0.8) 60%, rgba(82, 65, 97, 0));
background-position: center center;
background-repeat: no-repeat;
background-size: 84% auto;
content: "";
height: 2px;
left: 0;
position: absolute;
bottom: 0;
width: 100%; 
}
.htmega-countbox span span.count-inner p {
color: #242424;
font-size: 30px;
font-weight: 400;
margin: 0; 
}
.htmega-timer-separate-no .htmega-countbox span.time-count::before, .htmega-separate-no .htmega-countbox .ht-count::before{
display: none;
}
.htmega-countdown-style-2 .ht-count .count-inner .time-count,.htmega-countdown-style-2 .ht-count .count-inner p{
display: inline-block;
}
.htmega-countdown-style-2 span.ht-count,.htmega-countdown-style-3 span.ht-count{
width: auto !important;
height: auto !important;
}
.htmega-countdown-style-3 .ht-count.second {
left: 48.5%;
margin: 0;
position: absolute;
top: -60px;
transform: translateX(-50%);
}
.htmega-countdown-style-3 .ht-count.second p,.htmega-countdown-style-3 .htmega-countbox .ht-count.minutes::before
{
display: none;
}
.htmega-countdown-style-3 .ht-count::before {
right: -26px;
top: 21%;
transform: inherit;
}
.htmega-hide-lavel .htmega-countbox .ht-count::before {
right: -26px;
top: 36%;
} .htmega_event_button a {
line-height: 1;
margin-top: 30px;
padding: 15px 30px;
text-decoration: none;
}
.htmega_event_button a i{
margin-right: 10px;
} .htmega-team {
margin-top: 30px;
}
.htmega-team .htmega-thumb {
position: relative;
overflow: hidden;
line-height: 0;
}
.htmega-team .htmega-thumb *{
line-height:normal;
}
.htmega-team {
position: relative;
}
.htmega-team .htmega-team-content {
text-align: center;
font-size: 16px;
font-weight: 500;
margin-bottom: 7px;
border: 1px solid #dcd9d9;
padding: 30px 20px;
}
.htmega-team .htmega-team-content h4 {
font-size: 16px;
font-weight: 500;
margin-bottom: 5px;
}
.htmega-team .htmega-team-content h4 {
color: #343434;
transition: 0.5s;
}
.htmega-team .htmega-team-content p {
margin: 0;
color: #343434;
font-size: 16px;
font-weight: 400;
}
.htmega-team-style-1 .htmega-team-hover-action {
position: absolute;
width: 100%;
text-align: center;
height: 100%;
top: -100px;
opacity: 0;
-webkit-transition: all 0.3s ease-out 0.5s;
-moz-transition: all 0.3s ease-out 0.5s;
-o-transition: all 0.3s ease-out 0.5s;
-ms-transition: all 0.3s ease-out 0.5s;
transition: all 0.3s ease-out 0.5s;
}
.htmega-team .htmega-team-hover-action .htmega-team-hover {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
}
.htmega-team .htmega-team-hover-action .htmega-team-hover p {
color: #ffffff;
font-size: 14px;
line-height: 28px;
padding: 0 23px;
-webkit-transform: translateY(50px);
-moz-transform: translateY(50px);
-o-transform: translateY(50px);
-ms-transform: translateY(50px);
transform: translateY(50px);
-webkit-transition: all 0.2s ease-in-out 0.1s;
-moz-transition: all 0.2s ease-in-out 0.1s;
-o-transition: all 0.2s ease-in-out 0.1s;
-ms-transition: all 0.2s ease-in-out 0.1s;
transition: all 0.2s ease-in-out 0.1s;
opacity: 0;
}
.htmega-team .htmega-team-hover-action .htmega-team-hover .htmega-social-network {
margin-bottom: 7px;
-webkit-transform: translateY(20px);
-moz-transform: translateY(20px);
-o-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: all 0.2s ease-in-out 0.1s;
-moz-transition: all 0.2s ease-in-out 0.1s;
-o-transition: all 0.2s ease-in-out 0.1s;
-ms-transition: all 0.2s ease-in-out 0.1s;
transition: all 0.2s ease-in-out 0.1s;
opacity: 0;
}
.htmega-team-style-1:hover .htmega-team-hover-action {
opacity: 1;
top: 0px;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
-o-transition-delay: 0s;
-ms-transition-delay: 0s;
transition-delay: 0s;
-webkit-animation: bounceY 0.9s linear;
-moz-animation: bounceY 0.9s linear;
-ms-animation: bounceY 0.9s linear;
animation: bounceY 0.9s linear;
background: rgba(24, 1, 44, 0.6);
}
.htmega-team:hover .htmega-team-hover-action .htmega-team-hover p,
.htmega-team:hover .htmega-team-hover-action .htmega-team-hover .htmega-social-network {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
-webkit-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-ms-transition-delay: 0.4s;
transition-delay: 0.4s;
opacity: 1;
}
.htmega-team-style-1::before {
position: absolute;
content: "";
width: 0;
height: 1px;
background: #18012c;
bottom: 0;
left: 0;
transition: 0.5s;
}
.htmega-team-style-1:hover::before {
width: 100%;
}
.htmega-team .htmega-thumb img {
transition: all 0.4s ease 0s;
width: 100%;
} .htmega-team-style-2 .htmega-thumb img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: 0.5s;
}
.htmega-team-style-2:hover .htmega-thumb img {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
.htmega-team-style-2 .htmega-team-hover-action {
position: absolute;
bottom: 30px;
width: 100%;
padding: 0 30px;
}
.htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action {
text-align: center;
padding: 25px 0;
background-color: rgba(115, 146, 184, 0.7);
width: 100%;
opacity: 0;
-webkit-transform: translate(265px, 145px) rotate(45deg);
-moz-transform: translate(265px, 145px) rotate(45deg);
-o-transform: translate(265px, 145px) rotate(45deg);
-ms-transform: translate(265px, 145px) rotate(45deg);
transform: translate(265px, 145px) rotate(45deg);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action h4 {
font-size: 18px;
font-weight: 500;
margin-bottom: 9px;
color: #ffffff;
}
.htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action{
background-color: #18012c;
}
.htmega-team-style-2 .htmega-team-hover-action{
background-color: transparent !important;
}
.htmega-team-style-2:hover .htmega-team-hover-action .htmega-hover-action {
opacity: 1;
-webkit-transform: translate(0px, -10px) rotate(45deg);
-moz-transform: translate(0px, -10px) rotate(45deg);
-o-transform: translate(0px, -10px) rotate(45deg);
-ms-transform: translate(0px, -10px) rotate(45deg);
transform: translate(0px, -10px) rotate(0deg);
} .htmega-team-style-2 .htmega-team-designation{
display: block;
color: #ffffff;
}
.htmega-team.htmega-team-style-2{
overflow: hidden;
}
.htmega-team-hover-action.htmega-action-hover-st2 .htmega-hover-action {
display: flex;
justify-content: space-between;
text-align: left;
padding: 10px 15px;
align-items: center;
}
.htmega-team-hover-action.htmega-action-hover-st2 {
bottom: -30px;
}
.htmega-st2-new.htmega-team{
padding-bottom: 20px;
}
.htmega-team.htmega-team-style-2 .htmega-thumb{
overflow: visible;
}
.htmega-team-hover-action.htmega-action-hover-st2 ul.htmega-social-network{
padding: 0;
}
.htmega-team-hover-action.htmega-action-hover-st2 .htmega-hover-action {
background-color: transparent;
background-image: linear-gradient(220deg, #FF9966 0%, #FF5E62 100%);
border-radius: 5px 5px 5px 5px;
padding: 15px;
}
.htmega-team-style-2.htmega-st2-new .htmega-thumb img {
-webkit-filter: grayscale(0);
filter: grayscale(0);
} .htmega-team-style-3 .htmega-thumb {
padding-bottom: 80px;
position: relative;
}
.htmega-team-style-3 .plus_click {
position: absolute;
left: 50%;
top: -14px;
transform: translateX(-50%);
}
.htmega-team-style-3 .plus_click::before {
content: "\f067";
font-family: Fontawesome;
display: block;
width: 25px;
height: 25px;
border: 1px solid #fff;
color: #fff;
background: #555555;
border-radius: 100%;
text-align: center;
font-size: 12px;
z-index: 2;
cursor: pointer;
transition: 0.5s;
line-height: 27px;
}
.htmega-team-style-3 .plus_click.team-minus::before {
content: "\f068";
background: #18012c;
}
.htmega-team-style-3 .htmega-team-click-action {
background: #343434;
text-align: center;
border-radius: 50px 50px 0 0;
padding-top: 28px;
padding-bottom: 20px;
transition: 0.5s;
width: 100%;
position: absolute;
width: 100%;
bottom: 0;
margin-bottom: -58px;
}
.htmega-team-style-3 .htmega-team-click-action.visible {
margin-bottom: 0px;
background: #18012c;
}
.htmega-team-style-3 .htmega-team-click-action h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 2px;
}
.htmega-team-style-3 .htmega-team-click-action h4{
color: #ffffff;
}
.htmega-team-style-3 .htmega-team-click-action span {
display: block;
color: #ffffff;
font-size: 14px;
margin-bottom: 14px;
}
.htmega-team-style-3 .htmega-team-click-action .htmega-social-network {
margin-bottom: 9px;
} .htmega-team ul.htmega-social-network {
padding: 0px;
margin: 0;
list-style: none;
display: block;
text-align: center;
}
.htmega-social-network {
margin-bottom: 8px;
}
.htmega-social-network li {
margin: 0 10px;
display: inline-block;
}
.htmega-social-network li a {
color: #fff;
font-size: 14px;
display: block;
background: transparent;
line-height: 1;
}
.htmega-social-network li a svg {
width: 20px;
}
.htmega-social-network li a:hover {
color: #3B5998;
background: transparent;
}
.htmega-team-style-3 .htmega-social-network li a {
height: 28px;
line-height: 26px;
text-align: center;
width: 28px;
} .htmega-team-style-4 {
text-align: center;
}
.htmega-team-style-4 .htmega-thumb {
overflow: visible;
display: block;
}
.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-left img {
z-index: 11;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
position: relative;
-webkit-transform-origin: 0% 50%;
-moz-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
}
.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-right img {
z-index: 11;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
position: relative;
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-top img {
z-index: 11;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
position: relative;
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0;
}
.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-bottom img {
z-index: 11;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
position: relative;
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.htmega-team-style-4 .htmega-team-hover-action {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 100%;
text-align: center;
}
.htmega-team-style-4 .htmega-team-hover-action::before {
position: absolute;
content: "";
background: #18012c;
opacity: 1;
width: auto;
height: auto;
border-radius: 100%;
left: 0px;
top: 0px;
bottom: 0px;
right: 0px;
}
.htmega-team-style-4 .htmega-team-image-hover-none .htmega-team-hover-action::before {
background: rgba(24, 1, 44, 0.5) none repeat scroll 0 0;
bottom: 10px;
content: "";
height: auto;
left: 10px;
opacity: 0;
position: absolute;
right: 10px;
top: 10px;
transition: all 0.4s ease-in-out 0s;
width: auto;
}
.htmega-thumb.htmega-team-image-hover-none {
overflow: hidden;
}
.htmega-team-style-4 .htmega-team-image-hover-none .htmega-team-hover-action .htmega-hover-action h4 {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
.htmega-team-style-4 .htmega-team-image-hover-none ul.htmega-social-network,.htmega-team-style-4 .htmega-team-image-hover-none span.htmega-team-designation{
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
.htmega-team-style-4 .htmega-team-image-hover-none span.htmega-team-designation{
display: block;
color: #fff;
}
.htmega-team-style-4:hover .htmega-team-image-hover-none .htmega-team-hover-action .htmega-hover-action h4,.htmega-team-style-4:hover .htmega-team-image-hover-none ul.htmega-social-network,.htmega-team-style-4:hover .htmega-team-image-hover-none span.htmega-team-designation  {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
.htmega-team-style-4:hover .htmega-team-image-hover-none .htmega-team-hover-action::before {
opacity: 1;
}
.htmega-team-style-4.htmega-team:hover .htmega-team-image-hover-none .htmega-team-hover-action {
background-color: transparent!important;
}
.htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
}
.htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action h4 {
font-size: 16px;
margin-bottom: 13px;
font-weight: 500;
}
.htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action h4 {
color: #ffffff;
}
.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-left img {
-webkit-transform: rotate3d(0, 1, 0, -180deg);
-moz-transform: rotate3d(0, 1, 0, -180deg);
-ms-transform: rotate3d(0, 1, 0, -180deg);
-o-transform: rotate3d(0, 1, 0, -180deg);
transform: rotate3d(0, 1, 0, -180deg);
}
.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-right img {
-webkit-transform: rotate3d(0, 1, 0, 180deg);
-moz-transform: rotate3d(0, 1, 0, 180deg);
-ms-transform: rotate3d(0, 1, 0, 180deg);
-o-transform: rotate3d(0, 1, 0, 180deg);
transform: rotate3d(0, 1, 0, 180deg);
z-index: 12;
}
.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-top img {
-webkit-transform: rotate3d(1, 0, 0, 180deg);
-moz-transform: rotate3d(1, 0, 0, 180deg);
-ms-transform: rotate3d(1, 0, 0, 180deg);
-o-transform: rotate3d(1, 0, 0, 180deg);
transform: rotate3d(1, 0, 0, 180deg);
}
.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-bottom img {
-webkit-transform: rotate3d(1, 0, 0, 180deg);
-moz-transform: rotate3d(1, 0, 0, 180deg);
-ms-transform: rotate3d(1, 0, 0, 180deg);
-o-transform: rotate3d(1, 0, 0, 180deg);
transform: rotate3d(1, 0, 0, 180deg);
} .htmega-team-style-5 .htmega-thumb img {
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
.htmega-team-style-5 .htmega-team-hover-action {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
background-color: white;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
opacity: 0;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action {
position: absolute;
top: 50%;
transform: translateY(-50%);
padding: 0 20px;
width: 100%;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 9px;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4 a {
color: #343434;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action span {
font-size: 16px;
display: block;
color: #343434;
margin-bottom: 12px;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action p {
line-height: 26px;
color: #494849;
font-size: 14px;
margin-bottom: 16px;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action .htmega-social-network {
justify-content: flex-start;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action .htmega-social-network li:first-child {
margin-left: 0;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4,
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action span,
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action ul.htmega-social-network,
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action p {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
opacity: 0;
}
.htmega-team-style-5:hover .htmega-team-hover-action {
opacity: 1;
background-color: white;
}
.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action h4,
.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action ul.htmega-social-network,
.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action p,
.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action span {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.htmega-team-style-5:hover .htmega-thumb img {
-webkit-transform: scale(10);
-moz-transform: scale(10);
-o-transform: scale(10);
-ms-transform: scale(10);
transform: scale(10);
opacity: 0;
}
.htmega-team.htmega-team-style-5 ul.htmega-social-network{
padding: 0;
} .htmega-team-style-6 {
overflow: hidden;
}
.htmega-team-style-6 .htmega-thumb img {
transition: 0.5s;
}
.htmega-team-style-6:hover .htmega-thumb img {
transform: scale(1.2) rotate(10deg);
}
.htmega-team-style-6 .htmega-team-info {
background: #f4f4f4;
text-align: center;
transition: 0.4s;
}
.htmega-team-style-6 .htmega-team-info .htmega-team-content {
padding: 26px 18px;
}
.htmega-team-style-6 .htmega-team-info .htmega-team-content p {
font-size: 14px;
line-height: 28px;
color: #494849;
margin: 0;
}
.htmega-team-style-6 .htmega-team-info .htmega-team-content h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
}
.htmega-team-style-6 .htmega-team-info .htmega-team-content h4 {
color: #343434;
}
.htmega-team-style-6 .htmega-team-info .htmega-team-content span {
color: #343434;
font-size: 14px;
font-weight: 400;
}
.htmega-team-style-6 .htmega-team-info .htmega-social-network {
padding: 14px 0;
border-top: 2px solid #ffffff;
}
.htmega-team.htmega-team-style-6 .htmega-team-content {
border:none;
} .htmega-team-style-7 {
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.htmega-team-style-7 .htmega-thumb a img {
transition: 0.5s;
}
.htmega-team-style-7 .htmega-team-hover-action {
position: absolute;
bottom: 30px;
width: 100%;
text-align: center;
}
.htmega-team-style-7 .htmega-team-hover-action{
background-color: transparent;
}
.htmega-team-style-7 .htmega-team-hover-action .htmega-hover-action .htmega-social-network {
-webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.htmega-team-style-7 .htmega-team-hover-action .htmega-hover-action .htmega-social-network li a {
-webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
-webkit-transform: scale(0.1);
transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
transform: scale(0.1);
opacity: 0;
height: 28px;
width: 28px;
line-height: 28px;
}
.htmega-team-style-7:hover .htmega-team-hover-action .htmega-hover-action .htmega-social-network li a {
opacity: 1;
transform: scale(1);
-webkit-transition-delay: .1s;
transition-delay: .1s;
}
.htmega-team-style-7 .htmega-team-content {
background: #fff none repeat scroll 0 0;
border: 0 none;
margin: 0;
padding: 20px 10px;
text-align: center;
}
.htmega-team-style-7 .htmega-team-content h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 3px;
}
.htmega-team-style-7 .htmega-team-content h4 {
color: #343434;
}
.htmega-team-style-7 .htmega-team-content h4:hover {
color: #18012c;
}
.htmega-team-style-7 .htmega-team-content span {
color: #343434;
font-size: 14px;
margin: 0;
font-weight: 400;
}
.htmega-team-style-7:hover .htmega-thumb img {
transform: scale(1.2) rotate(10deg);
} .htmega-team-style-8 .htmega-team-content{
position: relative;
transition: all 0.3s ease-in-out;
border: 1px solid #e5e5e5;
border-top: 0;
overflow: hidden;
}
.htmega-team-style-8{
box-shadow: none;
}
.htmega-team-style-8 .htmega-team-hover-action {
position: absolute;
bottom: -110%;
width: 100%;
z-index: 2;
left: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
background-color: transparent;
background-image: linear-gradient(280deg, #FCC5FF 0%, #8D73FF 100%);
}
.htmega-team-style-8:hover .htmega-team-hover-action {
bottom: 0;
}
.htmega-team-style-8::before,.htmega-team-style-8::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 10px;
width: 10px;
border-left: 1px solid #8e74ff;
border-bottom: 1px solid #8e74ff;
z-index: 1;
}
.htmega-team-style-8::after {
left: auto;
right: 0;
border-left: 1px solid transparent!important;
border-right: 1px solid #8e74ff;
}
.htmega-team-style-8:hover::after,.htmega-team-style-8:hover::before{
opacity: 0;
}
.htmega-team-style-8 .htmega-team-hover-action:after {
position: absolute;
content: "";
width: 51px;
height: 3px;
top: 0;
left: 50%;
background: #fff;
margin-left: -25px;
}
.htmega-team.htmega-st8-new .htmega-team-content {
position: absolute;
bottom: 0;
left: 0px;
right: 0px;
margin: 0 15px;
} .htmega-team-style-8.htmega-st8-new3 .htmega-team-hover-action {
bottom: 0;
left: -99%;
}
.htmega-team-style-8.htmega-st8-new3:hover .htmega-team-hover-action{
left: 0;
}
.htmega-team-style-8.htmega-st8-new3 .htmega-team-content {
border-width: 0px 0px 0px 0px;
margin: 0px 20px 20px 0px;
} .htmega-features svg {
width: 20px;
display: inline-block;
}
.htmega-pricing-panel {
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
margin-top: 30px;
}
.htmega-pricing-body ul {
list-style: none;
padding: 0;
margin: 0;
}
.htmega-pricing-panel .pricing_old {
margin-right: 15px;
}
.htmega-pricing-panel .htmega-pricing-heading .price h4 span.pricing_new,.htmega-pricing-panel .htmega-pricing-heading .price h4 span.pricing_old{
padding-left: 16px;
position: relative;
}
.htmega-features li i{
margin-right: 8px;
} .htmega-pricing-style-1 {
background: #365a73;
margin-top: 30px;
border-radius: 10px;
padding-bottom: 40px;
}
.htmega-pricing-style-1 .htmega-pricing-heading {
padding-top: 65px;
padding-bottom: 75px;
background-repeat: no-repeat;
background-position: center center;
position: relative;
background-size: cover;
margin-bottom: 37px;
border-radius: 10px 10px 0 0;
}
.htmega-pricing-style-1 .htmega-pricing-heading .title {
position: absolute;
left: -7px;
transform: rotate(-90deg);
top: 39px;
}
.htmega-pricing-style-1 .htmega-pricing-heading .title h2 {
margin: 0;
height: 50px;
line-height: 50px;
color: #ffffff;
font-size: 16px;
background-image: -webkit-linear-gradient(left, #446c83, #4eb8bf);
background-image: linear-gradient(left, #446c83, #4eb8bf);
border-radius: 10px;
font-family: 'Raleway', sans-serif;
width: 125px;
text-align: center;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price {
display: inline-block;
padding-left: 35px;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price h4 {
color: #ffffff;
display: inline-block;
margin: 0;
position: relative;
font-size: 40px;
font-weight: 600;
font-family: 'Raleway', sans-serif;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span.pricing_new{
font-size: 40px;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price h4 sub {
position: absolute;
left: 0;
top: 23px;
font-size: 20px;
font-weight: 700;
font-family: 'Raleway', sans-serif;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span.pricing_old sub{
position: static;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span {
font-size: 20px;
font-family: "Montserrat", sans-serif;
}
.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span.separator {
margin-right: -5px;
}
.htmega-pricing-style-1 .htmega-pricing-body {
margin-bottom: 37px;
}
.htmega-pricing-style-1 .htmega-pricing-body ul li {
color: #f1f1f1;
font-weight: 300;
font-size: 16px;
padding: 5px 0;
}
a.price_btn{
text-decoration: none;
}
.htmega-pricing-style-1 a.price_btn {
border: 1px solid #4fbfc5;
display: inline-block;
padding: 8px 40px;
border-radius: 10px;
color: #ffffff;
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
transition: 0.5s;
}
.htmega-pricing-style-1 a.price_btn:hover {
background: #4ebec4;
color: #ffffff;
border: 1px solid #4ebec4;
} .htmega-pricing-style-2 {
background: #ffffff;
border-radius: 10px;
padding: 55px 0;
}
.htmega-pricing-heighlight{
padding: 70px 0;
box-shadow: 0 0 30px rgba(82, 182, 188, 0.25);
position: relative;
z-index: 2;
}
.htmega-pricing-style-2 .htmega-pricing-heading {
margin-bottom: 10px;
}
.htmega-pricing-style-2 .htmega-pricing-heading .icon {
margin-bottom: 20px;
}
.htmega-pricing-style-2 .htmega-pricing-heading .title h2 {
margin-bottom: 14px;
margin-bottom: 28px;
}
.htmega-pricing-style-2 .htmega-pricing-heading .price h4 {
color: #52b6bc;
font-weight: 400;
position: relative;
font-size: 30px;
margin: 0;
font-family: 'Lora', serif;
display: inline-block;
}
.htmega-pricing-style-2 .htmega-pricing-heading .price h4 sub {
position: absolute;
left: 0;
top: 16px;
}
.htmega-pricing-style-2 .htmega-pricing-body {
margin-bottom: 27px;
}
.htmega-pricing-style-2 .htmega-pricing-body ul li {
color: #7b7b7b;
font-size: 14px;
font-weight: 300;
padding: 3px 0;
}
.htmega-pricing-style-2 .htmega-pricing-footer a.price_btn {
border: 2px solid #52b6bc;
display: inline-block;
padding: 0 32px;
color: #52b6bc;
border-radius: 21px;
font-weight: 500;
font-size: 15px;
transition: 0.5s;
}
.htmega-pricing-style-2 .htmega-pricing-footer a.price_btn:hover {
background: #52b6bc;
color: #ffffff;
border: 2px solid #52b6bc;
} .htmega-pricing-style-3 {
background: #ef476f;
padding-bottom: 60px;
margin-top: 88px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.htmega-pricing-style-3 .htmega-pricing-heading .price {
width: 125px;
height: 127px;
background: #ef476f;
border: 4px solid #fff;
border-radius: 100%;
text-align: center;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin-top: -63px;
margin-bottom: 37px;
}
.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.pricing_new,.htmega-pricing-style-3 .htmega-pricing-heading .price h4{
font-size: 40px;
margin: 0;
font-weight: 600;
position: relative;
font-family: "Poppins", sans-serif;
}
.htmega-pricing-panel.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.pricing_new, .htmega-pricing-panel.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.pricing_old{
padding: 0;
}
.htmega-pricing-style-3 .htmega-pricing-heading .price h4 sub {
font-size: 20px;
position: relative;
top: -17px;
left: 0;
}
.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span {
font-size: 15px;
font-weight: 500;
}
.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.separator {
margin-left: -9PX;
margin-right: -10px;
}
.htmega-pricing-style-3 .htmega-pricing-heading .title {
margin-bottom: 41px;
}
.htmega-pricing-style-3 .htmega-pricing-heading .title h2 {
font-size: 26px;
color: #ffffff;
font-weight: 600;
margin: 0;
font-family: "Montserrat", sans-serif;
}
.htmega-pricing-style-3 .htmega-pricing-body ul li {
color: #ffffff;
font-size: 17px;
padding: 5px 0;
font-family: "Poppins", sans-serif;
}
.htmega-pricing-style-3 .htmega-pricing-footer {
margin-top: 48px;
}
.htmega-pricing-style-3 .htmega-pricing-footer a.price_btn {
height: 40px;
padding: 0 43px;
display: inline-block;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
color: #fff;
font-weight: 600;
line-height: 40px;
font-size: 15px;
transition: 0.5s;
font-family: "Montserrat", sans-serif;
}
.htmega-pricing-style-3 .htmega-pricing-footer a.price_btn:hover {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} .htmega-pricing-style-4 {
background: #ffffff;
padding: 90px 0;
}
.htmega-pricing-style-4.htmega-pricing-heighlight .htmega-pricing-footer {
height: auto;
}
.htmega-pricing-ribon{
position: relative;
}
.htmega-pricing-ribon::before {
content: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/images/pricing/pricing-ribon.png);
left: 30px;
position: absolute;
top: -15px;
}
.htmega-pricing-style-4 .htmega-pricing-heading .price h4 {
font-weight: 600;
color: #4d4d4d;
font-size: 48px;
position: relative;
display: inline-block;
margin: 0;
}
.htmega-pricing-style-4 .htmega-pricing-heading .price h4 sub {
position: absolute;
left: 0;
top: 25px;
font-size: 31px;
}
.htmega-pricing-style-4 .htmega-pricing-heading .title h2 {
font-size: 18px;
font-weight: 500;
color: #000101;
padding-bottom: 27px;
position: relative;
margin-bottom: 28px;
}
.htmega-pricing-style-4 .htmega-pricing-heading .title h2::before {
position: absolute;
content: "";
width: 60px;
height: 2px;
background: #e1e1e1;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.htmega-pricing-style-4 .htmega-pricing-body {
position: relative;
padding-bottom: 23px;
margin-top: 36px;
}
.htmega-pricing-style-4 .htmega-pricing-body::before {
position: absolute;
content: "";
background: #e1e1e1;
width: 60px;
height: 2px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.htmega-pricing-style-4 .htmega-pricing-body ul {
padding: 0 53px;
}
.htmega-pricing-style-4 .htmega-pricing-body ul li {
font-size: 15px;
color: #000000;
line-height: 35px;
font-family: "Montserrat", sans-serif;
}
.htmega-pricing-style-4 .htmega-pricing-footer {
margin-top: 32px;
height: 0px;
overflow: hidden;
-webkit-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.htmega-pricing-style-4 .htmega-pricing-footer a.price_btn {
height: 46px;
border: 1px solid #ededed;
display: inline-block;
line-height: 44px;
padding: 0 40px;
color: #000000;
font-size: 14px;
border-radius: 30px;
font-family: "Montserrat", sans-serif;
transition: 0.5s;
}
.htmega-pricing-style-4 .htmega-pricing-footer a.price_btn:hover {
background: #0056ff;
color: #ffffff;
border: 1px solid #0056ff;
}
.htmega-pricing-style-4:hover .htmega-pricing-footer {
height: 46px;
}
.htmega-pricing-style-4.active .htmega-pricing-footer {
height: 46px !important;
} .htmega-pricing-style-5 {
background: #f6f6f6;
padding: 40px 0;
text-align: left;
padding-bottom: 50px;
margin-left: 30px;
}
.htmega-pricing-style-5 .htmega-pricing-heading {
padding-left: 46px;
margin-bottom: 8px;
}
.htmega-pricing-style-5 .htmega-pricing-heading .price h4 {
color: #0056ff;
font-weight: 600;
font-size: 40px;
}
.htmega-pricing-style-5 .htmega-pricing-heading .title h2 {
color: #000000;
font-size: 18px;
font-weight: 500;
letter-spacing: 3px;
margin-bottom: 3px;
}
.htmega-pricing-style-5 .htmega-pricing-body {
background: #e3ecff;
margin-right: 30px;
margin-left: -30px;
border-radius: 6px;
padding: 40px 56px 60px;
position: relative;
}
.htmega-pricing-style-5 .htmega-pricing-body ul {
margin-bottom: -37px;
}
.htmega-pricing-style-5 .htmega-pricing-body ul li {
color: #181818;
font-size: 14px;
padding: 10px 0;
}
.htmega-pricing-body ul li.off {
text-decoration: line-through;
}
.htmega-pricing-style-5 .htmega-pricing-body a.price_btn {
bottom: -72px;
background: transparent;
display: inline-block;
left: 50%;
border-radius: 25px;
font-size: 14px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
transform: translateX(-50%);
position: relative;
border: 1px solid transparent;
padding: 4px;
transition: 0.5;
}
.htmega-pricing-style-5 .htmega-pricing-body a.price_btn span {
padding: 0 30px;
background: #0056ff;
display: inline-block;
border-radius: 20px;
height: 40px;
line-height: 40px;
}
.htmega-pricing-style-5 .htmega-pricing-body a.price_btn:hover {
border: 1px solid #0056ff;
}
.htmega-pricing-style-5 .htmega-pricing-body a.price_btn.active {
border: 1px solid #0056ff;
}
.htmega-pricing-style-5 .htmega-pricing-body a.price_btn.active:hover {
border: 1px solid transparent;
}
.htmega-pricing-style-5 .htmega-pricing-heading .price h4 span.pricing_new, .htmega-pricing-style-5 .htmega-pricing-heading .price h4 span.pricing_old{
padding: 0;
}
.htmega-pricing-style-5 sub {
font-size: 40px;
position: static;
} .htmega-pricing-style-6 {
background: #fff;
box-shadow: 0 0 20px 1px rgba(35, 31, 32, 0.2);
padding-bottom: 30px;
}
.htmega-pricing-style-6.htmega-pricing-heighlight .htmega-pricing-heading {
background: #2d3e50;
padding: 30px 0;
}
.htmega-pricing-style-6.htmega-pricing-heighlight .htmega-pricing-body {
padding: 55px 0;
}
.htmega-pricing-style-6.htmega-pricing-heighlight .htmega-pricing-body ul li {
padding: 7px 0;
}
.htmega-pricing-style-6 .htmega-pricing-heading {
background: #2d3e50;
padding: 30px 0;
}
.htmega-pricing-style-6 .htmega-pricing-heading .price h4 span.separator {
margin-left: -7px;
margin-right: -10px;
}
.htmega-pricing-style-6 .htmega-pricing-heading .price h4 sub {
font-size: 18px;
position: relative;
top: -20px;
left: 0;
}
.htmega-pricing-style-6 .htmega-pricing-body {
padding: 50px 0;
}
.htmega-pricing-style-6 .htmega-pricing-body ul li {
color: #2d3e50;
font-size: 18px;
font-weight: 500;
padding: 5px 0;
font-family: 'Raleway', sans-serif;
}
.htmega-pricing-style-6 .htmega-pricing-footer a.price_btn {
display: inline-block;
background: #2d3e50;
padding: 0 40px;
height: 40px;
line-height: 41px;
font-weight: 700;
border-radius: 15px;
font-size: 15px;
color: #ffffff;
font-family: 'Raleway', sans-serif;
transition: 0.5s;
}
.htmega-pricing-style-6 .htmega-pricing-footer a.price_btn:hover {
transform: translateY(-5px);
}
.htmega-pricing-style-6 .htmega-pricing-heading .price h4 span.period-txt,.htmega-pricing-style-6 .htmega-pricing-heading .price h4 span.separator {
color: #ecebeb;
font-size: 18px;
} .htmega-pricing-style-7 {
background: #ffffff;
padding-top: 48px;
padding-bottom: 60px;
box-shadow: 0 0 10px rgba(1, 26, 72, 0.1);
}
.htmega-pricing-style-7 .htmega-pricing-heading .title h2 {
color: #f7ca18;
font-size: 26px;
font-weight: 600;
margin-bottom: 32px;
font-family: "Poppins", sans-serif;
}
.htmega-pricing-style-7 .htmega-pricing-heading .price {
background-position: center center;
background-size: cover;
margin-bottom: 23px;
padding: 12px 0;
}
.htmega-pricing-style-7 .htmega-pricing-heading .price h4 {
font-size: 60px;
color: #011a48;
font-weight: 700;
font-family: "Poppins", sans-serif;
}
.htmega-pricing-style-7 .htmega-pricing-heading .price h4 span.period-txt,.htmega-pricing-style-7 .htmega-pricing-heading .price h4 span.separator {
font-size: 26px;
font-weight: 600;
}
.htmega-pricing-style-7 .htmega-pricing-heading .price h4 span.separator {
margin-left: 2px;
margin-right: -8px;
}
.htmega-pricing-style-7 .htmega-pricing-heading .price h4 sub {
font-size: 26px;
left: 0px;
position: relative;
top: -3px;
}
.htmega-pricing-style-7 .htmega-pricing-body {
padding: 0 28px;
}
.htmega-pricing-style-7 .htmega-pricing-body ul li {
color: #798294;
font-size: 20px;
line-height: 32px;
padding: 13px 0;
border-top: 1px solid #f6f6f6;
font-family: 'Open Sans', sans-serif;
}
.htmega-pricing-style-7 .htmega-pricing-body ul li:last-child {
border-bottom: 1px solid #f6f6f6;
}
.htmega-pricing-style-7 .htmega-pricing-footer {
margin-top: 40px;
}
.htmega-pricing-style-7 .htmega-pricing-footer a.price_btn {
height: 47px;
padding: 0 50px;
display: inline-block;
background: #011a48;
border-radius: 23px;
color: #fff;
font-size: 14px;
line-height: 47px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 2px;
font-family: "Poppins", sans-serif;
transition: 0.5s;
}
.htmega-pricing-style-7 .htmega-pricing-footer a.price_btn:hover {
background: #f7ca18;
color: #000000;
} .htmega-brands-area.htmega-brands-style-1{
display: flex;
flex-wrap: wrap;
}
.single-partner {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 0 15px;
width: calc(100% * (1/4));
text-align: center;
margin-bottom: 50px;
}
.single-partner a{
display: inline-block;
} ul.brand-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
} @media only screen and (max-width: 380px) {
ul.brand-list {
display: block;
}
}
ul.brand-list li {
position: relative;
text-align: center;
}
ul.brand-list li a{
display: inline-block;
}
.htmega-brands-style-2 ul.brand-list li {
border-right: 1px dashed #ffffff;
display: block;
float: left;
padding: 20px;
text-align: center;
width: 20%;
}
.htmega-brands-style-2 ul.brand-list li:last-child {
border-right: 1px dashed transparent;
}
.htmega-brands-style-3 ul.brand-list li {
flex-basis: 20%;
border-right: 1px solid #dcd9d9;
height: 125px;
line-height: 125px;
border-top: 1px solid #dcd9d9;
border-bottom: 1px solid #dcd9d9;
}
.htmega-brands-style-3 ul.brand-list li:first-child {
border-left: 1px solid #dcd9d9;
}
.brand-list-area {
display: flex;
flex-wrap: wrap;
}
.brand-logo-col{
padding-left: 15px;
padding-right: 15px;
}
.htmega-brands-style-5 .brand-logo-col{
flex: 0 0 25%;
max-width: 25%;
}
.htmega-brands-style-5 .single-partner {
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
display: block;
width: 100%;
padding: 25px 15px;
}
.htmega-brands-style-7 .single-partner{
width: 100%;
}
.htmega-brands-style-7 .brand-logo-col{
flex: 0 0 33.333%;
max-width: 33.333%;
} .htmega-brands-style-4 ul.brand-list{
display: block;
}
.htmega-brands-style-4 ul.brand-list li {
border-bottom: 1px dashed #aaa;
border-right: 1px dashed #aaa;
float: left;
padding: 25px 15px;
text-align: center;
width: 33.33%;
}
.htmega-brands-style-4 ul.brand-list li:nth-child(1) {
border-bottom-color: #aaa;
border-right-color: #aaa;
}
.htmega-brands-style-4 ul.brand-list li:nth-child(6),
.htmega-brands-style-4 ul.brand-list li:last-child {
border-bottom-color: transparent;
border-right-color: transparent;
}
.htmega-brands-style-4 ul.brand-list li:nth-child(5) {
border-bottom-color: transparent;
border-right-color: #aaa;
}
.htmega-brands-style-4 ul.brand-list li:nth-child(4) {
border-bottom-color: transparent;
border-right-color: #aaa;
}
.htmega-brands-style-4 ul.brand-list li:nth-child(3) {
border-bottom-color: #aaa;
border-right-color: transparent;
} .float-left{
float:left;
}
.newsletter-style-one p {
color: #798294;
font-size: 14px;
line-height: 28px;
max-width: 605px;
margin: 0 auto !important;
width: 100%;
margin-bottom: 58px;
margin-top: 16px;
}
.htmega-mailchimp-style-1 .htmega-input-box {
position: relative;
max-width: 530px;
margin: 0 auto;
}
.htmega-input-box input[type="text"],.htmega-input-box input[type="email"] {
width: 100%;
}
.htmega-mailchimp-style-1 .htmega-input-box input[type="submit"] {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
outline: none;
border: 0 none;
transition: 0.4s;
} .htmega-mailchimp-style-2 .htmega-input-box input[type="text"],.htmega-mailchimp-style-2 .htmega-input-box input[type="email"] {
width: calc(100% - 170px);
} .htmega-input-box form{
width: 100%;
}
.htmega-mailchimp-style-3 .htmega-input-box {
position: relative;
max-width: 580px;
width: 100%;
margin: 0 auto;
display: flex;
}
.htmega-mailchimp-style-3 .htmega-input-box input {
text-align: center;
float: left;
overflow: hidden;
max-width: 405px;
}
.htmega-mailchimp-style-3 .htmega-input-box input[type="submit"] {
float: right;
overflow: hidden;
transition: 0.4s;
} .htmega-mailchimp-style-4 .htmega-input-box {
position: relative;
}
.htmega-mailchimp-style-4 .htmega-input-box input[type="submit"] {
position: absolute;
right: 5px;
top: 50%;
width: 40px;
transform: translateY(-50%);
transition: 0.4s;
text-indent: -99999px;
}
.htmega-mailchimp-style-4 .htmega-input-box::before {
color: #ffffff;
content: "";
cursor: pointer;
display: block;
font-family: fontawesome;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
z-index: 1;
} .htmega-mailchimp-style-5 .htmega-input-box input[type="submit"] {
width: 100%;
transition: 0.5s;
} .htmega-testimonial-area .slick-prev, .htmega-testimonial-area .slick-next {
background: transparent none repeat scroll 0 0;
border: medium none;
color: #7d7d7d;
cursor: pointer;
display: block;
font-size: 24px;
height: auto;
line-height: 1;
outline: medium none;
padding: 0;
position: absolute;
text-align: center;
top: 50%;
transform: translate(0px, -50%);
width: auto;
}
.htmega-testimonial-area .slick-next{
right: 0;
}
.htmega-testimonial-area .slick-dots{
list-style: none;
}
.htmega-testimonial-area .slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 12px;
height: 12px;
padding: 0;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: #e3e3e3;
border-radius: 100%;
}
.htmega-testimonial-area .slick-dots li.slick-active button {
background: #ff6600;
}
.htmega-testimonial-area .slick-dots li button:before {
display: none;
}
.htmega-testimonial-area .slick-dots {
bottom: -30px;
}
.htmega-testimonial-area .slick-dots li {
margin: 0 7px;
width: 12px;
height: 12px;
}
.htmega-testimonial-area .slick-prev::before, .htmega-testimonial-area .slick-next::before{
display: none;
} .htmega-testimonial-activation {
z-index: 1;
}
.htmega-testimonial-style-1 .testimonal {
text-align: center;
}
.htmega-testimonial-style-1 .testimonal img {
margin-bottom: 34px;
text-align: center;
display: inline-block;
}
.htmega-testimonial-style-1 .testimonal .shape img {
margin: 0;
}
.htmega-testimonial-style-1 .testimonal .content {
margin-top: 30px;
}
.htmega-testimonial-style-1 .testimonal .content p {
color: #3e3e3e;
font-size: 18px;
line-height: 35px;
padding: 0 10%;
}
.htmega-testimonial-style-1 .testimonal .content h4 {
color: #3e3e3e;
font-size: 20px;
line-height: 37px;
margin: 0;
}
.htmega-testimonial-style-1 .testimonal .content span {
color: #3e3e3e;
font-size: 18px;
} .htmega-testimonial-style-2 .testimonal {
text-align: center;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: relative;
margin-top: 50px;
padding-bottom: 27px;
border-radius: 10px;
}
.htmega-testimonial-style-2 .testimonal img {
position: absolute;
left: 50%;
top: 0;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border: 1px solid #6e6e6e;
border-radius: 100%;
max-width: 100%;
}
.htmega-testimonial-style-2 .testimonal .content {
margin-top: 69px;
}
.htmega-testimonial-style-2 .testimonal .content p {
color: #5b5b5b;
font-size: 14px;
line-height: 24px;
padding: 0 4%;
font-style: italic;
margin-bottom: 4px;
}
.htmega-testimonial-style-2 .testimonal .content h4 {
color: #5b5b5b;
font-size: 16px;
line-height: 37px;
margin: 0;
font-weight: 600;
}
.htmega-testimonial-style-2 .testimonal .content span {
color: #3e3e3e;
font-size: 18px;
}
.htmega-testimonial-style-2 .slick-slide {
padding: 5px 15px;
}
.htmega-testimonial-style-2 .slick-center .testimonal img {
border: 1px solid #ff6600;
}
.htmega-testimonial-style-2 .slick-dots {
bottom: -75px;
}
.slick-dotted.slick-slider {
margin-bottom: 0;
}
.htmega-testimonial-style-2 .testimonal .shape img {
border: medium none;
left: 0;
margin: 0 auto;
position: relative;
top: 53px;
transform: translate(0px);
} .htmega-testimonial-style-3 .testimonal img {
float: left;
}
.htmega-testimonial-style-3 .testimonal .content {
overflow: hidden;
padding-left: 20px;
}
.htmega-testimonial-style-3 .testimonal .content p {
color: #3e3e3e;
font-size: 16px;
margin-bottom: 20px;
line-height: 28px;
}
.htmega-testimonial-style-3 .testimonal .content .clint-info {
padding-left: 50px;
position: relative;
}
.htmega-testimonial-style-3 .testimonal .content .clint-info::before {
position: absolute;
content: "";
width: 30px;
height: 2px;
background: #383838;
left: 0;
top: 4px;
}
.htmega-testimonial-style-3 .testimonal .content .clint-info h4 {
font-weight: 600;
font-size: 16px;
color: #383838;
margin-bottom: 2px;
}
.htmega-testimonial-style-3 .testimonal .content .clint-info span {
color: #383838;
font-size: 14px;
}
.htmega-testimonial-style-3 .testimonal .shape img {
left: 20px;
position: relative;
} .htmega-testimonial-style-4 .testimonal .testimonal-image {
float: left;
padding-right: 50px;
position: relative;
}
.htmega-testimonial-style-4 .testimonal .testimonal-image::before {
position: absolute;
content: "";
width: 1px;
height: 100%;
background: #18012c;
right: 0;
top: 0;
}
.htmega-testimonial-style-4 .testimonal .testimonal-image::after {
position: absolute;
content: "";
background: #18012c;
height: 1px;
width: 30px;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.htmega-testimonial-style-4 .testimonal .content {
overflow: hidden;
padding-left: 30px;
}
.htmega-testimonial-style-4 .testimonal .content p {
color: #3e3e3e;
font-size: 16px;
margin-bottom: 20px;
line-height: 28px;
}
.htmega-testimonial-style-4 .testimonal .content h4 {
font-weight: 600;
font-size: 16px;
color: #383838;
margin-bottom: 2px;
}
.htmega-testimonial-style-4 .testimonal .content span {
color: #383838;
font-size: 14px;
}
.htmega-testimonial-style-4 ul.slick-dots li button::before {
content: "0";
display: block;
font-size: 16px;
height: auto;
left: -8px;
line-height: 1;
opacity: 1;
position: absolute;
top: -4px;
width: auto;
}
.htmega-testimonial-style-4 ul.slick-dots {
padding: 0;
margin: 0;
list-style: none;
border: 0 none;
text-align: right;
}
.htmega-testimonial-style-4 ul.slick-dots li button {
background: transparent;
border: 0 none;
color: #18012c;
font-weight: 600;
font-size: 16px;
position: relative;
display: inline-block;
}
.htmega-testimonial-style-4 {
position: relative;
padding-right: 24%;
}
.htmega-testimonial-style-4 ul.slick-dots {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 100px;
}
.htmega-testimonial-style-4 ul.slick-dots li {
padding: 6px 0;
}
.htmega-testimonial-style-4 ul.slick-dots li.slick-active button {
position: relative;
}
.htmega-testimonial-style-4 ul.slick-dots li {
height: auto;
line-height: 1;
padding: 8px 0 10px 45px;
position: relative;
}
.htmega-testimonial-style-4 ul.slick-dots li::after {
position: absolute;
content: "";
background: #18012c;
width: 0;
height: 1px;
left: 0;
top: 50%;
transform: translateY(-50%);
transition: 0.5s;
}
.htmega-testimonial-style-4 ul.slick-dots li.slick-active::after {
width: 30px;
}
.htmega-testimonial-style-4 ul.slick-dots li.slick-active button {
background: transparent;
} .htmega-testimonial-for .testimonial-desc p {
color: #3e3e3e;
font-size: 18px;
line-height: 35px;
text-align: center;
padding: 0 15%;
}
.testimonal-img {
text-align: center;
}
.testimonal-img .content {
text-align: center;
margin-top: 22px;
}
.testimonal-img .content h4 {
color: #3e3e3e;
font-size: 20px;
margin-bottom: 3px;
}
.testimonal-img .content span {
color: #3e3e3e;
font-size: 18px;
line-height: 29px;
}
.htmega-testimonal-nav.slick-slider {
max-width: 35%;
width: 100%;
margin: 0 auto;
}
.slick-slide.slick-active.slick-center .testimonal-img img {
transform: scale(1);
}
.slick-slide.slick-active .testimonal-img img {
transform: scale(0.8);
text-align: center;
display: inline-block;
}
.htmega-testimonial-style-5 .htmega-testimonal-nav .slick-track {
margin-top: 85px;
}
.htmega-testimonal-nav .slick-slide:not(.slick-center) .content {
display: none;
}
.htmega-testimonial-style-5 .testimonial-shape {
bottom: 56%;
left: 49.5%;
position: absolute;
transform: translateX(-50%);
} .htmega-testimonial-style-6 .testimonal img {
display: inline-block;
}
.htmega-testimonial-style-6 .testimonal .content {
background: #fff;
text-align: center;
padding: 50px 9%;
position: relative;
box-shadow: 0 0 10px rgba(82, 182, 188, 0.25);
}
.htmega-testimonial-style-6 .testimonal .content p {
font-size: 16px;
line-height: 28px;
color: #3e3e3e;
}
.htmega-testimonial-style-6 .testimonal .content .triangle {
position: absolute;
top: 100%;
margin-top: -1px;
border-right: 20px solid transparent;
border-left: 20px solid transparent;
border-top: 20px solid #fff;
border-bottom: 20px solid transparent;
left: 50%;
transform: translateX(-50%);
}
.htmega-testimonial-style-6 .testimonal .clint-info {
text-align: center;
margin-top: 40px;
}
.htmega-testimonial-style-6 .testimonal .clint-info h4 {
color: #5c5c5c;
font-size: 22px;
font-weight: 700;
margin-top: 22px;
margin-bottom: 4px;
}
.htmega-testimonial-style-6 .testimonal .clint-info span {
color: #5c5c5c;
font-weight: 600;
font-size: 15px;
}
.htmega-testimonial-style-6 .slick-arrow {
width: 36px;
height: 36px;
color: #7d7d7d;
border: 0 none;
background: #fff;
border-radius: 100%;
font-size: 24px;
left: 0;
top: 20%;
z-index: 999;
transition: 0.5s;
box-shadow: 0 0 10px rgba(82, 182, 188, 0.25);
}
.htmega-testimonial-style-6 .slick-arrow:hover {
background: #52b6bc;
color: #fff;
}
.htmega-testimonial-style-6 button.slick-next.slick-arrow {
left: auto;
right: 0;
}
.htmega-testimonial-style-6 {
position: relative;
padding: 0 200px;
}
.htmega-testimonial-style-6 .testimonal .shape img,.htmega-testimonial-style-7 .testimonal .shape img {
position: relative;
top: 10px;
} .htmega-testimonial-style-7 .testimonal {
text-align: center;
}
.htmega-testimonial-style-7 .testimonal p {
color: #414141;
font-size: 30px;
font-style: italic;
line-height: 48px;
margin-top: 26px;
font-family: "Montserrat", sans-serif;
margin-bottom: 0;
position: relative;
z-index: 2;
}
.htmega-testimonial-style-7 .testimonal p::before {
position: absolute;
content: "";
color: #ffebd1;
content: "\f10e";
font-family: Fontawesome;
font-size: 216px;
left: 50%;
top: 50%;
z-index: -1;
transform: translateX(-50%) translateY(-50%);
}
.htmega-testimonial-style-7 .testimonal h4 {
color: #3e3e3e;
font-weight: 600;
font-size: 20px;
margin-bottom: 9px;
}
.htmega-testimonial-style-7 .testimonal .clint-info {
margin-top: 29px;
}
.htmega-testimonial-style-7 .testimonal .clint-info span {
color: #3e3e3e;
font-size: 18px;
}
.htmega-testimonial-style-7 .testimonal img {
display: inline-block;
}
.htmega-testimonial-style-7 .slick-arrow {
top: 9%;
left: 16%;
color: #aeaeae;
font-size: 48px;
background: transparent;
border: 0 none;
z-index: 2;
transition: 0.5s;
}
.htmega-testimonial-style-7 .slick-arrow:hover {
color: #f6ab4b;
}
.htmega-testimonial-style-7 button.slick-next.slick-arrow {
left: auto;
right: 16%;
} .htmega-testimonial-style-8 {
position: relative;
padding: 0 200px;
}
.htmega-testimonial-style-8 .content {
display: flex;
align-items: center;
}
.htmega-testimonial-style-8 .content .clint-info {
padding-left: 20px;
}
.htmega-testimonial-style-8 .content .clint-info h4 {
color: #3e3e3e;
font-size: 20px;
font-weight: 700;
margin-bottom: 7px;
}
.htmega-testimonial-style-8 .content .clint-info span {
color: #3e3e3e;
font-size: 18px;
}
.htmega-testimonial-style-8 p {
color: #3e3e3e;
font-size: 18px;
line-height: 35px;
margin: 0;
margin-top: 20px;
}
.htmega-testimonial-style-8 .slick-arrow {
left: 0;
color: #aeaeae;
font-size: 48px;
border: 0 none;
top: 43%;
transition: 0.5s;
}
.htmega-testimonial-style-8 .slick-arrow:hover {
color: #f6ab4b;
}
.htmega-testimonial-style-8 button.slick-next.slick-arrow {
left: auto;
right: 0;
}
.htmega-testimonial-style-8 .testimonal .shape img{
position: relative;
left: 10px;
} .htmega-testimonial-style-9 .testimonal {
background: #f7f8f9;
padding: 30px;
margin-top: 30px;
}
.htmega-testimonial-style-9 .testimonal .content {
display: flex;
align-items: center;
}
.htmega-testimonial-style-9 .testimonal .content .clint-info {
padding-left: 25px;
}
.htmega-testimonial-style-9 .testimonal .content .clint-info h4 {
font-size: 18px;
color: #383838;
margin: 0;
}
.htmega-testimonial-style-9 .testimonal .content .clint-info span {
color: #1834a6;
font-size: 13px;
}
.htmega-testimonial-style-9 .testimonal p {
color: #5b5b5b;
font-size: 14px;
line-height: 26px;
margin: 0;
margin-top: 22px;
}
.htmega-testimonial-style-9 .testimonal .shape img{
position: relative;
left: 5px;
} .htmega-form-wrapper form input,.htmega-form-wrapper form textarea{
width: 100%;
border-radius: 0;
}
.htmega-form-wrapper .ajax-loader {
bottom: 0;
position: absolute;
}
.htmega-form-wrapper .form_no_select {
color: red;
font-size: 20px;
} .htmega-form-style-1 form input {
height: 55px;
font-weight: 300;
margin-top: 30px;
padding: 0 20px;
border: 1px solid #c1c1c1;
font-family: "Montserrat", sans-serif;
font-size: 13px;
color: #a2a2a2;
}
.htmega-form-style-1 form input:focus {
border: 1px solid #18012c;
}
.htmega-form-style-1 form input[type="submit"] {
background-color: #0056ff;
border: medium none;
color: #ffffff;
font-size: 14px;
font-weight: 500;
height: 55px;
line-height: 55px;
padding: 0 29px;
text-transform: uppercase;
width: auto;
transition: 0.5s;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-1 form input[type="submit"]:hover {
background-color: #18012c;
}
.htmega-form-style-1 form textarea {
border: 1px solid #c1c1c1;
min-height: 175px;
margin-top: 30px;
padding: 20px;
color: #a2a2a2;
resize: none;
font-family: "Montserrat", sans-serif;
font-size: 13px;
}
.htmega-form-style-1 form textarea:focus {
border: 1px solid #18012c;
} .htmega-form-style-2 label {
color: #ffffff;
font-style: italic;
font-weight: 300;
font-size: 14px;
margin-bottom: 11px;
}
.htmega-form-style-2 input {
height: 55px;
font-weight: 300;
margin-bottom: 30px;
padding: 0 20px;
border: 0 none;
font-family: "Montserrat", sans-serif;
font-size: 13px;
background: rgba(255, 255, 255, 0.3);
color: #ffffff;
}
.htmega-form-style-2 input:focus {
border: 1px solid #18012c;
}
.htmega-form-style-2 input[type="submit"] {
background-color: #fff;
border: medium none;
color: #0056ff;
font-size: 14px;
font-weight: 600;
height: 55px;
line-height: 54px;
padding: 0 29px;
text-transform: uppercase;
width: 100%;
transition: 0.5s;
font-family: "Montserrat", sans-serif;
margin: 0;
}
.htmega-form-style-2 input[type="submit"]:hover {
background-color: #18012c;
color: #ffffff;
}
.htmega-form-style-2 textarea {
border: 1px solid #c1c1c1;
min-height: 209px;
padding: 20px;
color: #fff;
resize: none;
font-family: "Montserrat", sans-serif;
font-size: 13px;
background: rgba(255, 255, 255, 0.3);
margin-bottom: 30px;
border: 0 none;
}
.htmega-form-style-2 textarea:focus {
border: 1px solid #18012c;
} .htmega-form-style-3 form input {
color: #c0c0c0;
font-weight: 300;
font-style: italic;
border: 0 none;
border-bottom: 1px solid #c0c0c0;
padding: 0;
margin-bottom: 50px;
padding-bottom: 4px;
font-size: 16px;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-3 form input:focus {
border-bottom: 1px solid #18012c;
}
.htmega-form-style-3 form input[type="submit"] {
border: 0 none;
background: #0056ff;
color: #fff;
margin-top: 40px;
margin-bottom: 0;
height: 55px;
line-height: 59px;
padding: 0 20px;
transition: 0.5s;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.htmega-form-style-3 form input[type="submit"]:hover {
background: #ffffff;
color: #0056ff;
}
.htmega-form-style-3 form textarea {
border: 0 none;
border-bottom: 1px solid #c0c0c0;
font-style: italic;
padding: 0;
min-height: 150px;
resize: none;
color: #c0c0c0;
font-size: 16px;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-3 form textarea:focus {
border-bottom: 1px solid #18012c;
} .htmega-form-style-4 form .input-box {
display: flex;
align-items: center;
margin-bottom: 30px;
}
.htmega-form-style-4 form .input-box label {
color: #000000;
font-weight: 600;
font-size: 14px;
flex-basis: 16%;
}
.htmega-form-style-4 form .input-box span{
flex-basis: 84%;
}
.htmega-form-style-4 form .input-box input {
background: #a2a2a2;
color: #a2a2a2;
font-weight: 300;
background: #f3f3f3;
border: 1px solid #c1c1c1;
height: 55px;
line-height: 55px;
padding: 0 20px;
font-weight: "Montserrat", sans-serif;
}
.htmega-form-style-4 form .input-box input:focus {
border: 1px solid #18012c;
}
.htmega-form-style-4 form .input-box textarea {
background: #f3f3f3;
border: 1px solid #c1c1c1;
min-height: 200px;
padding: 20px;
font-weight: "Montserrat", sans-serif;
}
.htmega-form-style-4 form .input-box textarea:focus {
border: 1px solid #18012c;
}
.htmega-form-style-4 form input[type="submit"] {
background: #0056ff;
width: auto;
border: 0 none;
color: #fff;
padding: 0 30px;
height: 55px;
line-height: 55px;
margin: 0 0 0 90px;
font-size: 14px;
font-weight: 500;
transition: 0.5s;
}
.htmega-form-style-4 form input[type="submit"]:hover {
opacity: 0.7;
} .contact_form_container {
background: #81abfe;
padding: 30px;
}
.htmega-form-style-5 form input {
margin-top: 30px;
border: 1px solid #ffffff;
height: 50px;
line-height: 50px;
color: #fff;
font-weight: 300;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-5 form input:focus {
border: 1px solid #18012c;
}
.htmega-form-style-5 form input[type="submit"] {
background: #fff;
height: 55px;
line-height: 56px;
border: 0 none;
padding: 0 30px;
color: #0056ff;
font-weight: 600;
width: auto;
transition: 0.5s;
}
.htmega-form-style-5 form input[type="submit"]:hover {
opacity: 0.7;
}
.htmega-form-style-5 form textarea {
margin-top: 30px;
min-height: 145px;
border: 1px solid #fff;
padding: 20px;
font-weight: 300;
color: #fff;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-5 form textarea:focus {
border: 1px solid #18012c;
} .htmega-form-style-6 form input {
background: #f3f3f3;
border: 0 none;
height: 55px;
padding: 0 20px;
margin-bottom: 30px;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-6 form input:focus {
border: 1px solid #18012c;
}
.htmega-form-style-6 form input[type="submit"] {
width: auto;
margin: 0;
padding: 0 58px;
background: #0056ff;
color: #fff;
height: 58px;
font-weight: 600;
line-height: 61px;
text-transform: uppercase;
transition: 0.5s;
margin-top: 10px;
}
.htmega-form-style-6 form input[type="submit"]:hover {
opacity: 0.7;
}
.htmega-form-style-6 form label {
font-size: 14px;
color: #000000;
font-weight: 300;
font-style: italic;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-6 form textarea {
background: #f3f3f3;
border: 0 none;
margin-bottom: 30px;
min-height: 230px;
resize: none;
padding: 20px;
margin-bottom: 30px;
font-family: "Montserrat", sans-serif;
}
.htmega-form-style-6 form textarea:focus {
border: 1px solid #18012c;
}
input,
textarea {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
} .htmega-login-form-wrapper form input:not([type="checkbox"]){
width: 100%;
}
.htmega-login-form-wrapper form input:not([type="checkbox"]){
padding: 0 15px;
} .htmega-login-form-style-1 {
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 50px 70px;
}
.htmega-login-form-style-1 h2 {
color: #000000;
font-size: 30px;
font-weight: 600;
margin-bottom: 21px;
font-family: "Montserrat", sans-serif;
}
.htmega-login-form-style-1 form label {
color: #000000;
font-size: 13px;
font-weight: 300;
margin-bottom: 10px;
font-family: "Montserrat", sans-serif;
}
.htmega-login-form-style-1 form input:not([type="checkbox"]) {
background: transparent;
border: 1px solid #f2f2f2;
color: #757575;
font-size: 12px;
margin-bottom: 24px;
font-family: "Montserrat", sans-serif;
height: 50px;
}
.htmega-login-form-style-1 form input:not([type="checkbox"])[type="submit"] {
margin: 0;
margin-top: 40px;
width: auto;
background: #0056ff;
color: #fff;
height: 43px;
padding: 0 40px;
font-weight: 600;
text-transform: uppercase;
font-size: 14px;
border: 0 none;
transition: 0.4s ease-in-out;
}
.htmega-login-form-style-1 form input:not([type="checkbox"])[type="submit"]:hover {
background: #18012c;
color: #fff;
}
.log-remember {
display: flex;
justify-content: space-between;
align-items: center;
font-family: "Montserrat", sans-serif;
}
.log-remember a.fright {
color: #b1b1b1;
font-size: 12px;
transition: 0.4s;
font-family: "Montserrat", sans-serif;
}
.htmega_message {
display: none;
}
#htmega_message .alert-success,.htmega_lodding_msg {
color: #155724 !important;
}
#htmega_message .alert-danger {
color: #721c24 !important;
} .lable-content {
display: block;
position: relative;
padding-left: 29px;
margin-bottom: 0;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-family: "Montserrat", sans-serif;
}
.login-wrapper form .log-remember label {
margin: 0;
} .lable-content input {
position: absolute;
opacity: 0;
cursor: pointer;
} .checkmark {
position: absolute;
top: 0;
left: 0;
height: 18px;
width: 18px;
border: 1px solid #0056ff;
margin-top: 4px;
} .lable-content:hover input~.checkmark {
border: 1px solid #0056ff;
} .checkmark:after {
content: "";
position: absolute;
display: block;
} .lable-content input:checked~.checkmark:after {
display: none;
} .lable-content .checkmark:after {
left: 5px;
top: 2px;
width: 6px;
height: 9px;
border: solid #0056ff;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
} .htmega-login-form-style-2 {
text-align: center;
}
.htmega-login-form-style-2 form input {
margin-top: 30px;
border: 1px solid #ffffff;
border-radius: 5px;
height: 60px;
color: #fff;
padding: 0 20px;
}
.htmega-login-form-style-2 form input[type="submit"] {
background: #0056ff;
border: 0 none;
font-size: 24px;
text-transform: uppercase;
height: 60px;
border-radius: 5px;
transition: 0.3s ease-in-out;
margin-bottom: 20px;
}
.htmega-login-form-style-2 form input[type="submit"]:hover {
background: #18012c;
color: #ffffff;
}
.htmega-login-form-style-2 .separator span {
display: block;
color: #fff;
font-size: 14px;
font-weight: 600;
margin-top: 30px;
position: relative;
font-family: "Montserrat", sans-serif;
}
.htmega-login-form-style-2 .separator span::before,
.htmega-login-form-style-2 .separator span::after {
position: absolute;
left: 0;
top: 50%;
background: #fff;
width: 235px;
height: 2px;
content: "";
}
.htmega-login-form-style-2 .separator span::after {
left: auto;
right: 0;
}
.htmega-login-form-style-2 .log-remember a.fright {
color: #ffffff;
}
.htmega-login-form-style-2 form input::-webkit-input-placeholder {
color: #ffffff;
}
.htmega-login-form-style-2 form input::-moz-placeholder {
color: #ffffff;
}
.htmega-login-form-style-2 form input:-ms-input-placeholder {
color: #ffffff;
}
.htmega-login-form-style-2 form input:-moz-placeholder {
color: #ffffff;
} .htmega-login-form-style-2 .checkmark,
.htmega-login-form-style-4 .checkmark {
border: 1px solid #ffffff;
}
.htmega-login-form-style-2 .lable-content,
.htmega-login-form-style-4 .lable-content {
color: #ffffff;
font-size: 12px;
}
.htmega-login-form-style-2 .lable-content .checkmark:after,
.htmega-login-form-style-4 .lable-content .checkmark:after {
left: 5px;
top: 2px;
width: 6px;
height: 9px;
border: solid #ffffff;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.htmega-login-form-style-2 .lable-content:hover input~.checkmark,
.htmega-login-form-style-4 .lable-content:hover input~.checkmark {
border: 1px solid #ffffff;
}
.htmega-login-form-style-2 .log-remember {
margin-top: 10px;
}
.htmega-login-form-style-2 .htmega-user-login,.htmega-login-form-style-4 .htmega-user-login,.htmega-login-form-style-5 .htmega-user-login{
color: #fff;
} .htmega-login-form-style-3 {
padding: 0px 40px;
}
.htmega-login-form-style-3 form input {
margin-top: 17px;
border: 0 none;
border-bottom: 1px solid #687ea5;
padding: 0;
color: #687ea5;
font-size: 12px;
font-weight: 300;
font-family: "Montserrat", sans-serif;
}
.htmega-login-form-style-3 form input[type="submit"] {
background: #0056ff;
color: #fff;
width: auto;
height: 50px;
padding: 0 55px;
border: 0 none;
font-size: 14px;
text-transform: uppercase;
transition: 0.5s;
font-weight: 600;
margin-top: 40px;
}
.htmega-login-form-style-3 form input[type="submit"]:hover {
opacity: 0.7;
}
.htmega-login-form-style-3 {
box-shadow: none;
background: transparent;
}
.htmega-login-form-style-2 .htmega-user-login{
text-align: left;
} .htmega-login-form-style-4 {
padding: 100px 56px;
text-align: center;
}
.htmega-login-form-style-4 form input {
background: rgba(255, 255, 255, 0.3);
border: 0 none;
margin-left: 2px;
height: 70px;
border-radius: 0 8px 8px 0;
padding: 0 50px;
color: #ffffff;
font-size: 16px;
font-family: "Poppins", sans-serif;
}
.htmega-login-form-style-4 form input[type="submit"] {
border: 3px solid #fff;
border-radius: 8px;
color: #fff;
box-sizing: border-box;
height: 70px;
font-size: 24px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 51px;
font-family: "Montserrat", sans-serif;
margin: 0;
margin-top: 30px;
}
.htmega-login-form-style-4 form input[type="submit"]:hover {
background: #ffffff !important;
color: #18012c;
} .htmega-service {
margin-top: 30px;
text-align: center;
transition: all 0.3s ease-in-out;
}
.htmega-service svg {
width: 30px;
height: auto;
}
.htmega-svg-icon-box{
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
border-radius: 100%;
transition: all 0.3s ease-in-out;
}
.htmega-service a.readmore_btn {
border: 1px solid #0056ff;
display: inline-block;
padding: 0 42px;
line-height: 40px;
font-size: 14px;
border-radius: 30px;
color: #0056ff;
font-weight: 600;
transition: 0.5s;
text-decoration: none;
}
.htmega-service a.readmore_btn:hover {
background: #0056ff;
color: #fff;
}
.htmega-service .service-title a{
text-decoration: none;
}
.htmega-service .thumb{
display: inline-block;
}
.htmega-service .thumb a {
display: block;
} .htmega-service-style-1 .icon {
margin-bottom: 30px;
padding: 0 12px;
}
.htmega-service-style-1 .icon i {
color: #ed552d;
font-size: 50px;
}
.htmega-service-style-1 .content {
padding: 0 12px;
}
.htmega-service-style-1 .content h4 {
color: #5b5b5b;
font-size: 18px;
font-weight: 400;
margin-bottom: 15px;
}
.htmega-service-style-1 .content p {
color: #8f8f8f;
font-family: "Montserrat",sans-serif;
font-size: 15px;
line-height: 25px;
margin: 0;
padding: 0 0 35px;
position: relative;
}
.htmega-service-style-1 .content p::before {
position: absolute;
content: "";
background: #969696;
width: 20px;
height: 1px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.htmega-service-style-1 .content p::after {
position: absolute;
content: "";
background: #969696;
height: 1px;
width: 30px;
bottom: 5px;
left: 50%;
transform: translateX(-50%);
} .htmega-service-style-2 {
background: #ffffff;
padding: 30px;
}
.htmega-service-style-2 .content {
padding-top: 30px;
}
.htmega-service-style-2 .content h4 {
color: #575757;
font-size: 22px;
line-height: 30px;
margin-bottom: 13px;
padding: 0 9px;
}
.htmega-service-style-2 .content p {
color: #818181;
font-size: 14px;
line-height: 24px;
margin-bottom: 35px;
} .htmega-service-style-3 .icon {
border: 1px solid #eff2f7;
width: 110px;
height: 110px;
text-align: center;
border-radius: 100%;
padding: 10px;
margin: 0 auto;
margin-bottom: 27px;
transition: 0.4s;
}
.htmega-service-style-3 .icon i {
background: #eff2f7;
border-radius: 100%;
text-align: center;
font-size: 40px;
margin: 0 auto;
color: #454545;
transition: 0.4s;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.htmega-service-style-3:hover .icon {
border: 1px solid #0056ff;
}
.htmega-service-style-3:hover .icon i {
background: #0056ff;
color: #fff;
}
.htmega-service-style-3 .content h4 {
color: #5f5f5f;
font-size: 16px;
text-transform: uppercase;
padding-bottom: 20px;
position: relative;
}
.htmega-service-style-3 .content h4::before {
position: absolute;
content: "";
background: #0056ff;
width: 30px;
height: 3px;
left: 50%;
bottom: 0;
transform: translateX(-50%);
}
.htmega-service-style-3 .content p {
color: #5b5b5b;
font-size: 14px;
line-height: 25px;
padding: 0 12px;
margin: 0;
}
.htmega-service.htmega-service-style-3:hover:after,.htmega-service.htmega-service-style-3:hover:before {
content: "";
background: transparent;
width: 2px;
height: 25px;
top: 50%;
margin-top:-12px;
left: 0px;
position: absolute;
}
.htmega-service.htmega-service-style-3:hover:before{
left: auto;
right: 0px;
} .htmega-service-style-4 {
background: rgba(255, 255, 255, 0.15);
padding: 75px 11px;
}
.htmega-service-style-4 .content h4 {
color: #b8b8b8;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 16px;
}
.htmega-service-style-4 .content p {
margin: 0;
color: #959595;
font-weight: 300;
font-size: 14px;
line-height: 24px;
}
.htmega-service-style-4 .thumb {
padding-bottom: 33px;
position: relative;
margin-bottom: 22px;
}
.htmega-service-style-4 .thumb::before {
position: absolute;
content: "";
background: #969696;
width: 30px;
height: 1px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.htmega-service-style-4 .thumb::after {
position: absolute;
content: "";
bottom: 5px;
left: 50%;
transform: translateX(-50%);
background: #969696;
width: 20px;
height: 1px;
} .htmega-service-style-5 .content {
padding-top: 26px;
}
.htmega-service-style-5 .content h4 {
color: #585858;
font-size: 17px;
font-weight: 600;
margin-bottom: 13px;
}
.htmega-service-style-5 .content p {
color: #414141;
font-size: 14px;
line-height: 24px;
margin: 0;
}
.htmega-service-style-5 .thumb {
position: relative;
}
.htmega-service-style-5 .thumb::before {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
content: "";
-webkit-transition: opacity 1s;
transition: opacity 1s;
opacity: 0;
background-image: -webkit-linear-gradient(top, #252a9c, #df09f9);
background-image: -moz-linear-gradient(top, #252a9c, #df09f9);
background-image: linear-gradient(0, #252a9c, #df09f9);
}
.htmega-service-style-5:hover .thumb::before {
opacity: 0.3;
}
.htmega-service-style-5 .thumb img{
width: 100%;
} .htmega-service-style-6 {
margin-top: 12px;
}
.htmega-service-style-6 .thumb,.htmega-service-style-6 .icon {
border: 1px solid #4e89fb;
width: 100px;
height: 100px;
line-height: 100px;
border-radius: 100%;
float: left;
text-align: center;
margin-right: 22px;
margin-top: 10px;
overflow: hidden;
}
.htmega-service-style-6>a{
float: left;
}
.htmega-service-style-6 .content {
overflow: hidden;
}
.htmega-service-style-6 .content p {
font-size: 14px;
line-height: 25px;
color: #5b5b5b;
}
.htmega-service-style-6 .content h4 {
color: #5f5f5f;
font-size: 24px;
font-weight: 600;
margin-bottom: 7px;
} .htmega-service-style-7 {
display: flex;
margin-top: 0;
position: relative;
z-index: 1;
padding: 40px 20px;
border-radius: 8px;
}
.htmega-service-style-7 .icon {
margin-right: 33px;
}
.htmega-service-style-7 .icon i {
color: #4c4c4c;
font-size: 40px;
transition: 0.4s;
}
.htmega-service-style-7 .content h4 {
color: #4c4c4c;
font-size: 20px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 8px;
transition: 0.4s;
}
.htmega-service-style-7 .content p {
color: #5b5b5b;
font-size: 14px;
line-height: 25px;
margin: 0;
transition: 0.4s;
}
.htmega-service-style-7::before {
background: #fff none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
opacity: 1;
position: absolute;
top: 0;
transition: all 0.4s ease-in-out 0s;
width: 100%;
z-index: -1;
}
.htmega-service-style-7:hover::before {
opacity: 0;
}
.htmega-service-style-7:hover .content h4,
.htmega-service-style-7:hover .content p,
.htmega-service-style-7:hover .icon i {
color: #fff !important;
} @media (max-width: 767px) {
.htmega-service.htmega-service-style-2 .thumb {
display:block;
}
.htmega-service.htmega-service-style-2 .thumb img{
width: 100%;
}
} .breaking-news-title svg {
width: 20px;
}
.breaking-news-default {
border: 1px solid #18012c;
display: flex;
align-items: center;
}
.breaking-news-default .breaking-news-title {
display: flex;
height: 80px;
align-items: center;
}
.breaking-news-default .breaking-news-title h5 {
position: relative;
font-weight: 600;
font-size: 30px;
letter-spacing: 0.5px;
margin: 0;
text-transform: uppercase;
padding: 0 48px;
width: max-content;
display: flex;
align-items: center;
}
.breaking-news-default .breaking-news-ticker {
margin-left: 20px;
list-style: none;
padding: 0;
margin: 0;
padding-left: 22px;
width: 100%;
}
.breaking-news-default .breaking-news-ticker li {
padding: 5px 0;
height: 100%;
display: flex;
align-items: center;
}
.breaking-news-default .breaking-news-ticker li a {
display: block;
line-height: 24px;
font-size: 16px;
font-family: "Poppins", sans-serif;
color: #18012c;
text-decoration: none;
}
.breaking-news-default .breaking-news-ticker li span.news_date {
background: #d20001;
color: #fff;
font-size: 12px;
margin-left: 30px;
padding: 5px 5px;
border-radius: 3px;
display: inline-block;
line-height: 1;
}
.breaking-news-default .breaking-news-nav {
float: right;
display: flex;
height: 80px;
align-items: center;
margin-right: 42px;
}
.breaking-news-default .breaking-news-nav button {
border: 1px solid #18012c;
height: 40px;
margin: 0 5px;
padding: 0;
transition: all 0.3s ease-in-out 0s;
width: 40px;
background: transparent;
}
.breaking-news-default .breaking-news-nav button i {
color: #18012c;
font-size: 24px;
}
.breaking-news-default::before {
position: absolute;
content: "";
background: #1d62af;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
transform: skew(-20deg);
}
.htmega-newsticker-style-2.breaking-news-default::before,.htmega-newsticker-style-3.breaking-news-default::before,.htmega-newsticker-style-4.breaking-news-default::before,.htmega-newsticker-style-6.breaking-news-default::before,.htmega-newsticker-style-5.breaking-news-default::before,.htmega-newsticker-style-7.breaking-news-default::before{
display: none;
} .htmega-newsticker-style-1 {
border: 0 none;
float: left;
position: relative;
width: 100%;
z-index: 1;
}
.htmega-newsticker-style-1 .breaking-news-title {
display: flex;
align-items: center;
}
.htmega-newsticker-style-1 .breaking-news-title h5 {
position: relative;
left: -20px;
display: block;
color: #ffffff;
font-weight: 600;
font-size: 30px;
letter-spacing: 0.5px;
margin: 0;
text-transform: uppercase;
height: 60px;
line-height: 59px;
padding: 0 48px;
display: flex;
align-items: center;
}  
.htmega-newsticker-style-1 .breaking-news-title h5::before {
position: absolute;
content: "";
transform: skew(-20deg);
background: #d20001;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.htmega-newsticker-style-1 .breaking-news-title h5 i,.htmega-newsticker-style-1 .breaking-news-title h5 .htmega-news-tickr-svg-icon-box {
width: 40px;
height: 40px;
color: #d20001;
background: #fff;
text-align: center;
line-height: 40px;
border-radius: 100%;
font-size: 28px;
padding: 0;
margin-left: 10px;
} .breaking-news-title h5 .htmega-news-tickr-svg-icon-box svg{
height: auto;
}
.htmega-news-tickr-svg-icon-box {
display: flex;
align-items: center;
justify-content: center;
}
.htmega-newsticker-style-1 .breaking-news-ticker {
margin-left: 20px;
list-style: none;
padding: 0;
margin: 0;
padding-left: 22px;
}
.htmega-newsticker-style-1 .breaking-news-ticker li {
padding: 5px 0;
}
.htmega-newsticker-style-1 .breaking-news-ticker li a {
color: #ffffff;
}
.htmega-newsticker-style-1 .breaking-news-nav {
float: right;
display: flex;
align-items: center;
margin-right: 42px;
margin-left: auto;
}
.htmega-newsticker-style-1 .breaking-news-nav button {
border: 1px solid #fff;
margin: 0 5px;
transform: skew(-20deg);
}
.htmega-newsticker-style-1 .breaking-news-nav button:hover {
border: 1px solid #d20001;
background: #d20001;
}
.htmega-newsticker-style-1 .breaking-news-nav button i {
color: #ffffff;
font-size: 24px;
} .htmega-newsticker-style-2 {
border: 1px solid #1d62af;
overflow: hidden;
}  
.htmega-newsticker-style-2 .breaking-news-title h5 {
position: relative;
color: #ffffff;
font-weight: 600;
font-size: 20px;
margin: 0;
text-transform: capitalize;
padding: 0 20px;
background: #1d62af;
font-style: italic;
padding-right: 0;
align-self: stretch;
display: flex;
align-items: center;
justify-content: center;
width: max-content;
}
.htmega-newsticker-style-2 .breaking-news-title h5::before {
position: absolute;
top: 0;
border-right: 40px solid transparent;
border-top: 40px solid transparent;
border-bottom: 40px solid transparent;
content: "";
border-left: 40px solid #1d62af;
left: 100%;
background: transparent!important;
background-color: none!important;
background-image: none!important;
}
.htmega-newsticker-style-2 .breaking-news-ticker {
padding-left: 57px;
}
.htmega-newsticker-style-2 .breaking-news-ticker li a {
color: #181818;
}
.htmega-newsticker-style-2 .breaking-news-nav {
margin-right: 29px;
}
.htmega-newsticker-style-2 .breaking-news-nav button {
margin: 0 3px;
border: 1px solid transparent;
width: auto;
height: auto;
}
.htmega-newsticker-style-2 .breaking-news-nav button i {
color: #000000;
font-size: 30px;
transition: 0.3s ease-in-out;
}
.htmega-newsticker-style-2 .breaking-news-nav button i:hover {
color: #1d62af;
} .htmega-newsticker-style-3 {
border: 1px solid #1d62af;
border-radius: 40px;
overflow: hidden;
display: flex;
}
.htmega-newsticker-style-3 .breaking-news-title{
order: 3;
}
.htmega-newsticker-style-3 .breaking-news-title {
display: flex;
align-items: center;
background: #1d62af;
border-radius: 0 40px 40px 0;
}
.htmega-newsticker-style-3 .breaking-news-title h5 {
position: relative;
color: #ffffff;
font-weight: 600;
font-size: 20px;
margin: 0;
text-transform: capitalize;
padding: 0 20px;
font-style: italic;
padding-right: 20px;
align-self: stretch;
display: flex;
align-items: center;
justify-content: center;
padding-left: 0;
width: max-content;
}
.htmega-newsticker-style-3 .breaking-news-title h5::before {
position: absolute;
top: 0;
border-right: 40px solid #1d62af;
border-top: 40px solid transparent;
border-bottom: 40px solid transparent;
content: "";
border-left: 40px solid transparent;
right: 100%;
background: transparent!important;
background-color: none!important;
background-image: none!important;
}
.htmega-newsticker-style-3 .breaking-news-ticker {
flex-grow: 1;
order: 2;
padding-right: 57px;
}
.htmega-newsticker-style-3 .breaking-news-ticker li {
padding: 5px 0;
}
.htmega-newsticker-style-3 .breaking-news-ticker li a {
color: #181818;
}
.htmega-newsticker-style-3 .breaking-news-ticker li a span.news_date {
margin-left: 30px;
}
.htmega-newsticker-style-3 .breaking-news-nav {
margin-right: 0;
float: left;
margin-left: 29px;
order: 1;
}
.htmega-newsticker-style-3 .breaking-news-nav button {
margin: 0 3px;
border: 1px solid transparent;
width: auto;
height: auto;
}
.htmega-newsticker-style-3 .breaking-news-nav button i {
color: #000000;
font-size: 30px;
transition: 0.3s ease-in-out;
}
.htmega-newsticker-style-3 .breaking-news-nav button i:hover {
color: #1d62af;
} .htmega-newsticker-style-4 {
border: 0 none;
background: #1d62af;
overflow: hidden;
}
.htmega-newsticker-style-4 .breaking-news-title {
display: flex;
height: 50px;
align-items: center;
background: #f05555;
align-self: stretch;
display: flex;
align-items: center;
justify-content: center;
}
.htmega-newsticker-style-4 .breaking-news-title h5 {
position: relative;
color: #ffffff;
font-weight: 600;
font-size: 18px;
margin: 0;
text-transform: capitalize;
padding: 0 27px;
}
.htmega-newsticker-style-4 .breaking-news-ticker {
padding-left: 30px;
}
.htmega-newsticker-style-4 .breaking-news-ticker li {
padding: 5px 0;
}
.htmega-newsticker-style-4 .breaking-news-ticker li a {
display: block;
color: #ffffff;
font-size: 14px;
font-family: "Poppins", sans-serif;
}
.htmega-newsticker-style-4 .breaking-news-nav {
margin-right: -1px;
height: 50px;
}
.htmega-newsticker-style-4 .breaking-news-nav button {
margin: 0 1px;
border: 1px solid transparent;
width: 50px;
height: 50px;
background: #4b7bb0;
}
.htmega-newsticker-style-4 .breaking-news-nav button i {
color: #ffffff;
font-size: 30px;
transition: 0.3s ease-in-out;
}
.htmega-newsticker-style-4 .breaking-news-nav button i:hover {
color: #18012c;
} .htmega-newsticker-style-5 {
border: 0 none;
overflow: hidden;
background: #00C8FA;
}
.htmega-newsticker-style-5.breaking-news-default::before{
transform: skew(0deg);
}
.htmega-newsticker-style-5 .breaking-news-title {
display: flex;
height: 50px;
align-items: center;
background: #f05555;
align-self: stretch;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.htmega-newsticker-style-5 .breaking-news-title::before {
position: absolute;
top: 50%;
border-right: 15px solid transparent;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
content: "";
border-left: 15px solid #f05555;
left: 100%;
transform: translateY(-50%);
}
.htmega-newsticker-style-5 .breaking-news-title h5 {
color: #ffffff;
font-weight: 600;
font-size: 18px;
margin: 0;
text-transform: capitalize;
padding: 0 27px;
}
.htmega-newsticker-style-5 .breaking-news-ticker {
padding-left: 34px;
}
.htmega-newsticker-style-5 .breaking-news-ticker li {
padding: 5px 0;
}
.htmega-newsticker-style-5 .breaking-news-ticker li a {
display: block;
color: #ffffff;
font-size: 14px;
font-family: "Poppins", sans-serif;
}
.htmega-newsticker-style-5 .breaking-news-nav {
margin-right: 11px;
height: 50px;
}
.htmega-newsticker-style-5 .breaking-news-nav button {
margin: 0;
border: 1px solid transparent;
width: auto;
height: auto;
}
.htmega-newsticker-style-5 .breaking-news-nav button i {
color: #ffffff;
font-size: 30px;
transition: 0.3s ease-in-out;
}
.htmega-newsticker-style-5 .breaking-news-nav button i:hover {
color: #18012c;
} .htmega-newsticker-style-6 {
border: 1px solid #1d62af;
overflow: hidden;
}
.htmega-newsticker-style-6.breaking-news-default::before{
transform: skew(0deg);
}
.htmega-newsticker-style-6 .breaking-news-title {
height: 60px;
position: relative;
z-index: 1;
padding: 0 18px 0 0;
width: max-content;
}
.htmega-newsticker-style-6 .breaking-news-title::before {
position: absolute;
left: -16px;
top: 0;
background: #1d62af;
width: 100%;
height: 100%;
content: "";
z-index: -1;
transform: skew(-26deg);
}
.htmega-newsticker-style-6 .breaking-news-title h5 {
color: #fff;
font-weight: 600;
font-size: 18px;
margin: 0;
text-transform: capitalize;
padding: 0 18px;
z-index: 1;
position: relative;
}
.htmega-newsticker-style-6 .breaking-news-ticker {
padding-left: 34px;
}
.htmega-newsticker-style-6 .breaking-news-ticker li {
padding: 5px 0;
}
.htmega-newsticker-style-6 .breaking-news-ticker li a {
display: block;
color: #000000;
font-size: 14px;
font-family: "Poppins", sans-serif;
}
.htmega-newsticker-style-6 .breaking-news-nav {
margin-right: 11px;
height: 60px;
}
.htmega-newsticker-style-6 .breaking-news-nav button {
margin: 0;
border: 1px solid transparent;
width: auto;
height: auto;
}
.htmega-newsticker-style-6 .breaking-news-nav button i {
color: #ffffff;
font-size: 30px;
transition: 0.3s ease-in-out;
}
.htmega-newsticker-style-6 .breaking-news-nav button i:hover {
color: #18012c;
} .htmega-newsticker-style-7 {
border: 1px solid #1d62af;
overflow: hidden;
}
.htmega-newsticker-style-7.breaking-news-default::before{
transform: skew(0deg);
}
.htmega-newsticker-style-7 .breaking-news-title {
display: flex;
height: 60px;
align-items: center;
align-self: stretch;
justify-content: center;
position: relative;
z-index: 1;
padding: 0 18px 0 0;
}
.htmega-newsticker-style-7 .breaking-news-title::before {
position: absolute;
left: -10px;
top: 0;
background: #1d62af;
width: 100%;
height: 100%;
content: "";
z-index: -1;
border-radius: 0 45px 0px 0;
}
.htmega-newsticker-style-7 .breaking-news-title h5 {
color: #fff;
font-weight: 600;
font-size: 18px;
margin: 0;
text-transform: capitalize;
padding: 0 27px;
z-index: 1;
position: relative;
}
.htmega-newsticker-style-7 .breaking-news-ticker {
padding-left: 34px;
}
.htmega-newsticker-style-7 .breaking-news-ticker li {
padding: 5px 0;
}
.htmega-newsticker-style-7 .breaking-news-ticker li a {
display: block;
color: #000000;
font-size: 14px;
font-family: "Poppins", sans-serif;
}
.htmega-newsticker-style-7 .breaking-news-nav {
margin-right: 12px;
height: 60px;
}
.htmega-newsticker-style-7 .breaking-news-nav button {
margin: 0 1px;
border: 1px solid transparent;
width: 38px;
height: 38px;
background: #1d62af;
}
.htmega-newsticker-style-7 .breaking-news-nav button i {
color: #ffffff;
font-size: 30px;
transition: 0.3s ease-in-out;
}
.htmega-newsticker-style-7 .breaking-news-nav button:hover {
opacity: 0.7;
}
@media (max-width: 767px) {
.breaking-news-default {
flex-direction: column;
justify-content: center;
overflow: hidden;
}
.breaking-news-default .breaking-news-title {
margin-bottom: 15px;
width: 100%;
min-height: 45px;
}
.breaking-news-default .breaking-news-title h5 {
padding: 0 15px;
width: 100%;
justify-content: center;
}
.htmega-newsticker-style-1 .breaking-news-title h5{
left: 0;
}
.htmega-newsticker-style-1 .breaking-news-ticker,.breaking-news-default .breaking-news-ticker{
padding:0 15px;
}
.htmega-newsticker-style-2 .breaking-news-nav {
margin-right: 0;
}
.htmega-newsticker-style-2 .breaking-news-ticker {
padding-left: 0 15px;
}
.htmega-newsticker-style-3 .breaking-news-title {
border-radius: 0;
margin-bottom: 0;
margin-top: 15px;
}
.htmega-newsticker-style-5 .breaking-news-nav {
margin-right: 0;
}
.htmega-newsticker-style-3 .breaking-news-nav {
margin-left: 0;
}
.htmega-newsticker-style-6 .breaking-news-title::before {
left: 0;
transform: skew(0);
}
.htmega-newsticker-style-7 .breaking-news-title::before {
left: 0;
border-radius: 0;
}
.breaking-news-default .breaking-news-title {
height: auto;
}
.breaking-news-default.htmega-newsticker-style-1 .breaking-news-title{
height: 80px;
}
.htmega-newsticker-style-4 .breaking-news-nav {
margin-top: 15px;
}
} .htmega-social-share ul{
list-style: none;
margin: 0;
padding: 0;
list-style: none;
}
.htmega-social-share ul li {
font-family: "Montserrat", sans-serif;
cursor: pointer;
color: #fff;
}
.htmega-social-share svg {
width: 20px;
display: inline-block;
}
.htmega-social-share.htmega-social-view-icon-title ul li{
padding-right: 15px;
}
.htmega-social-share.htmega-social-view-title ul li{
padding: 0px 15px;
}
.htmega-social-share ul li i {
display: block;
float: left;
height: 42px;
line-height: 42px;
width: 42px;
}
.htmega-share-counter {
margin-left: 5px;
} .htmega-social-style-1 ul li {
display: inline-block;
text-align: center;
font-size: 16px;
margin-right: 5px;
margin-bottom: 10px;
transition: 0.5s;
line-height: 42px;
}
.htmega-social-style-1 ul li:hover {
opacity: 0.7;
} .htmega-lightbox {
position: relative;
margin-top: 30px;
}
.htmega-lightbox .htmega-lightboxthumb a img {
width: 100%;
}
.htmega-lightbox .htmega-lightbox-action {
position: absolute;
top: 0;
width: 100%;
height: 100%;
transition: 0.5s;
left: 0;
opacity: 0;
}
.htmega-lightbox .htmega-lightbox-action::before {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background: rgba(0, 0, 0, 0.5);
content: "";
left: 0;
}
.htmega-lightbox .htmega-lightbox-action a {
position: absolute;
top: 50%;
transform:translate(-50%,-50%);
text-align: center;
border: 1px solid #fff;
display: inline-block;
border-radius: 100%;
left: 50%;
}
.htmega-lightbox .htmega-lightbox-action a i {
width: 30px;
height: 30px;
display: inline-block;
line-height: 30px;
color: #fff;
font-size: 25px;
text-align: center;
}
.image-popup-vertical-fit svg {
width: 20px;
}
.htmega-lightbox .htmega-lightbox-action a.play__btn i {
border: 1px solid transparent;
}
.htmega-lightbox:hover .htmega-lightbox-action {
opacity: 1;
}
.mfp-no-margins img.mfp-img {
padding: 0;
}
.mfp-no-margins .mfp-figure:after {
top: 0;
bottom: 0;
}
.mfp-no-margins .mfp-container {
padding: 0;
}
.lightbox_button_only .htmega-lightbox-action {
opacity: 1;
position: static;
}
.lightbox_button_only.htmega-lightbox .htmega-lightbox-action a{
position: static;
transform: translate(0, 0);
}
.lightbox_button_only .htmega-lightbox-action::before{
display: none; 
} .htmega-player-container .magnify-video-active {
background: #fff none repeat scroll 0 0;
border: 0 none;
border-radius: 100%;
color: #18012c;
display: inline-block;
font-size: 40px;
text-align: center;
transition: all 0.5s ease-in-out 0s;
padding: 10px 25px;
text-decoration: none;
position: relative;
line-height: 0;
}
.htmega-player-container .magnify-video-active *{
line-height: initial;
}
.htmega-player-container .magnify-video-active:hover {
transform: scale(1.2);
background: #18012c;
color: #fff;
}
a.magnify-video-active:focus,.mfp-iframe-holder .mfp-close:hover{
outline: 0;
border:none;
}
.mfp-iframe-holder .mfp-close, .mfp-iframe-holder .mfp-close:hover {
display: inline-block;
width: auto;
background: transparent;
} .htmega-player-container .magnify-video-active i,
.htmega-player-container .magnify-video-active img{
position: relative;
z-index: 1;
}
.htmega-video-mark {
position: absolute;
pointer-events: none;
left: 50%;
top: 50%;
}
.htmega-video-mark .htmega-wave-pulse {
width: 1px;
height: 0;
margin: 0 auto;
}
.htmega-video-mark .htmega-wave-pulse::after, .htmega-video-mark .htmega-wave-pulse::before {
opacity: 0;
content: '';
display: block;
position: absolute;
width: 200px;
height: 200px;
top: 50%;
left: 50%;
border-radius: 50%;
border: 3px solid #fff;
animation: zoomBig 2.25s linear infinite;
animation-delay: 0s;
}
.htmega-video-mark .htmega-wave-pulse::before {
animation-delay: .75s;
}
.htmega-player-container iframe.playerBox {
width: 100%!important;
margin: 0!important;
height: 100%!important;
}
@keyframes zoomBig {
0% {
transform: translate(-50%, -50%) scale(0);
opacity: 1;
border-width: 4px;
}
40% {
opacity: .8;
border-width: 3px;
}
65% {
border-width: 2px;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0;
border-width: 2px;
}
} .htmega-search-box input:focus {
outline: none;
}
.htmega-search-box .btn-search{
background: transparent;
padding: 0;
}
.htmega-search-box svg {
width: 20px;
margin-top: 8px;
} .htmega-search-style-1 {
position: relative;
}
.htmega-search-style-1 input {
border: 1px solid #ccc;
width: 100%;
border-radius: 22px !important;
transition: all .3s ease-in-out;
height: 45px;
color: #999999;
font-size: 14px;
padding: 0 78px 0 20px !important;
}
.htmega-search-style-1 input:focus {
width: 100%;
border: 1px solid hotpink;
}
.htmega-search-style-1 input:focus~button {
width: 36px;
}
.htmega-search-style-1 input:focus~button.btn-search {
background: hotpink;
color: #fff;
border-radius: 20px;
}
.htmega-search-style-1 input:focus~button.btn-reset {
right: -22px;
}
.htmega-search-style-1 button {
transition: all .3s ease-in-out;
border: none;
height: 36px;
position: absolute;
right: 4px;
top: 50%;
width: 70px;
transform: translateY(-50%);
padding: 0;
}
.htmega-search-style-1 button.btn-search {
background: #0056ff;
border-radius: 0 20px 20px 0;
color: #fff;
transition: all .3s ease-in-out;
} .htmega-search-style-2 {
display: inline-block;
position: relative;
height: 60px;
float: right;
padding: 0;
position: relative;
width: 100%;
}
.htmega-search-style-2 input[type="text"] {
height: 60px;
font-size: 17px;
display: inline-block;
font-weight: 100;
border: none;
outline: none;
color: #fff;
padding: 0;
padding-right: 70px;
width: 0px;
position: absolute;
top: 0;
right: 0;
background: none;
z-index: 3;
transition: width 0.5s cubic-bezier(0, 0.795, 0, 1);
cursor: pointer;
}
.htmega-search-style-2 input[type="text"]:focus {
width: 100%;
z-index: 1;
border-bottom: 1px solid #333;
cursor: text;
}
.htmega-search-style-2 button.btn-search {
width: 63px;
display: inline-block;
color: #333;
float: right;
background: transparent;
border: none;
position: absolute;
top: 0;
right: 0;
z-index: 2;
cursor: pointer;
cursor: pointer;
transition: width 0.4s cubic-bezier(0, 0.795, 0, 1);
} .htmega-search-style-3 {
float: right;
height: 40px;
position: relative;
width: 100%;
}
.htmega-search-style-3 input[type="text"] {
border: 1px solid #18012c;
font-size: 12px;
height: 40px;
position: absolute;
transition: all .3s ease-in;
width: 50%;
right: 0px;
color: #18012c;
font-size: 14px;
transition: all .3s ease-in-out;
padding: 0 20px;
padding-right: 63px;
}
.htmega-search-style-3 input[type="text"]:focus {
width: 100%;
border-radius: 20px;
border: 1px solid #ed552d;
}
.htmega-search-style-3 input[type="text"]:focus~button {
background: #ed552d;
border: 1px solid #ed552d;
border-radius: 0 20px 20px 0;
color: #fff !important;
}
.htmega-search-style-3 button {
background: transparent;
transition: all .3s ease-in;
position: absolute;
right: 0;
border: 0 none;
transition: all .3s ease-in-out;
width: 42px;
text-align: center;
height: 100%;
border: 0 none;
} .htmega-search-style-4 {
background-color: #ffffff;
position: relative;
overflow: hidden;
float: right;
}
.htmega-search-style-4 form{
width: 45px;
transition: all 0.5s ease;
}
.htmega-search-style-4:before {
content: '';
display: block;
width: 3px;
height: 100%;
position: relative;
background-color: #ff4888;
transition: all .5s ease;
}
.htmega-search-style-4 form.open {
width: 100%;
}
.htmega-search-style-4 form.open:before {
height: 20px;
margin: 15px 8px 10px 29px;
position: absolute;
}
.htmega-search-style-4 .search-box {
width: 100%;
height: 100%;
box-shadow: none;
border: none;
background: transparent;
color: #ff4888;
padding: 0px 48px 0px 45px;
font-size: 14px;
}
.htmega-search-style-4 .search-box:focus {
outline: none;
}
.htmega-search-style-4 .search-button {
width: 45px;
height: 45px;
display: block;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
.htmega-search-style-4 .search-icon {
width: 20px;
height: 20px;
border-radius: 40px;
border: 2px solid #ff4888;
display: block;
position: relative;
margin-left: 10px;
transition: all 0.5s ease;
top: 10px;
}
.htmega-search-style-4 .search-icon:before {
content: '';
width: 3px;
height: 8px;
position: absolute;
right: -2px;
top: 12px;
display: block;
background-color: #ff4888;
transform: rotate(-45deg);
transition: all 0.5s ease;
}
.htmega-search-style-4 .search-icon:after {
content: '';
width: 3px;
height: 9px;
position: absolute;
right: -8px;
top: 17px;
display: block;
background-color: #ff4888;
transform: rotate(-46deg);
transition: all 0.5s ease;
}
.htmega-search-style-4 form.open .search-icon {
margin: 0;
width: 35px;
height: 35px;
border-radius: 100%;
top: 5px;
}
.htmega-search-style-4 form.open .search-icon:before {
transform: rotate(52deg);
right: 12px;
top: 12px;
height: 18px;
}
.htmega-search-style-4 form.open .search-icon:after {
transform: rotate(-230deg);
right: 12px;
top: 2px;
height: 18px;
} .htmega-search-style-5 button {
color: #f45862;
font-size: 24px;
border: 0 none;
outline: none;
background: transparent;
}
.block-bg {
background: rgba(22, 22, 27, 0.97) none repeat scroll 0 0;
height: 100%;
left: 0;
opacity: 0;
position: fixed;
text-align: center;
top: 0;
transform: scale(0.7);
transition: -webkit-transform 0.8s ease 0s, -moz-transform 0.8s ease 0s, -o-transform 0.8s ease 0s, transform 0.8s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
visibility: hidden;
width: 100%;
z-index: 999;
}
.block-bg.is-visible {
opacity: 1;
transform: scale(1);
visibility: visible;
}
.block-bg .close__wrap {
color: white;
cursor: pointer;
font-size: 12px;
font-weight: 700;
line-height: 25px;
margin-top: -12.5px;
padding-right: 25px;
position: absolute;
right: 49px;
text-transform: uppercase;
z-index: 11;
transition: 0.4s;
top: 65px;
}
.block-bg .close__wrap:hover {
color: #ffffff;
}
.block-bg .close__wrap::after {
content: "\f00d";
font-family: 'FontAwesome';
font-size: 24px;
position: absolute;
right: 0;
top: 0;
}
.minisearch .field__search {
left: 0;
margin: 0 auto auto;
max-width: 1000px;
padding: 0 5px;
position: fixed;
right: 0;
top: 50%;
}
.minisearch .field__search input {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: transparent none repeat scroll 0 0;
border-color: currentcolor currentcolor #ebebeb;
-o-border-image: none;
border-image: none;
border-style: none none solid;
border-width: 0 0 1px;
color: #fff;
height: 60px;
padding: 10px 60px 10px 10px;
position: static;
transition: all 0.3s ease-in-out 0s;
width: 100%;
z-index: 1;
font-size: 16px;
outline: none;
}
.minisearch .field__search .action {
position: absolute;
right: 0;
top: 0;
z-index: 2;
}
.minisearch .field__search .action button{
color: #797979;
display: inline-block;
font-size: 26px;
height: 60px;
left: 0;
line-height: 60px;
text-align: center;
top: 0;
width: 60px;
} blockquote {
margin: 0;
}
blockquote cite {
font-family: "Montserrat", sans-serif;
}
.htmega-blockquote blockquote::before{
display: none;
}
.htmega-blockquote blockquote img,.htmega-blockquote blockquote .blockquote_icon{
position: absolute;
}
.htmega-blockquote blockquote img{
position: absolute;
width: 100px;
z-index: 0;
}
.htmega-blockquote blockquote p{
margin: 0;
}
.htmega-blockquote-position-lefttop blockquote img,.htmega-blockquote-position-lefttop blockquote .blockquote_icon{
left: 0;
top: 0;
}
.htmega-blockquote-position-leftcenter blockquote img,.htmega-blockquote-position-leftcenter blockquote .blockquote_icon{
left: 0;
top: 50%;
transform: translateY(-50%);
}
.htmega-blockquote-position-leftbottom blockquote img,.htmega-blockquote-position-leftbottom blockquote .blockquote_icon{
left: 0;
bottom: 0;
}
.htmega-blockquote-position-centertop blockquote img,.htmega-blockquote-position-centertop blockquote .blockquote_icon {
left: 50%;
top: 0;
transform: translateX(-50%);
}
.htmega-blockquote-position-center blockquote img,.htmega-blockquote-position-center blockquote .blockquote_icon {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.htmega-blockquote-position-centerbottom blockquote img,.htmega-blockquote-position-centerbottom blockquote .blockquote_icon {
left: 50%;
bottom: 0;
transform: translateX(-50%);
}
.htmega-blockquote-position-righttop blockquote img,.htmega-blockquote-position-righttop blockquote .blockquote_icon{
right: 0;
top: 0;
}
.htmega-blockquote-position-rightcenter blockquote img,.htmega-blockquote-position-rightcenter blockquote .blockquote_icon{
right: 0;
top: 50%;
transform: translateY(-50%);
}
.htmega-blockquote-position-rightbottom blockquote img,.htmega-blockquote-position-rightbottom blockquote .blockquote_icon{
right: 0;
bottom: 0;
} .htmega-blockquote blockquote {
background: #f4f4f4;
padding: 50px 62px 50px 56px;
position: relative;
border:0;
}
.htmega-blockquote blockquote .blockquote_content {
font-size: 18px;
line-height: 33px;
color: #5b5b5b;
font-style: normal;
font-weight: 600;
margin-bottom: 17px;
margin-bottom: 18px;
position: relative;
z-index: 1;
}
.htmega-blockquote blockquote cite {
color: #0056ff;
font-weight: 600;
font-style: normal;
margin: 0;
padding-left: 35px;
position: relative;
}
.htmega-citeseparator-position-after blockquote cite{
padding-left: 0px;
padding-right: 35px;
}
.htmega-citeseparator-position-none blockquote cite{
padding-left: 0;
padding-right: 0;
}
.htmega-blockquote blockquote cite::before {
position: absolute;
background-color: #0056ff;
content: "";
height: 4px;
width: 20px;
left: 0;
top: 50%;
transform: translateY(-50%);
}
.htmega-citeseparator-position-after blockquote cite::before {
right: 0;
left: auto;
top: 50%;
}
.htmega-citeseparator-position-none blockquote cite::before {
display: none;
} .htmega-instragram {
text-align: center;
}
.htmega-instragram ul.htmega-instagram-list {
padding: 0;
margin: 0;
list-style: none;
margin: 0 -5px;
}
.htmega-instragram ul.htmega-instagram-list li {
float: left;
width: 25%;
padding: 0 5px;
margin-bottom: 10px;
overflow: hidden;
position: relative;
}
.htmega-instragram ul.htmega-instagram-list li img{
width: 100%;
}
.htmega-instragram ul.htmega-instagram-list li a{
text-decoration: none;
}
.htmegainstagram-column-1 .htmega-instragram ul.htmega-instagram-list li{
width: 100%;
}
.htmegainstagram-column-2 .htmega-instragram ul.htmega-instagram-list li{
width: 50%;
}
.htmegainstagram-column-3 .htmega-instragram ul.htmega-instagram-list li{
width: 33.33%;
}
.htmegainstagram-column-5 .htmega-instragram ul.htmega-instagram-list li{
width: 20%;
}
.htmegainstagram-column-6 .htmega-instragram ul.htmega-instagram-list li{
width: 16.66%;
} a.instagram_follow_btn {
background: #f75876 none repeat scroll 0 0;
border: 0 none;
color: #fff;
display: inline-block;
font-size: 14px;
font-weight: 500;
margin-top: 70px;
text-decoration: none;
transition: all 0.4s ease-in-out 0s;
}
a.instagram_follow_btn:hover {
opacity: 0.7;
color: #ffffff;
}
a.instagram_follow_btn i {
background: #e4405f;
width: 42px;
height: 43px;
line-height: 42px;
font-size: 16px;
text-align: center;
}
a.instagram_follow_btn span {
padding: 0 16px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
height: 42px;
line-height: 42px;
}
a.instagram_follow_btn.possition-center {
position: absolute;
top: 50%;
transform: translateY(-50%) translateX(-50%);
left: 50%;
background: #ffffff;
border-radius: 6px;
color: #000000;
}
a.instagram_follow_btn.possition-center span {
padding: 0 24px;
} .htmega-instragram ul.htmega-instagram-list {
margin: 0 -5px;
overflow: hidden;
display: flex;
flex-flow: row wrap;
}
.htmega-instragram ul.htmega-instagram-list li > a {
display: block;
position: relative;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip {
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
z-index: 3;
height: 100%;
transition: 0.4s ease-in-out;
opacity: 0;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip::before {
position: absolute;
background-color: rgba(0, 0, 0, 0.7);
content: "";
left: 10px;
top: 10px;
bottom: 10px;
right: 10px;
z-index: -1;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-like-comment {
padding: 30px 0;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-like-comment p {
color: #fff;
margin: 0 15px;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn a{
display: inline-block;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn a i {
color: #fff;
font-size: 43px;
}
.htmega-instragram ul.htmega-instagram-list li:hover .instagram-clip {
opacity: 1;
}
.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .zoom_icon{
display: inline-block;
} .htmega-instragram-style-2 ul.htmega-instagram-list li{
padding: 0;
margin: 0;
}
.htmega-instragram-style-2 ul.htmega-instagram-list{
margin: 0;
margin-left: -15px;
margin-right: -15px;
}
.htmega-instragram-style-2 ul.htmega-instagram-list li {
margin: 0;
margin-bottom: 0;
overflow: hidden;
}
.htmega-instragram-style-2 ul.htmega-instagram-list li a img {
transition: 0.3s ease-out;
transition-property: opacity, transform, filter;
width: 100%;
}
.htmega-instragram-style-2 ul.htmega-instagram-list li:hover a img {
transform: scale3d(1.1, 1.1, 1);
opacity: 0.8;
}
.htmega-instragram .slick-arrow {
position: absolute;
top: 45%;
left: -20px;
z-index: 2;
width: 30px;
height: 30px;
border-radius: 100%;
background: #f75876;
border: 1px solid #f75876;
color: #fff;
text-align: center;
transition: 0.4s ease-in-out;
opacity: 0;
padding: 0;
line-height: 1;
}
.htmega-instragram .htmega-carosul-next.slick-arrow {
left: auto;
right: -20px;
}
.htmega-instragram ul.htmega-instagram-list:hover .slick-arrow {
opacity: 1;
left: 0;
}
.htmega-instragram ul.htmega-instagram-list:hover .htmega-carosul-next.slick-arrow {
opacity: 1;
right: 0;
left: auto;
}
.htmega-instragram .slick-dots {
position: relative;
bottom: 0;
}
.htmega-instragram .slick-dots li {
border-radius: 100%;
display: inline-block;
height: 15px;
margin: 0 3px !important;
width: 15px !important;
background: #f75876;
float: none !important;
}
.htmega-instragram .slick-dots li button{
padding: 0;
}
.htmega-instragram .slick-dots li button::before{
display: none;
}
.htmega-instragram .slick-dots li.slick-active{
background: #000;
}
.htmega-instragram-style-2 a.instagram_follow_btn{
position: absolute;
top: 50%;
transform: translateY(-50%) translateX(-50%);
left: 50%;
background: #ffffff;
border-radius: 6px;
color: #000000;
margin-top: 0;
}
.htmega-instragram-style-2 a.instagram_follow_btn i{
display: none;
} .htmega-instragram-style-3 ul li {
position: relative;
}
.htmega-instragram-style-3 ul li a img {
transition: all .15s ease-in-out;
}
.htmega-instragram-style-3 ul li .instagram-clip {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 50px;
background: rgba(255, 64, 95, 0.9);
display: flex;
justify-content: space-around;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
transition: all .15s ease-in-out;
color: #FFF;
height: 50px !important;
line-height: 50px;
}
.htmega-instragram-style-3 ul li .instagram-clip::before{
display: none;
}
.htmega-instragram-style-3 ul li .instagram-clip .instagram-like-comment {
display: flex;
align-items: center;
padding: 0 !important;
}
.htmega-instragram-style-3 ul li .instagram-clip .instagram-like-comment p {
margin: 0 15px;
}
.htmega-instragram-style-3 ul li:hover .instagram-clip {
-webkit-transform: translateX(0);
transform: translateX(0);
}
.htmega-instragram-style-3 ul li:hover a img {
opacity: .7;
-webkit-transform: scale(1.15) translate3d(0, 0, 0);
transform: scale(1.15) translate3d(0, 0, 0);
}
.htmega-instragram-style-3 ul.htmega-instagram-list li .instagram-clip .htmega-content{
display: flex;
align-items: center;
}
.htmega-instragram-style-3 ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn{
position: static;
transform: translateY(0);
display: flex;
}
.htmega-instragram-style-3 ul.htmega-instagram-list li .instagram-clip .htmega-content .zoom_icon {
display: flex;
} .htmega-instragram-style-4 ul.htmega-instagram-list li {
margin: 0;
margin-bottom: 0;
overflow: hidden;
width: 25%;
}
.htmega-instragram-style-4 ul.htmega-instagram-list li a img {
transition: 0.3s ease-out;
transition-property: opacity, transform, filter;
width: 100%;
}
.htmega-instragram-style-4 ul.htmega-instagram-list li:hover a img {
transform: scale3d(1.2, 1.2, 1);
opacity: 0.6;
} .htmega-switcher-btn {
text-align: center;
}
.htmega-switcher-nav {
display: inline-block !important;
background: #eeeeee;
border-radius: 30px;
overflow: hidden;
}
.htmega-switcher-nav a {
display: inline-block;
color: #444444;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
padding: 18px 32px;
z-index: 1;
position: relative;
font-family: "Montserrat", sans-serif;
}
.htmega-switcher-nav a i{
margin-right: 5px;
}
.htmega-switcher-nav svg {
width: 20px;
float: left;
}
.htmega-switcher-nav a::before {
height: 100%;
top: 0;
z-index: 0;
content: '';
width: 0;
position: absolute;
left: 0;
transition: all 300ms ease-out;
z-index: -1;
}
.htmega-switcher-nav a.htb-active {
color: #ffffff;
}
.htmega-switcher-nav a.htb-active::before {
width: 100%;
background-color: #ed552d;
}
.htmega-switcher-toggle-title {
text-transform: uppercase;
font-weight: 600;
}
.htmega-switcher-toggle{
margin: 20px 0 30px 0;
text-align: center;
font-weight: 400;
}
.htmega-switch-toggle{
position: relative;
display: inline-block;
width: 60px;
height: 34px;
margin: 0 15px 0 15px;
line-height: 36px;
}
.htmega-switcher-toggle i{
margin-right: 7px;
}
.htmega-switche-toggle-slider{
border-radius: 34px;
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
input:checked+.htmega-switche-toggle-slider {
background-color: #2196F3;
}
input:checked+.htmega-switche-toggle-slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
.htmega-switche-toggle-slider:before {
position: absolute;
border-radius: 50%;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: #fff;
-webkit-transition: .4s;
transition: .4s;
}
.htmega-single-toggle-switch.toggle-tab-pane{
display: none;
}
.htmega-single-toggle-switch.toggl-active{
display: block;
} .htmega-register-wrapper form input{
padding: 0 15px;
width: 100%;
background: transparent;
border-radius: 0;
}
.htmega-register-wrapper .alert {
margin:0 10px 15px;
}
.htmega-user-login {
padding: 10px;
text-align: center;
}
.htmega-register-wrapper label{
display: block;
} .htmega-register-style-1 {
background: #fa4a79;
padding-bottom: 40px;
}
.htmega-register-style-1 form {
padding: 0 30px 0;
}
.htmega-register-style-1 form textarea{
background: #fb5c87 none repeat scroll 0 0;
border-radius: 0;
border: 1px solid #ffffff;
}
.htmega-register-style-1 form input {
background: #fb5c87 none repeat scroll 0 0;
border: 1px solid #ffffff;
border-radius: 0;
color: #ffffff;
font-family: "Montserrat",sans-serif;
font-size: 12px;
font-weight: 300;
height: 50px;
margin-bottom: 30px;
}
.htmega-register-style-1 form input[type="submit"] {
width: auto;
margin: 0 auto;
text-align: center;
background: #fff;
font-weight: 600;
color: #fa4a79;
margin-top: 10px;
font-size: 14px;
padding: 0 47px;
transition: 0.5s;
}
.htmega-register-style-1 form input[type="submit"]:hover {
opacity: 0.7;
}
.htmega-register-style-1 form input::-webkit-input-placeholder {
color: #ffffff;
}
.htmega-register-style-1 form input::-moz-placeholder {
color: #ffffff;
}
.htmega-register-style-1 form input:-ms-input-placeholder {
color: #ffffff;
}
.htmega-register-style-1 form input:-moz-placeholder {
color: #ffffff;
} .htmega-register-style-2 {
background: #7ca7f9;
padding: 0 80px 50px;
}
.htmega-register-style-2 form label {
color: #666666;
font-weight: 400;
font-size: 12px;
margin-bottom: 8px;
font-family: "Montserrat", sans-serif;
}
.htmega-register-style-2 form input {
border: 1px solid #ffffff;
padding: 0 20px;
color: #fff;
margin-bottom: 30px;
font-weight: 300;
font-family: "Montserrat", sans-serif;
}
.htmega-register-style-2 form input[type="submit"] {
width: auto;
text-align: center;
background: #fff;
font-weight: 600;
color: #0056ff;
font-size: 14px;
padding: 0 47px;
transition: 0.5s;
height: 50px;
margin-top: 10px;
margin-bottom: 0;
}
.htmega-register-style-2 form input[type="submit"]:hover {
opacity: 0.7;
}
.htmega-register-style-2 form input::-webkit-input-placeholder {
color: #ffffff;
}
.htmega-register-style-2 form input::-moz-placeholder {
color: #ffffff;
}
.htmega-register-style-2 form input:-ms-input-placeholder {
color: #ffffff;
}
.htmega-register-style-2 form input:-moz-placeholder {
color: #ffffff;
} .htmega-register-style-3 {
padding: 0 56px 100px;
text-align: center;
}
.htmega-register-style-3 form .input_box {
display: flex;
margin-bottom: 30px;
align-items: center;
}
.htmega-register-style-3 form .input_box i {
background: rgba(255, 255, 255, 0.3);
height: 70px;
padding: 0 20px;
font-weight: 400;
line-height: 70px;
color: #ffffff;
text-align: center;
font-size: 34px;
border-radius: 8px 0 0 8px;
}
.htmega-register-style-3 form .input_box input {
background: rgba(255, 255, 255, 0.3);
border: 0 none;
margin-left: 2px;
height: 70px;
border-radius: 0 8px 8px 0;
padding: 0 50px;
color: #ffffff;
font-size: 16px;
font-family: "Poppins", sans-serif;
}
.htmega-register-style-3 form .input_box input[type="submit"] {
border: 3px solid #fff;
border-radius: 8px;
color: #fff;
box-sizing: border-box;
height: 90px;
font-size: 24px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 51px;
font-family: "Montserrat", sans-serif;
transition: 0.5s;
}
.htmega-register-style-3 form input[type="submit"] {
border: 3px solid #fff;
border-radius: 8px;
color: #fff;
box-sizing: border-box;
height: 90px;
font-size: 24px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 51px;
font-family: "Montserrat", sans-serif;
}
.htmega-register-style-3 form input[type="submit"]:hover {
background: #ffffff !important;
color: #18012c;
}
.htmega-register-style-3 .login a {
border: 3px solid #ffffff;
display: block;
height: 90px;
line-height: 90px;
color: #fff;
font-size: 24px;
font-weight: 600;
border-radius: 8px;
margin-top: 56px;
transition: 0.5s;
font-family: "Montserrat", sans-serif;
text-decoration: none;
}
.htmega-register-style-3 .login a:hover {
background: #ffffff;
color: #18012c;
}
.htmega-register-style-3 .separator span {
color: #ffffff;
font-size: 24px;
font-weight: 500;
padding: 0 24px;
background: transparent;
position: relative;
z-index: 99;
display: block;
font-family: "Montserrat", sans-serif;
}
.htmega-register-style-3 .separator span::before {
content: "";
width: 130px;
height: 1px;
left: 0;
top: 50%;
background: #fff;
position: absolute;
display: block;
}
.htmega-register-style-3 .separator span::after {
background: #fff;
position: absolute;
content: "";
width: 130px;
height: 1px;
right: 0;
top: 50%;
}
.htmega-register-style-3 form input[type="submit"]:hover {
background: #fff;
color: #18012c;
}
.htmega-register-style-3 form input::-webkit-input-placeholder {
color: #ffffff;
}
.htmega-register-style-3 form input::-moz-placeholder {
color: #ffffff;
}
.htmega-register-style-3 form input:-ms-input-placeholder {
color: #ffffff;
}
.htmega-register-style-3 form input:-moz-placeholder {
color: #ffffff;
} .htmega-register-style-4 {
padding: 0px 40px;
}
.htmega-register-style-4 form input {
margin-bottom: 17px;
border: 0 none;
border-bottom: 1px solid #687ea5;
padding: 0;
color: #687ea5;
font-size: 12px;
font-weight: 300;
font-family: "Montserrat", sans-serif;
}
.htmega-register-style-4 form input[type="submit"] {
background: #0056ff;
color: #fff;
width: auto;
height: 50px;
padding: 0 40px;
border: 0 none;
font-size: 14px;
text-transform: uppercase;
border-radius: 25px;
transition: 0.5s;
margin-top: 10px;
}
.htmega-register-style-4 form input[type="submit"]:hover {
opacity: 0.7;
}
.htmega-register-style-4 form input::-webkit-input-placeholder {
color: #687ea5;
}
.htmega-register-style-4 form input::-moz-placeholder {
color: #687ea5;
}
.htmega-register-style-4 form input:-ms-input-placeholder {
color: #687ea5;
}
.htmega-register-style-4 form input:-moz-placeholder {
color: #687ea5;
} .register-container {
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 50px 70px;
}
.register-top {
display: flex;
justify-content: space-between;
margin-bottom: 33px;
align-items: center;
}
.register-top .register-top-left h2 {
color: #000000;
font-size: 16px;
margin: 0;
font-weight: 600;
}
.register-top .register-top-right {
display: flex;
justify-content: space-between;
}
.register-top .register-top-right p {
margin: 0;
color: #b1b1b1;
margin-right: 30px;
font-size: 14px;
}
.register-top .register-top-right a {
background: #eff1f2;
height: 30px;
line-height: 30px;
color: #000000;
padding: 0 14px;
transition: 0.5s;
}
.register-top .register-top-right a:hover {
background: #18012c;
color: #ffffff;
}
.htmega-register-style-5 {
text-align: center;
}
.htmega-register-style-5 form input {
border: 1px solid #f1f1f1;
height: 45px;
margin-bottom: 30px;
padding: 0 20px;
color: #757575;
font-weight: 300;
font-size: 12px;
}
.htmega-register-style-5 form input[type="submit"] {
background: #0056ff;
width: auto;
color: #fff;
height: 48px;
padding: 0 40px;
color: #ffffff;
font-size: 14px;
font-weight: 600;
margin-bottom: 50px;
transition: 0.5s;
margin-top: 12px;
}
.htmega-register-style-5 form input[type="submit"]:hover {
background: #18012c;
color: #ffffff;
}
.htmega-register-style-5 form input::-webkit-input-placeholder {
color: #757575;
}
.htmega-register-style-5 form input::-moz-placeholder {
color: #757575;
}
.htmega-register-style-5 form input:-ms-input-placeholder {
color: #757575;
}
.htmega-register-style-5 form input:-moz-placeholder {
color: #757575;
}
.htmega-register-style-5 form input:focus {
border: 1px solid #18012c;
}
.htmega-register-style-4 form input:focus {
border: 0 none;
border-bottom: 1px solid #18012c;
}  .htmega-tab-nav a {
color: #575757;
font-size: 14px;
font-weight: 500;
padding: 0 16px;
height: 34px;
background: transparent;
line-height: 34px;
transition: 0.5s;
margin: 0 9px;
margin-bottom: 20px;
}
.htmega-tab-nav svg {
width: 20px;
float: left;
margin-top: 5px;
}
.htmega-tab-nav a i,.htmega-tab-nav a svg{
margin-right: 10px;
}
.htmega-tab-nav a.htb-active {
background: #575757;
color: #fff;
}
.tab-content .htmega-single-tab {
margin-top: 20px;
}
.htmega-tab-image{
overflow: hidden;
} .htmega-tab-menu-style-2 a {
color: #575757;
font-weight: 600;
font-size: 14px;
margin: 0 25px;
margin-bottom: 20px;
padding: 0;
padding-bottom: 10px;
position: relative;
background: transparent;
}
.htmega-tab-menu-style-2 a.htb-active{
background: transparent;
color: #575757;
}
.htmega-tab-menu-style-2 a::before {
position: absolute;
content: "";
left: 0;
height: 1px;
width: 0;
bottom: 0;
background: #575757;
transition: 0.4s ease-in-out;
}
.htmega-tab-menu-style-2 a.htb-active::before {
width: 100%;
} .htmega-tab-menu-style-3 {
border-bottom: 1px solid #e3e3e3;
margin-bottom: 18px;
}
.htmega-tab-menu-style-3 a {
color: #575757;
font-size: 14px;
font-weight: 600;
padding: 0;
padding: 0 24px;
background: #e3e3e3;
height: 40px;
line-height: 39px;
margin: 0 10px;
margin-bottom: -1px;
border: 1px solid;
transition: 0.4s ease-in-out;
border-color: #e3e3e3 #e3e3e3 #ffffff;
}
.htmega-tab-menu-style-3 a.htb-active {
background: transparent;
border: 1px solid;
border-color: #e3e3e3 #e3e3e3 #ffffff;
color: #575757;
}
.htmega-tab-style-3 .htmega-single-tab p {
color: #494849;
font-size: 16px;
line-height: 28px;
margin-top: 23px;
} .htmega-tab-menu-style-4 a {
background: #575757;
padding: 0 25px;
height: 40px;
line-height: 40px;
border-radius: 5px;
color: #ffffff;
margin: 0 10px;
margin-bottom: 20px;
font-weight: 600;
font-size: 14px;
}
.htmega-tab-menu-style-4 a.htb-active {
background: #ed552d;
} .htmega-tab-style-5 {
align-items: center;
display: flex;
flex-wrap: wrap;
}
.htmega-tab-style-5 .htmega-tab-nav{
flex: 0 0 25%;
max-width: 25%;
padding-left: 15px;
padding-right: 0px;
}
.htmega-tab-style-5 .htmega-tab-content-area {
flex: 0 0 75%;
max-width: 75%;
padding-left: 15px;
padding-right: 15px;
}
.htmega-tab-menu-style-5 {
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
}
.htmega-tab-style-5 .htmega-tab-content-area{
border-left: 1px solid #e3e3e3;
}
.htmega-tab-menu-style-5 {
display: block;
}
.htmega-tab-menu-style-5 a {
border-left: 1px solid #e3e3e3;
border-right: 1px solid transparent;
border-top: 1px solid #e3e3e3;
color: #575757;
font-weight: 500;
margin: 0;
padding: 0;
text-align: center;
transition: all 0.4s ease-in-out 0s;
}
.htmega-tab-menu-style-5 a:last-child {
border-bottom: 1px solid #e3e3e3;
}
.htmega-tab-menu-style-5 a.htb-active {
background: #e3e3e3;
color: #575757;
}
.htmega_tab_service .htmega-service-style-7:hover .content h4, .htmega_tab_service .htmega-service-style-7:hover .content p, .htmega_tab_service .htmega-service-style-7:hover .icon i {
color: #8f8f8f !important;
}
.htmega_tab_service .htmega-service-style-7:hover .icon i{
color: #ed552d !important;
}
.htmega_tab_service .htmega-service-style-7::before{
display: none;
} .htmega-process-area {
background-size: 80% auto;
}
.htmega-column {
display: flex;
flex-wrap: wrap;
}
.htmega-column .htmega-single-process-area{
padding-right: 15px;
padding-left: 15px;
}
.htmega-process-column-1 .htmega-single-process-area{
flex: 0 0 100%;
max-width: 100%;
}
.htmega-process-column-2 .htmega-single-process-area{
flex: 0 0 50%;
max-width: 50%;
}
.htmega-process-column-3 .htmega-single-process-area{
flex: 0 0 33.333%;
max-width: 33.333%;
}
.htmega-process-column-4 .htmega-single-process-area{
flex: 0 0 25%;
max-width: 25%;
}
.htmega-process-column-5 .htmega-single-process-area{
flex: 0 0 20%;
max-width: 20%;
} .htmega-single-process {
text-align: center;
}
.htmega-single-process .icon {
width: 116px;
height: 116px;
margin: 0 auto;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
line-height: 116px;
text-align: center;
border-radius: 100%;
}
.htmega-single-process .htmega-content h4 {
color: #555555;
font-size: 19px;
font-weight: 600;
margin: 0;
margin-top: 36px;
} .htmega-process-style-2 {
text-align: center;
}
.htmega-process-style-2 .htmega-number {
margin-bottom: 24px;
}
.htmega-process-style-2 .htmega-number span {
width: 70px;
height: 70px;
background: #fff;
display: inline-block;
line-height: 70px;
font-size: 24px;
font-weight: 600;
color: #5a5a5a;
border-radius: 14px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.htmega-process-style-2 .htmega-content h4 {
color: #383838;
font-size: 18px;
margin-bottom: 18px;
}
.htmega-process-style-2 .htmega-content p {
color: #494849;
font-size: 14px;
line-height: 28px;
padding: 0 10%;
margin: 0;
}
.htmega-process-style-2 .htmega-number {
position: relative;
}
.htmega-process-style-2 .htmega-number::before {
position: absolute;
content: "";
background-image: url();
right: -129px;
top: 50%;
width: 236px;
height: 2px;
}
.htmega-process-style-2 .htmega-single-process-area:last-child .htmega-number::before {
display: none;
} .htmega-process-style-3 {
position: relative;
margin-top: 30px;
}
.htmega-process-style-3::before {
content: "";
position: absolute;
left: 50%;
top: 0;
width: 2px;
background: #e51515;
height: 100%;
margin-left: -1px;
}
.htmega-process-style-3 .htmega-single-process {
display: -webkit-box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
justify-content: space-between;
padding: 30px 0;
}
.htmega-process-style-3 .htmega-single-process .icon {
align-self: baseline;
box-shadow: none;
height: auto;
line-height: 1;
padding: 0 30px;
position: relative;
text-align: right;
width: 50%;
background: transparent;
}
.htmega-process-style-3 .htmega-single-process .icon::before {
position: absolute;
content: "";
right: 0px;
top: 50%;
margin-top: -15px;
height: 15px;
width: 15px;
border-top: 10px solid transparent;
border-right: 15px solid red;
border-bottom: 10px solid transparent;
border-left: 15px solid transparent;
}
.htmega-process-style-3 .htmega-single-process .icon img {
display: inline-block;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
}
.htmega-process-style-3 .htmega-content {
padding-left: 30px;
text-align: left;
width: 50%;
}
.htmega-process-style-3 .htmega-content h4 {
font-size: 22px;
font-weight: 500;
color: #494849;
margin-bottom: 15px;
}
.htmega-process-style-3 .htmega-content p {
font-size: 14px;
color: #494849;
line-height: 28px;
}
.htmega-process-style-3 .htmega-single-process.process-reverse {
-webkit-box-direction: reverse;
-webkit-box-orient: horizontal;
-webkit-flex-direction: row-reverse;
-moz-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.htmega-process-style-3 .htmega-single-process.process-reverse .icon {
text-align: left;
}
.htmega-process-style-3 .htmega-single-process.process-reverse .icon::before {
right: auto;
left: 0;
border-left: 15px solid red;
border-right: 15px solid transparent;
}
.htmega-process-style-3 .htmega-single-process.process-reverse .htmega-content {
padding-left: 0;
padding-right: 30px;
text-align: right;
} .htmega-process-style-4 {
background-position: center center;
background-repeat: no-repeat;
height: 570px;
position: relative;
width: 590px;
}
.htmega-process-style-4 .htmega-single-process-area{
align-items: center;
background: #52b6bc none repeat scroll 0 0;
border-radius: 100%;
display: flex;
height: 190px;
justify-content: center;
text-align: center;
width: 190px;
position: absolute;
}
.htmega-process-style-4 .htmega-single-process-area:nth-child(1) {
left: 0;
margin: auto;
right: 0;
}
.htmega-process-style-4 .htmega-single-process-area:nth-child(2) {
right: 0;
top: 190px;
}
.htmega-process-style-4 .htmega-single-process-area:nth-child(3) {
bottom: 0;
left: 0;
margin: auto;
right: 0;
}
.htmega-process-style-4 .htmega-single-process-area:nth-child(4) {
left: 0;
top: 190px;
}
.htmega-process-style-4 .htmega-single-process .icon {
box-shadow: none;
height: auto;
line-height: 1;
opacity: 0;
position: absolute;
right: 0;
top: -36px;
transition: all 0.3s ease 0s;
width: auto;
background: transparent;
}
.htmega-process-style-4 .htmega-single-process .icon img {
border: 3px solid #52b6bc;
border-radius: 100%;
}
.htmega-process-style-4 .htmega-content p {
color: #fff;
font-family: 'Courgette', cursive;
font-size: 20px;
line-height: 26px;
margin: 0;
padding: 0 12px;
}
.htmega-process-style-4 .htmega-single-process.open .icon {
opacity: 1;
}
.htmega-process-style-4 .htmega-single-process-area:hover .icon {
opacity: 1;
} .htmega-modal-btn button {
background: #0056ff;
border: 0 none;
color: #fff;
border-radius: 8px;
height: 58px;
line-height: 58px;
color: #ffffff;
font-size: 16px;
font-weight: 600;
font-family: "Montserrat", sans-serif;
transition: 0.4s;
padding-top: 0;
padding-bottom: 0;
}
.htmega-modal-btn svg {
width: 20px;
margin-right: 10px;
margin-top: 16px;
float: left;
}
.htmega-modal-area .htb-modal-header h5{
margin: 0;
}
.htmega-modal-area .htb-modal-footer {
justify-content: space-between;
align-items: center;
} .flipbox-icon{
display: inline-block;
}
.flipbox-icon svg {
width: 20px;
}
.htmega-flip-box-front,.htmega-flip-box-back{
background-color: #f3f3f3;
}
.htmega-flip-box-animation-right .htmega-flip-box-front {
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
background-color: #f3f3f3;
}
.htmega-flip-box-animation-right:hover .htmega-flip-box-front {
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-o-transform: rotateY(-180deg);
-ms-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
.htmega-flip-box-animation-right .htmega-flip-box-back {
background: rgba( 237, 85, 45, 0.8 );
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.htmega-flip-box-animation-right:hover .htmega-flip-box-back {
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
transform-style: preserve-3d;
}
.htmega-flip-box-animation-left .htmega-flip-box-front,.htmega-flip-box-animation-left:hover .htmega-flip-box-back {
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
background-color: #f3f3f3;
}
.htmega-flip-box-animation-left:hover .htmega-flip-box-front {
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.htmega-flip-box-animation-left .htmega-flip-box-back {
background: rgba( 237, 85, 45, 0.8 );
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-o-transform: rotateY(-180deg);
-ms-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
.htmega-flip-box-animation-top .htmega-flip-box-front,.htmega-flip-box-animation-top:hover .htmega-flip-box-back {
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
transform: rotateX(0deg);
}
.htmega-flip-box-animation-top:hover .htmega-flip-box-front {
-webkit-transform: rotateX(-180deg);
-moz-transform: rotateX(-180deg);
-o-transform: rotateX(-180deg);
-ms-transform: rotateX(-180deg);
transform: rotateX(-180deg);
}
.htmega-flip-box-animation-top .htmega-flip-box-back {
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
transform: rotateX(180deg);
z-index: 1;
}
.htmega-flip-box-animation-bottom .htmega-flip-box-front,.htmega-flip-box-animation-bottom:hover .htmega-flip-box-back {
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
transform: rotateX(0deg);
}
.htmega-flip-box-animation-bottom:hover .htmega-flip-box-front {
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
transform: rotateX(180deg);
}
.htmega-flip-box-animation-bottom .htmega-flip-box-back {
-webkit-transform: rotateX(-180deg);
-moz-transform: rotateX(-180deg);
-o-transform: rotateX(-180deg);
-ms-transform: rotateX(-180deg);
transform: rotateX(-180deg);
z-index: 1;
}
.htmega-flip-box-area .flp-btn {
display: inline-block;
margin-top: 20px;
}
.htmega-flip-box-area .flp-btn a {
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-size: 14px;
display: inline-block;
border-bottom: 1px solid #ffffff;
text-decoration: none;
} .htmega-flip-box-area {
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
-webkit-transform: perspective(1000px);
-moz-transform: perspective(1000px);
-ms-transform: perspective(1000px);
transform: perspective(1000px);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
transform-style: preserve-3d;
position: relative;
height: 380px;
line-height: 1;
}
.htmega-flip-box-front,
.htmega-flip-box-back {
width: 100%;
height: 100%;
}
.htmega-flip-box-front,.htmega-flip-box-back  {
background-size: cover;
background-position: center center;
-ms-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
-webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
overflow: hidden;
position: absolute;
top: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform-style: preserve-3d;
z-index: 1;
}
.front-container,.back-container {
padding: 40px;
text-align: center;
position: relative;
top: 50%;
-ms-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
-webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
-webkit-transform: translateY(-50%) translateX(0px) scale(1);
-ms-transform: translateY(-50%) translateX(0px) scale(1);
transform: translateY(-50%) translateX(0px) scale(1);
transform-style: preserve-3d;
z-index: 2;
height: 100%;
}
.htmega-flip-box-area .back-container {
padding: 40px;
text-align: center;
position: relative;
top: 50%;
z-index: 2;
}
.htmega-flip-box-area .front-container span {
color: #636363;
font-size: 50px;
}
.front-container h2 {
color: #4a4a4a;
font-size: 22px;
font-weight: 400;
margin: 0;
margin-top: 22px;
}
.back-container span {
color: #efefef;
font-size: 50px;
display: block;
margin-bottom: 28px;
}
.back-container h2 {
color: #ffffff;
font-size: 22px;
font-weight: 400;
margin-bottom: 18px;
}
.back-container p {
color: #ffffff;
font-size: 14px;
line-height: 26px;
margin: 0;
}
.htmega-flip-box-back {
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.htmega-flip-overlay {
display: block;
background-color: transparent;
width: 100%;
height: 100%;
position: absolute;
top: 0;
} .htmega-flip-box-style-2 .htmega-flip-box-back span,.htmega-flip-box-style-2 .htmega-flip-box-front span {
margin-bottom: 26px;
display: inline-block;
padding-bottom: 30px;
position: relative;
}
.htmega-flip-box-style-2 .htmega-flip-box-back span i,.htmega-flip-box-style-2 .htmega-flip-box-front span i {
color: #fff;
font-size: 70px;
}
.htmega-flip-box-style-2 .htmega-flip-box-back span::before,.htmega-flip-box-style-2 .htmega-flip-box-front span::before {
position: absolute;
content: "";
background: #fff;
width: 30px;
height: 1px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.htmega-flip-box-style-2 .htmega-flip-box-back span::after,.htmega-flip-box-style-2 .htmega-flip-box-front span::after {
position: absolute;
content: "";
background: #fff;
width: 20px;
height: 1px;
bottom: 6px;
left: 50%;
transform: translateX(-50%);
}
.htmega-flip-box-style-2 .htmega-flip-box-back h2,.htmega-flip-box-style-2 .htmega-flip-box-front h2 {
color: #ffffff;
font-size: 16px;
margin: 0;
font-weight: 300;
text-transform: uppercase;
}
.htmega-flip-box-style-2 .htmega-flip-box-back p {
margin: 0;
color: #ffffff;
font-size: 14px;
line-height: 24px;
margin-top: 15px;
font-family: "Montserrat", sans-serif;
font-weight: 300;
} .htmega-tooltip span {
background: #0056ff none repeat scroll 0 0;
border: 0 none;
border-radius: 8px;
color: #fff;
cursor: pointer;
display: inline-block;
font-family: "Montserrat",sans-serif;
font-size: 14px;
padding: 14px 16px;
text-align: center;
transition: 0.4s;
}
.htmega-tooltip span a{
color: #fff;
text-decoration: none;
} .tooltip-inner {
padding: 9px 15px;
background-color: #404040;
} .bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
border-left-color: #404040 !important;
}
.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
border-right-color: #404040 !important;
}
.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
border-top-color: #404040 !important;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
border-bottom-color: #404040 !important;
} .bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
top: -10px !important;
}
.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
top: 10px !important;
}
.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
left: 10px !important;
}
.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
left: -10px !important;
} .htb-popover-header {
margin-top: 0;
} .htmega-popover span {
background: #0056ff;
border: 0 none;
color: #fff;
padding: 20px 40px;
border-radius: 7px;
font-weight: 600;
font-size: 16px;
transition: 0.5s;
font-family: "Montserrat", sans-serif;
display: inline-block;
cursor: pointer;
}
.htmega-popover span:hover {
background: #18012c;
}
.htmega-popover span a{
text-decoration: none;
}
.htmega-popover svg {
width: 25px;
} .popover {
max-width: 330px;
border: 1px solid #e0e0e0;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.popover .popover-body {
padding: 22px 25px;
color: #262626;
font-size: 13px;
}
.popovers-content.text-center {
padding-top: 14px;
} .bs-popover-auto[x-placement^=top],
.bs-popover-top {
top: -12px !important;
}
.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom {
top: 12px !important;
}
.bs-popover-auto[x-placement^=right],
.bs-popover-right {
left: 12px !important;
}
.bs-popover-auto[x-placement^=left],
.bs-popover-left {
left: -12px !important;
} .htmega-toggle-button a{
transition: all 600ms ease-in-out;
-webkit-transition: all 600ms ease-in-out;
-moz-transition: all 600ms ease-in-out;
-o-transition: all 600ms ease-in-out;
color: #3b3b3b;
font-family: "Montserrat", sans-serif;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
cursor: pointer;
display: inline-block;
}
.htmega-toggle-button svg {
width: 20px;
}
.htmega-toggle-area .htmega-toggle-button a i,.htmega-toggle-area .htmega-toggle-button a svg {
padding-left: 5px;
}
.htmega-toggle-button a.opened_btn,.open a.normal_btn{
display: none;
}
.htmega-toggle-button.open a.opened_btn{
display: inline-block;
}
.image_100 .htmega-lightboxthumb img{
width: 100%;
} .htmega-dropcaps-inner p {
color: #434343;
font-size: 16px;
line-height: 28px;
font-weight: 500;
margin: 0;
}
.htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-inner:first-of-type:first-letter {
color: #d6d6d6;
float: left;
font-size: 60px;
margin-right: 20px;
margin-bottom: 5px;
border: 2px solid #d6d6d6;
padding: 15px;
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-style: italic;
margin-top: 9px;
} .htmega-dropcaps-style-2 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-2 .htmega-dropcaps-inner:first-of-type:first-letter {
color: #18012c;
float: left;
font-size: 60px;
margin-right: 15px;
margin-bottom: 8px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
margin-top: 17px;
border: none;
padding: 0;
font-style: normal;
} .htmega-dropcaps-style-3 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-3 .htmega-dropcaps-inner:first-of-type:first-letter {
color: #ed552d;
float: left;
font-size: 90px;
margin-right: 15px;
margin-bottom: 13px;
font-family: "Poppins",sans-serif;
font-weight: 500;
margin-top: 20px;
text-decoration: line-through;
line-height: 28px;
border: 0;
padding: 0;
font-style: normal;
} .htmega-dropcaps-style-4 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-4 .htmega-dropcaps-inner:first-of-type:first-letter {
color: #fff;
float: left;
font-size: 36px;
padding: 20px;
margin-top: 5px;
margin-left: 5px;
margin-right: 15px;
margin-bottom: 5px;
background: #ed552d;
border-radius: 50%;
font-size: normal;
border: none;
font-style: normal;
font-weight: 500;
} .htmega-dropcaps-style-5 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-5 .htmega-dropcaps-inner:first-of-type:first-letter {
color: white;
float: left;
font-size: 75px;
line-height: 60px;
padding: 20px 28px;
margin-top: 5px;
margin-left: 5px;
margin-right: 20px;
margin-bottom: 10px;
background: black;
border-radius: 50%;
border: 1px solid white;
box-shadow: 0px 0px 0px 5px black;
font-style: normal;
font-weight: 500;
} button.htmega-notify-button {
padding: 5px 42px;
border: 0 none;
color: #fff;
border-radius: 7px;
font-size: 14px;
background: #1abc9c;
transition: 0.4s;
height: inherit;
}
.alert {
position: relative;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
}
.alert-danger , .htmega-notify-button.alert-danger {
color: #721c24;
background-color: #bb2d3b;
border-color: #f5c6cb;
}
.alert-warning , .htmega-notify-button.alert-warning {
color: #856404;
background-color: #ffca2c;
border-color: #ffeeba;
}
.alert-success , .htmega-notify-button.alert-success {
color: #155724;
background-color: #198754;
border-color: #c3e6cb;
}
.alert-info , .htmega-notify-button.alert-info {
color: #0c5460;
background-color: #1abc9c;
border-color: #bee5eb;
}
.alert > i, 
.alert > svg{
position: relative;
}
.alert span.notify-message-content {
position: relative;
}  .htmega-marker-style-1 {
padding: 245px 0;
}
.htmega-marker-style-1 .htmega_image_pointer {
width: 36px;
height: 36px;
border-radius: 100%;
border: 3px solid #ed552d;
background-color: #fff;
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
line-height: 32px;
}
.htmega-marker-style-1 .htmega_image_pointer .htmega_pointer_box {
background: #fff;
width: 240px;
position: absolute;
top: 0;
right: 50%;
-webkit-transform: translate3d(50%, -100%, 0);
transform: translate3d(50%, -100%, 0);
border-radius: 5px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
z-index: 10;
padding: 20px;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
text-align: center;
}
.htmega-marker-style-1 .htmega_image_pointer .htmega_pointer_box h4 {
font-size: 20px;
margin-bottom: 7px;
}
.htmega-marker-style-1 .htmega_image_pointer .htmega_pointer_box p {
font-size: 13px;
line-height: 24px;
margin: 0;
}
.htmega-marker-style-1 .htmega_image_pointer:hover .htmega_pointer_box {
visibility: visible;
opacity: 1;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(-110%) translateX(50%);
transform: translateY(-110%) translateX(50%);
}
.htmega-marker-style-1 .htmega_image_pointer::before {
content: "\f129";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
font-family: FontAwesome;
color: #ed552d;
font-size: 18px;
width: 100%;
height: 100%;
}
.htmega-marker-style-1 .htmega_image_pointer {
position: absolute;
left: 66%;
top: 15%;
} .htmega-marker-style-2 {
padding: 245px 0;
}
.htmega-marker-style-2 .htmega_image_pointer {
width: 46px;
height: 46px;
border-radius: 100%;
border: 5px solid #dddddd;
background-color: #fff;
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
line-height: 38px;
}
.htmega-marker-style-2 .htmega_image_pointer .htmega_pointer_box {
background: #fff;
width: 240px;
position: absolute;
top: 0;
right: 50%;
-webkit-transform: translate3d(50%, -100%, 0);
transform: translate3d(50%, -100%, 0);
border-radius: 5px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
z-index: 10;
padding: 20px;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
text-align: center;
}
.htmega-marker-style-2 .htmega_image_pointer .htmega_pointer_box h4 {
font-size: 20px;
margin-bottom: 7px;
}
.htmega-marker-style-2 .htmega_image_pointer .htmega_pointer_box p {
font-size: 13px;
line-height: 24px;
margin: 0;
}
.htmega-marker-style-2 .htmega_image_pointer:hover .htmega_pointer_box {
visibility: visible;
opacity: 1;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(-110%) translateX(50%);
transform: translateY(-110%) translateX(50%);
}
.htmega-marker-style-2 .htmega_image_pointer::before {
content: "\f129";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
font-family: "FontAwesome";
color: #ed552d;
font-size: 18px;
width: 100%;
height: 100%;
transition: 0.4s ease-in-out;
}
.htmega-marker-style-2 .htmega_image_pointer:hover::before {
transform: translateX(-50%) translateY(-50%) rotate(47deg);
}
.htmega-marker-style-2 .htmega_image_pointer {
position: absolute;
left: 50%;
top: 26%;
} .htmega-marker-style-3 {
padding: 245px 0;
}
.htmega-marker-style-3 .htmega_image_pointer {
width: 46px;
height: 46px;
border-radius: 100%;
background-color: #000000;
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
line-height: 49px;
z-index: 2;
}
.htmega-marker-style-3 .htmega_image_pointer .htmega_pointer_box {
background: #000000;
width: 240px;
position: absolute;
top: 0;
right: 50%;
-webkit-transform: translate3d(50%, -100%, 0);
transform: translate3d(50%, -100%, 0);
border-radius: 5px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
z-index: 10;
padding: 20px;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
text-align: center;
}
.htmega-marker-style-3 .htmega_image_pointer .htmega_pointer_box h4 {
font-size: 20px;
margin-bottom: 7px;
color: #ffffff;
}
.htmega-marker-style-3 .htmega_image_pointer .htmega_pointer_box p {
font-size: 13px;
line-height: 24px;
margin: 0;
color: #ffffff;
}
.htmega-marker-style-3 .htmega_image_pointer:hover .htmega_pointer_box {
visibility: visible;
opacity: 1;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(-110%) translateX(50%);
transform: translateY(-110%) translateX(50%);
}
.htmega-marker-style-3 .htmega_image_pointer::before {
content: "\f067";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
font-family: FontAwesome;
color: #ffffff;
font-size: 18px;
width: 100%;
height: 100%;
transition: 0.4s ease-in-out;
}
.htmega-marker-style-3 .htmega_image_pointer::after {
position: absolute;
left: 2px;
background: #000;
content: "";
right: 2px;
top: 2px;
bottom: 2px;
border-radius: 100%;
border: 2px solid #fff;
z-index: -1;
}
.htmega-marker-style-3 .htmega_image_pointer:hover::before {
transform: translateX(-50%) translateY(-50%) rotate(47deg);
}
.htmega-marker-style-3 .htmega_image_pointer {
position: absolute;
left: 50%;
top: 26%;
} .htmega-marker-style-4 {
padding: 245px 0;
}
.htmega-marker-style-4 .htmega_image_pointer {
width: 46px;
height: 46px;
border-radius: 100%;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-image: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/css/img/bg/bg-image-12.jpg);
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
line-height: 38px;
border: 5px solid #d88d78;
z-index: 2;
}
.htmega-marker-style-4 .htmega_image_pointer .htmega_pointer_box {
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-image: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/css/img/bg/bg-image-12.jpg);
width: 240px;
position: absolute;
top: 0;
right: 50%;
-webkit-transform: translate3d(50%, -100%, 0);
transform: translate3d(50%, -100%, 0);
border-radius: 5px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
z-index: 10;
padding: 20px;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
text-align: center;
}
.htmega-marker-style-4 .htmega_image_pointer .htmega_pointer_box h4 {
font-size: 20px;
margin-bottom: 7px;
}
.htmega-marker-style-4 .htmega_image_pointer .htmega_pointer_box p {
font-size: 13px;
line-height: 24px;
margin: 0;
color: #18012c;
}
.htmega-marker-style-4 .htmega_image_pointer:hover .htmega_pointer_box {
visibility: visible;
opacity: 1;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(-110%) translateX(50%);
transform: translateY(-110%) translateX(50%);
}
.htmega-marker-style-4 .htmega_image_pointer::before {
content: "\f067";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
font-family: FontAwesome;
color: #d88d78;
font-size: 18px;
width: 100%;
height: 100%;
transition: 0.4s ease-in-out;
}
.htmega-marker-style-4 .htmega_image_pointer:hover::before {
transform: translateX(-50%) translateY(-50%) rotate(47deg);
}
.htmega-marker-style-4 .htmega_image_pointer {
position: absolute;
left: 83%;
top: 37%;
} .htmega-marker-style-5 {
padding: 245px 0;
}
.htmega-marker-style-5 .htmega_image_pointer {
width: 46px;
height: 46px;
border-radius: 4px;
background: #000;
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
line-height: 47px;
z-index: 2;
}
.htmega-marker-style-5 .htmega_image_pointer .effect-1 {
position: relative;
}
.htmega-marker-style-5 .htmega_image_pointer .effect-1::before,
.htmega-marker-style-5 .htmega_image_pointer .effect-1::after {
position: absolute;
top: 50%;
left: 50%;
display: block;
content: '';
border: 1px solid #f10;
border-radius: 50%;
-webkit-transform: scale(0.35) translateY(-50%) translateX(-50%);
-ms-transform: scale(0.35) translateY(-50%) translateX(-50%);
transform: scale(0.35) translateY(-50%) translateX(-50%);
opacity: 0;
-webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
}
.htmega-marker-style-5 .htmega_image_pointer .effect-1::before {
width: 32px;
height: 32px;
left: 50%;
top: 50%;
z-index: -1;
}
.htmega-marker-style-5 .htmega_image_pointer .effect-1::after {
width: 32px;
height: 32px;
z-index: -1;
border-color: rgba(255, 255, 255, 0.4);
-webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
}
.htmega-marker-style-5 .htmega_image_pointer .htmega_pointer_box {
background: #000000;
width: 240px;
position: absolute;
top: 0;
right: 50%;
-webkit-transform: translate3d(50%, -100%, 0);
transform: translate3d(50%, -100%, 0);
border-radius: 5px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
z-index: 10;
padding: 20px;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
text-align: center;
}
.htmega-marker-style-5 .htmega_image_pointer .htmega_pointer_box h4 {
font-size: 20px;
margin-bottom: 7px;
color: #fff;
}
.htmega-marker-style-5 .htmega_image_pointer .htmega_pointer_box p {
font-size: 13px;
line-height: 24px;
margin: 0;
color: #fff;
}
.htmega-marker-style-5 .htmega_image_pointer:hover .htmega_pointer_box {
visibility: visible;
opacity: 1;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(-110%) translateX(50%);
transform: translateY(-110%) translateX(50%);
}
.htmega-marker-style-5 .htmega_image_pointer::before {
content: "\f067";
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
font-family: FontAwesome;
color: #ffffff;
font-size: 18px;
width: 100%;
height: 100%;
transition: 0.4s ease-in-out;
}
.htmega-marker-style-5 .htmega_image_pointer:hover::before {
transform: translateX(-50%) translateY(-50%) rotate(47deg);
}
.htmega-marker-style-5 .htmega_image_pointer {
position: absolute;
left: 83%;
top: 37%;
} @-webkit-keyframes marker-ripple-animation {
0% {
-webkit-transform: translate3d(-50%, -50%, 0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translate3d(-50%, -50%, 0) scale(1.7);
opacity: 0;
}
}
@keyframes marker-ripple-animation {
0% {
transform: translate3d(-50%, -50%, 0) scale(1);
opacity: 1;
}
100% {
transform: translate3d(-50%, -50%, 0) scale(1.7);
opacity: 0;
}
} .htmega-inlinemenu-area ul{
list-style: none;
margin: 0;
padding: 0;
}
.htmega-mainmenu {
display: flex;
flex-flow: row wrap;
justify-content: center;
} .linemenu-nav ul li {
margin: 0 18px;
position: relative;
}
.linemenu-nav ul li a {
font-family: "Montserrat", sans-serif;
font-weight: 600;
font-size: 14px;
text-transform: inherit;
text-decoration: none;
color: #636363;
position: relative;
padding-bottom: 10px;
display: inline-block;
}
.htmega-inlinemenu-style-1 .linemenu-nav ul li a::before {
background: #d94f5c none repeat scroll 0 0;
bottom: 0;
content: "";
height: 2px;
left: 0;
position: absolute;
transform: scale3d(0, 5, 1);
transform-origin: 0 50% 0;
transition: transform 0.3s cubic-bezier(1, 0.68, 0.16, 0.9) 0s;
width: 100%;
}
.htmega-inlinemenu-style-1 .linemenu-nav ul > li:hover > a::before {
transform: scale3d(1, 1, 1);
}
.linemenu-nav ul > li:hover > a {
color: #d94f5c;
} .htmega-inlinemenu-style-2 .linemenu-nav ul li{
margin: 0;
}
.htmega-inlinemenu-style-2 .linemenu-nav ul li a::before, .htmega-inlinemenu-style-2 .linemenu-nav ul li a::after {
border: 2px solid #ffffff;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
transition: transform 0.2s ease 0s;
width: 100%;
}
.htmega-inlinemenu-style-2 .linemenu-nav ul li a::before {
border-width: 0 2px;
transform: scale3d(1, 0, 1);
transform-origin: 0 50% 0;
}
.htmega-inlinemenu-style-2 .linemenu-nav ul li a::after {
border-width: 2px 0;
transform: scale3d(0, 1, 1);
transform-origin: 0 0 0;
transition-delay: 0.2s;
}
.htmega-inlinemenu-style-2 .linemenu-nav ul li:hover a::before, .htmega-inlinemenu-style-2 .linemenu-nav ul li:hover a::after {
transform: scale3d(1, 1, 1);
} .htmega-inlinemenu-style-3 li {
position: relative;
}
.htmega-inlinemenu-style-3 li a {
position: relative;
display: block;
}
.htmega-inlinemenu-style-3 li::before,
.htmega-inlinemenu-style-3 li::after,
.htmega-inlinemenu-style-3 li a::before,
.htmega-inlinemenu-style-3 li a::after {
position: absolute;
display: block;
top: 0;
right: 0;
bottom: 0;
left: 0;
border: 2px solid #d94f5c;
content: '';
z-index: -1;
opacity: 0;
pointer-events: none;
}
.htmega-inlinemenu-style-3 li:hover::before,
.htmega-inlinemenu-style-3 li:hover::after,
.htmega-inlinemenu-style-3 li:hover a::before,
.htmega-inlinemenu-style-3 li:hover a::after {
-webkit-animation: lineanimation .6s ease-in-out;
animation: lineanimation .6s ease-in-out;
z-index: 1;
opacity: 1;
}
.htmega-inlinemenu-style-3 li::before {
border-width: 0 0 0 2px;
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
}
.htmega-inlinemenu-style-3 li::after {
border-width: 0 2px 0 0;
-webkit-transform-origin: right top;
transform-origin: right top;
}
.htmega-inlinemenu-style-3 li a::before {
border-width: 2px 0 0;
-webkit-transform-origin: left top;
transform-origin: left top;
}
.htmega-inlinemenu-style-3 li a::after {
border-width: 0 0 2px;
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
}
.htmega-inlinemenu-style-3 li:hover::before {
-webkit-animation-delay: -.45s;
animation-delay: -.45s;
}
.htmega-inlinemenu-style-3 li:hover::after {
-webkit-animation-delay: -.15s;
animation-delay: -.15s;
}
.htmega-inlinemenu-style-3 li:hover a::before {
-webkit-animation-delay: -.3s;
animation-delay: -.3s;
}
.htmega-inlinemenu-style-3 li:hover a::after {
-webkit-animation-delay: 0;
animation-delay: 0;
}
.htmega-inlinemenu-style-3 li a span {
position: relative;
z-index: 3;
}
@-webkit-keyframes lineanimation {
0%,
33% {
opacity: 0;
-webkit-transform: rotate(45deg) scale(1.5);
transform: rotate(45deg) scale(1.5);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes lineanimation {
0%,
33% {
opacity: 0;
-webkit-transform: rotate(45deg) scale(1.5);
transform: rotate(45deg) scale(1.5);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
} .htmega-inlinemenu-style-4 li a{
position: relative;
padding: 10px 0;
}
.htmega-inlinemenu-style-4 li a::before,
.htmega-inlinemenu-style-4 li a::after {
content: '';
position: absolute;
left: 0;
width: 100%;
height: 2px;
background: #ffffff;
-webkit-transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
-webkit-transition: -webkit-transform 0.2s;
transition: transform 0.2s;
}
.htmega-inlinemenu-style-4 li a::before {
top: 0;
-webkit-transform-origin: 0 50%;
transform-origin: 0 50%;
}
.htmega-inlinemenu-style-4 li a::after {
bottom: 0;
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.htmega-inlinemenu-style-4 li a:hover::before,
.htmega-inlinemenu-style-4 li a:hover::after {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
-webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
} .htmega-inlinemenu-style-5 li a {
position: relative;
}
.htmega-inlinemenu-style-5 ul li {
margin: 0 10px;
}
.htmega-inlinemenu-style-5 ul li a{
position: relative;
overflow: hidden;
width: 130px;
padding: 1em 0;
display: block;
padding: 1em;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
color: #636363;
}
.htmega-inlinemenu-style-5 ul li a:hover {
color: #d94f5c;
}
.htmega-inlinemenu-style-5 ul li a::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 300%;
height: 50px;
opacity: 0;
background: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/images/icons/line.svg) no-repeat top left;
-webkit-transform: translate3d(130px, 0, 0);
transform: translate3d(130px, 0, 0);
-webkit-transition: -webkit-transform 0s 0.3s, opacity 0.3s;
transition: transform 0s 0.3s, opacity 0.3s;
}
.htmega-inlinemenu-style-5 ul li a:hover::before {
opacity: 1;
-webkit-transform: translate3d(-260px, 0, 0);
transform: translate3d(-260px, 0, 0);
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
} .htmega-inlinemenu-style-6 ul li a {
position: relative;
overflow: hidden;
height: 3em;
padding: 1em 0;
text-align: center;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
.htmega-inlinemenu-style-6 ul li a:hover {
color: #d94f5c;
}
.htmega-inlinemenu-style-6 ul li:hover a {
-webkit-animation: anim-francisco 0.4s forwards;
animation: anim-francisco 0.4s forwards;
color: #d94f5c;
}
@-webkit-keyframes anim-francisco {
50% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
51% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes anim-francisco {
50% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
51% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
} .htmega-inlinemenu-style-7 ul li{
margin: 0;
}
.htmega-inlinemenu-style-7 ul li a {
padding: 10px 0;
border-top: 2px solid #c90dbe;
color: #c90dbe;
position: relative;
margin: 0 10px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 400;
text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}
.htmega-inlinemenu-style-7 ul li a::before {
position: absolute;
left: 0;
overflow: hidden;
padding: 10px 0;
max-width: 0;
border-bottom: 2px solid #c90dbe;
color: #c90dbe;
content: attr(data-hover);
-webkit-transition: max-width 0.5s;
-moz-transition: max-width 0.5s;
transition: max-width 0.5s;
top: 50%;
transform: translateY(-50%);
}
.htmega-inlinemenu-style-7 ul li a:hover::before,
.htmega-inlinemenu-style-7 ul li a:focus::before {
max-width: 100%;
} .htmega-not-found {
overflow: hidden;
text-align: center;
position: relative;
}
.htmega-not-found .content {
position: relative;
z-index: 2;
}
.htmega-not-found .content h1 {
color: #c0d2ff;
font-size: 48px;
margin-top: 35px;
margin-bottom: 43px;
}
.htmega-not-found .content a.page-back-btn {
background: #c0d2ff;
height: 62px;
display: inline-block;
padding: 0 40px;
line-height: 62px;
border-radius: 31px;
color: #131e3a;
font-size: 16px;
font-weight: 500;
transition: 0.4 ease-in-out;
text-decoration: none;
}
.htmega-not-found .content a.page-back-btn:hover {
background: #fff;
border-radius: 20px 0;
color: #18012c;
transform: translateY(-5px);
}
.htmega-not-found .content a.page-back-btn i {
padding-right: 12px;
font-size: 18px;
}
.htmega-not-found .content a.page-back-btn svg {
width: 20px;
margin-top: 18px;
float: left;
margin-right: 8px;
display: inline-block;
} .cloud {
width: 350px;
height: 120px;
background: #1e2a4a;
background: linear-gradient(top, #1e2a4a 100%);
background: -webkit-linear-gradient(top, #1e2a4a 100%);
background: -moz-linear-gradient(top, #1e2a4a 100%);
background: -ms-linear-gradient(top, #1e2a4a 100%);
background: -o-linear-gradient(top, #1e2a4a 100%);
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
position: absolute;
margin: 120px auto 20px;
transition: ease 1s;
}
.cloud:after,
.cloud:before {
content: '';
position: absolute;
background: #1e2a4a;
z-index: -1;
}
.cloud:after {
width: 100px;
height: 100px;
top: -50px;
left: 50px;
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
}
.cloud:before {
width: 180px;
height: 180px;
top: -90px;
right: 50px;
border-radius: 200px;
-webkit-border-radius: 200px;
-moz-border-radius: 200px;
}
.cloud-1 {
top: -198px;
left: 0;
-webkit-transform: scale(0.3);
-moz-transform: scale(0.3);
transform: scale(0.3);
opacity: 0.9;
-webkit-animation: moveclouds 15s linear infinite;
-moz-animation: moveclouds 15s linear infinite;
-o-animation: moveclouds 15s linear infinite;
}
.cloud-2 {
top: -122px;
left: 140px;
-webkit-transform: scale(0.3);
-moz-transform: scale(0.3);
transform: scale(0.3);
-webkit-animation: moveclouds 17s linear infinite;
-moz-animation: moveclouds 17s linear infinite;
-o-animation: moveclouds 17s linear infinite;
}
.cloud-3 {
left: 409px;
top: -50px;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.6;
-webkit-animation: moveclouds 25s linear infinite;
-moz-animation: moveclouds 25s linear infinite;
-o-animation: moveclouds 25s linear infinite;
}
.cloud-4 {
left: -46px;
bottom: 135px;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.8;
-webkit-animation: moveclouds 25s linear infinite;
-moz-animation: moveclouds 25s linear infinite;
-o-animation: moveclouds 25s linear infinite;
}
.cloud-5 {
left: 469px;
bottom: -57px;
-webkit-transform: scale(0.75);
-moz-transform: scale(0.75);
transform: scale(0.75);
opacity: 0.75;
-webkit-animation: moveclouds 18s linear infinite;
-moz-animation: moveclouds 18s linear infinite;
-o-animation: moveclouds 18s linear infinite;
}
.cloud-6 {
left: 100%;
top: 263px;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
transform: scale(0.5);
opacity: 0.8;
-webkit-animation: moveclouds 20s linear infinite;
-moz-animation: moveclouds 20s linear infinite;
-o-animation: moveclouds 20s linear infinite;
}
@-webkit-keyframes moveclouds {
0% {
margin-left: 1000px;
}
100% {
margin-left: -1000px;
}
}
@-moz-keyframes moveclouds {
0% {
margin-left: 1000px;
}
100% {
margin-left: -1000px;
}
}
@-o-keyframes moveclouds {
0% {
margin-left: 1000px;
}
100% {
margin-left: -1000px;
}
} .htmega-error-style-2 .content {
text-align: left;
padding-left: 65px;
}
.htmega-error-style-2 .content h2 {
color: #ffffff;
font-size: 48px;
font-weight: 400;
margin-bottom: 4px;
}
.htmega-error-style-2 .content h1 {
color: #ffffff;
font-size: 50px;
font-weight: 400;
line-height: 1.2;
margin-bottom: 7px;
margin-top: 0;
}
.htmega-error-style-2 .content h1 span {
color: #ffffff;
font-size: 116px;
padding-right: 21px;
}
.htmega-error-style-2 .content p {
color: #ffffff;
font-size: 32px;
line-height: 54px;
margin-bottom: 32px;
}
.htmega-error-style-2 .content a.page-back-btn {
background: #fff;
color: #131e3a;
height: 75px;
display: inline-block;
padding: 0 60px;
font-size: 30px;
line-height: 71px;
border-radius: 31px;
transition: 0.4 ease-in-out;
}
.htmega-error-style-2 .content a.page-back-btn:hover {
background: #fff;
border-radius: 20px 0;
color: #18012c;
transform: translateY(-5px);
} .htmega-error-style-3 .content{
padding-bottom: 10px;
}
.htmega-error-style-3 .content h2 {
color: #d5cff2;
font-size: 52px;
margin-bottom: 16px;
}
.htmega-error-style-3 .content p {
color: #d5cff2;
font-size: 30px;
line-height: 44px;
margin-bottom: 38px;
font-family: "Montserrat", sans-serif;
}
.htmega-error-style-3 .content a.page-back-btn {
background: #fd5c5e;
display: inline-block;
border-radius: 31px;
color: #d5cff2;
font-size: 36px;
transition: 0.5s ease-in-out;
padding: 0;
}
.htmega-error-style-3 .content a.page-back-btn i {
font-size: inherit;
padding-right: inherit;
}
.htmega-error-style-3 .content a.page-back-btn:hover {
transform: scale(1.2);
background: #18012c;
color: #ffffff;
} .not-found-4 {
padding: 310px 0;
}
.not-found-4 .content {
text-align: left;
}
.not-found-4 .content h2 {
color: #fcfcfc;
font-size: 36px;
line-height: 64px;
font-weight: 400;
text-align: left;
margin-bottom: 30px;
}
.not-found-4 .content a.page-back-btn {
background: #da4c00;
color: #fff;
height: 54px;
display: inline-block;
padding: 0 40px;
line-height: 54px;
font-size: 16px;
font-weight: 600;
border-radius: 27px;
transition: 0.5s ease-in-out;
margin-right: 26px;
font-family: "Montserrat", sans-serif;
}
.not-found-4 .content a.page-back-btn:hover {
background: #da4c00 none repeat scroll 0 0;
border-radius: 27px;
color: #fff;
opacity: 0.7;
transform: translateY(0px);
}
.not-found-4 .content a.page-back-btn.error_contact {
background: #ff8a00;
} .htmega-counter-content {
line-height: 1;
}
.htmega-counter-icon span{
display: inline-block;
}
.htmega-counter-icon svg {
width: 20px;
}
.htmega-counter-area .htmega-counter-img{
display: inline-block;
} .htmega-counter-style-1 {
text-align: center;
}
.htmega-counter-style-1 .htmega-counter-icon i {
font-size: 36px;
color: #ed552d;
}
.htmega-counter-style-1 .htmega-counter-content span {
color: #696969;
font-size: 36px;
font-weight: 700;
margin-top: 20px;
display: inline-block;
font-family: "Montserrat", sans-serif;
}
.htmega-counter-style-1 .htmega-counter-content h2 {
color: #898989;
font-weight: 400;
font-size: 17px;
margin: 0;
position: relative;
margin-top: 9px;
display: block;
padding-bottom: 15px;
}
.htmega-counter-style-1 .htmega-counter-content h2::before {
background: #d5d5d5;
width: 48px;
height: 1px;
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
} .htmega-counter-style-2 {
display: flex;
align-items: center;
justify-content: center;
}
.htmega-counter-style-2 .htmega-counter-icon {
padding-right: 20px;
}
.htmega-counter-style-2 .htmega-counter-icon i {
font-size: 48px;
color: #383838;
}
.htmega-counter-style-2 .htmega-counter-content span {
color: #383838;
font-size: 24px;
font-weight: 600;
margin-top: 13px;
display: inline-block;
font-family: "Montserrat", sans-serif;
position: relative;
}
.htmega-counter-style-2 .htmega-counter-content h2 {
color: #383838;
font-weight: 400;
font-size: 20px;
margin: 0;
position: relative;
display: block;
} .htmega-counter-area{
position: relative;
}
.htmega-counter-area::before {
position: absolute;
content: "";
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: transparent;
opacity: 0.8;
}
.htmega-counter-content {
position: relative;
z-index: 1;
}
.htmega-counter-style-3 .htmega-counter-img {
display: inline-block;
position: relative;
}
.htmega-counter-style-3 .htmega-counter-img::before {
position: absolute;
content: "";
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #52b6bc;
opacity: 0.8;
border-radius: 100%;
}
.htmega-counter-style-3 .htmega-counter-content {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.htmega-counter-style-3 {
text-align: center;
}
.htmega-counter-style-3 .htmega-counter-content span {
color: #ffffff;
font-size: 40px;
font-weight: 600;
margin-top: 13px;
display: inline-block;
font-family: 'Courgette', cursive;
}
.htmega-counter-style-3 .htmega-counter-content h2 {
color: #ffffff;
font-weight: 400;
font-size: 20px;
margin: 0;
margin-top: 4px;
font-family: 'Courgette', cursive;
} .htmega-counter-style-4 {
display: flex;
align-items: center;
justify-content: center;
}
.htmega-counter-style-4 .htmega-counter-img {
padding-right: 25px;
}
.htmega-counter-style-4 .htmega-counter-content {
text-align: center;
}
.htmega-counter-style-4 .htmega-counter-content span {
color: #585858;
font-size: 24px;
font-weight: 600;
margin-top: 13px;
display: inline-block;
font-family: "Montserrat", sans-serif;
position: relative;
}
.htmega-counter-style-4 .htmega-counter-content h2 {
color: #585858;
font-weight: 600;
font-size: 24px;
margin: 0;
position: relative;
display: block;
padding-bottom: 14px;
}
.htmega-counter-style-4 .htmega-counter-content h2::before {
position: absolute;
content: "";
bottom: 0;
background: #ed552d;
width: 70px;
height: 2px;
left: 50%;
transform: translateX(-50%);
} .htmega-counter-style-5 {
text-align: center;
}
.htmega-counter-style-5 .htmega-counter-icon i {
font-size: 36px;
color: #ed552d;
}
.htmega-counter-style-5 .htmega-counter-content span {
color: #18012c;
font-size: 36px;
font-weight: 700;
margin-top: 20px;
display: inline-block;
font-family: 'Lobster Two', cursive;
}
.htmega-counter-style-5 .htmega-counter-content span.color-1 {
color: #b1c642;
}
.htmega-counter-style-5 .htmega-counter-content span.color-2 {
color: #ff5020;
}
.htmega-counter-style-5 .htmega-counter-content span.color-3 {
color: #ffc10d;
}
.htmega-counter-style-5 .htmega-counter-content span.color-4 {
color: #68b9d8;
}
.htmega-counter-style-5 .htmega-counter-content h2 {
color: #444444;
font-weight: 400;
font-size: 24px;
margin: 0;
margin-top: 9px;
display: block;
padding-bottom: 15px;
font-family: 'Lobster Two', cursive;
} .htmega-counter-style-6 {
text-align: center;
}
.htmega-counter-style-6 .htmega-counter-icon {
display: flex;
justify-content: center;
align-items: center;
}
.htmega-counter-style-6 .htmega-counter-icon span {
color: #363636;
font-size: 36px;
font-weight: 600;
display: inline-block;
font-family: "Montserrat", sans-serif;
padding-left: 15px;
}
.htmega-counter-style-6 .htmega-counter-content h2 {
color: #363636;
font-weight: 600;
font-size: 16px;
margin: 0;
display: block;
font-family: "Montserrat", sans-serif;
margin-top: 13px;
text-transform: uppercase;
} .row-1 > [class*="col"] {
padding-left: 1px;
padding-right: 1px;
}
.grid_post .elementor-widget {
margin-bottom: 0 !important;
}
.row--10 > [class*="col"] {
padding-left: 10px;
padding-right: 10px;
}
.mt--30,.ht-post.mt--30 {
margin-top: 30px;
}
.mt--20,.ht-post.mt--20 {
margin-top: 20px;
} .gradient-overlay .thumb a {
display: block;
position: relative;
}
.gradient-overlay .thumb a::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
content: "";
z-index: 2;
opacity: 0.3;
right: 0;
}
.gradient-overlay.gradient-overlay-1 .thumb a::before {
background-image: linear-gradient(#f10afd, #1cc3e2);
background-image: -webkit-gradient(#f10afd, #1cc3e2);
background-image: -webkit-linear-gradient(#f10afd, #1cc3e2);
background-image: -moz-linear-gradient(#f10afd, #1cc3e2);
background-image: -ms-linear-gradient(#f10afd, #1cc3e2);
background-image: -o-linear-gradient(#f10afd, #1cc3e2);
opacity: 0.8;
}
.gradient-overlay.gradient-overlay-2 .thumb a::before {
background-image: linear-gradient(#f29a4a, #f2c84c);
background-image: -webkit-gradient(#f29a4a, #f2c84c);
background-image: -webkit-linear-gradient(#f29a4a, #f2c84c);
background-image: -moz-linear-gradient(#f29a4a, #f2c84c);
background-image: -ms-linear-gradient(#f29a4a, #f2c84c);
background-image: -o-linear-gradient(#f29a4a, #f2c84c);
opacity: 0.8;
}
.gradient-overlay.gradient-overlay-3 .thumb a::before {
background-image: linear-gradient(#f7384e, #0fbcb9);
background-image: -webkit-gradient(#f7384e, #0fbcb9);
background-image: -webkit-linear-gradient(#f7384e, #0fbcb9);
background-image: -moz-linear-gradient(#f7384e, #0fbcb9);
background-image: -ms-linear-gradient(#f7384e, #0fbcb9);
background-image: -o-linear-gradient(#f7384e, #0fbcb9);
opacity: 0.8;
}
.gradient-overlay.gradient-overlay-4 .thumb a::before {
background-image: linear-gradient(#bd3664, #222671);
background-image: -webkit-gradient(#bd3664, #222671);
background-image: -webkit-linear-gradient(#bd3664, #222671);
background-image: -moz-linear-gradient(#bd3664, #222671);
background-image: -ms-linear-gradient(#bd3664, #222671);
background-image: -o-linear-gradient(#bd3664, #222671);
opacity: 0.8;
}
.gradient-overlay.gradient-overlay-5 .thumb a::before {
background-image: linear-gradient(#eb3449, #f45a43);
background-image: -webkit-gradient(#eb3449, #f45a43);
background-image: -webkit-linear-gradient(#eb3449, #f45a43);
background-image: -moz-linear-gradient(#eb3449, #f45a43);
background-image: -ms-linear-gradient(#eb3449, #f45a43);
background-image: -o-linear-gradient(#eb3449, #f45a43);
opacity: 0.8;
}
.gradient-overlay.gradient-overlay-6 .thumb a::before {
background-image: linear-gradient(#c03764, #202671);
background-image: -webkit-gradient(#c03764, #202671);
background-image: -webkit-linear-gradient(#c03764, #202671);
background-image: -moz-linear-gradient(#c03764, #202671);
background-image: -ms-linear-gradient(#c03764, #202671);
background-image: -o-linear-gradient(#c03764, #202671);
opacity: 0.8;
}
.gradient-overlay.gradient-overlay-7 .thumb a::before {
background-image: linear-gradient(#eb3449, #f45b43);
background-image: -webkit-gradient(#eb3449, #f45b43);
background-image: -webkit-linear-gradient(#eb3449, #f45b43);
background-image: -moz-linear-gradient(#eb3449, #f45b43);
background-image: -ms-linear-gradient(#eb3449, #f45b43);
background-image: -o-linear-gradient(#eb3449, #f45b43);
opacity: 0.8;
}
.black-overlay .thumb a {
display: block;
position: relative;
}
.black-overlay .thumb a::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
content: "";
z-index: 2;
opacity: 0.2;
right: 0;
background: #000000;
} .ht-post {
position: relative;
margin-top: 2px;
overflow: hidden;
}
.ht-post .thumb{
overflow: hidden;
}
.ht-post .thumb a img {
width: 100%;
display: block;
transition: 0.3s ease-out;
overflow: hidden;
object-fit: cover;
height: 100%;
}
.ht-post:hover .thumb a img {
opacity: 1;
transform: scale3d(1.1, 1.1, 1);
}
.ht-post a.post-category {
background: #f05555 none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-size: 12px;
font-weight: 600;
height: auto;
letter-spacing: 1px;
line-height: 24px;
padding: 0 8px;
position: absolute;
text-transform: uppercase;
z-index: 2;
}
.ht-post a.post-position-top-left {
left: 0;
top: 0;
}
.ht-post a.post-position-top-right {
right: 0;
top: 0;
}
.ht-post .post-content {
position: absolute;
bottom: 0;
z-index: 2;
padding: 20px 10px 20px 20px;
width: 100%;
}
.ht-post .post-content .content h4 {
font-size: 20px;
line-height: 26px;
margin-bottom: 11px;
}
.ht-post .post-content .content h2 {
font-size: 36px;
margin-bottom: 11px;
}
.ht-post .post-content .content a {
color: #ffffff;
}
.ht-post .post-content .content .meta {
color: #fff;
font-size: 14px;
letter-spacing: 2px;
}
.ht-post a.play-video {
position: absolute;
z-index: 3;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
width: 50px;
height: 50px;
background: transparent;
border: 1px solid #fff;
border-radius: 100%;
padding: 0;
text-align: center;
color: #fff;
font-size: 24px;
transition: 0.4s ease-in-out;
}
.ht-post a.play-video:hover {
background: #18012c;
color: #fff;
border: 1px solid #18012c;
}
.ht-post a.play-video i {
margin-left: 4px;
} .htmega-single-post .post-category a {
background: #f05555 none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-size: 12px;
font-weight: 300;
line-height: 24px;
padding: 0 9px;
text-transform: uppercase;
transition: all 0.4s ease 0s;
}
.htmega-single-post .post-category a:hover {
background: #18012c;
color: #ffffff;
}
.htmega-single-post ul.meta {
display: flex;
list-style: outside none none;
margin: 0 -15px;
padding: 0;
}
.htmega-single-post ul.meta li {
font-size: 13px;
letter-spacing: 2px;
margin: 0 15px;
}
.htmega-single-post ul.meta li i {
font-size: 14px;
margin-right: 10px;
}
.htmega-single-post {
position: relative;
}
.htmega-single-post .thumb {
overflow: hidden;
}
.htmega-single-post .thumb a{
display: block;
position: relative;
}
.htmega-single-post a{
text-decoration: none;
}
.htmega-single-post .thumb a img {
transition: 0.4s ease-in-out;
}
.htmega-single-post:hover .thumb a img {
transform: scale(1.2);
} .htmega-single-post-style-1 .content {
position: absolute;
bottom: 0;
padding: 40px;
width: 100%;
}
.htmega-single-post-style-1 .content h2 {
font-size: 24px;
font-weight: 600;
margin-top: 15px;
margin-bottom: 10px;
line-height: 36px;
}
.htmega-single-post-style-1 .content h2 a,.htmega-single-post-style-1 .content ul.meta li,.htmega-single-post-style-1 .content ul.meta li a {
color: #ffffff;
} .htmega-single-post-style-2 .content {
padding-top: 30px;
}
.htmega-single-post-style-2 .content h2 {
font-size: 24px;
font-weight: 600;
margin-top: 15px;
margin-bottom: 10px;
line-height: 36px;
}
.htmega-single-post-style-2 .content h2 a,.htmega-single-post-style-2 .content ul.meta li,.htmega-single-post-style-2 .content ul.meta li a {
color: #464545;
} .htmega-single-post-style-3 .content {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
text-align: center;
}
.htmega-single-post-style-3 .content h2 {
font-size: 24px;
font-weight: 600;
margin-top: 18px;
margin-bottom: 22px;
line-height: 34px;
}
.htmega-single-post-style-3 .content h2 a {
color: #ffffff;
}
.htmega-single-post-style-3 .content ul.meta {
justify-content: center;
}
.htmega-single-post-style-3 .content ul.meta li,.htmega-single-post-style-3 .content ul.meta li a {
color: #ffffff;
} .htmega-single-post-style-4 .content {
background: #ffffff;
text-align: center;
padding: 40px 20px;
}
.htmega-single-post-style-4 .content h2 {
font-size: 24px;
font-weight: 600;
margin-bottom: 16px;
line-height: 36px;
margin-top: 0px;
}
.htmega-single-post-style-4 .content h2 a {
color: #464545;
transition: 0.4s ease-in;
}
.htmega-single-post-style-4 .content h2 a:hover {
color: #18012c;
}
.htmega-single-post-style-4 .content ul.meta {
justify-content: center;
}
.htmega-single-post-style-4 .content ul.meta li,.htmega-single-post-style-4 .content ul.meta li a {
color: #464545;
} .htmega-single-post-slide {
position: relative;
}
.htmega-single-post-slide img{
width: 100%;
}
.htmega-single-post-slide a{
text-decoration: none;
}
.htmega-single-post-slide .content ul.post-category {
display: block;
list-style: outside none none;
margin: 0;
padding: 0;
}
.htmega-single-post-slide .content ul.post-category li {
background: #f05555 none repeat scroll 0 0;
margin-right: 10px;
transition: all 0.4s ease-in-out 0s;
line-height: inherit;
margin-left: 0;
display: inline-block;
}
.htmega-single-post-slide .content ul.post-category li a {
color: #fff;
font-size: 13px;
font-weight: 300;
letter-spacing: 1px;
text-transform: uppercase;
padding: 5px 9px;
display: block;
text-decoration: none;
line-height: 1;
}
.htmega-single-post-slide .content ul.post-category li a:hover{
background: #18012c none repeat scroll 0 0;
color: #ffffff;
}
.htmega-single-post-slide ul.meta {
color: #464545;
display: block;
list-style: outside none none;
margin: 0;
padding: 0;
}
.htmega-single-post-slide ul.meta li {
font-size: 13px;
letter-spacing: 2px;
margin-right:15px;
display: inline-block;
margin-left: 0;
}
.htmega-single-post-slide ul.meta li i {
padding-right: 10px;
}
.htmega-single-post-slide .content .post-inner h2{
margin-top: 20px;
margin-bottom: 10px;
}
.htmega-single-post-slide .content .post-inner p{
margin: 22px 0 25px;
color: #18012c;
font-size: 14px;
line-height: 28px;
}
.htmega-single-post-slide .content .post-inner h2 a,.htmega-single-post-slide .content .post-inner ul.meta li a {
color: #18012c;
}
.htmega-single-post-slide .post-btn a.readmore-btn {
background: transparent none repeat scroll 0 0;
border: 1px solid #464545;
border-radius: 23px;
color: #464545;
display: inline-block;
font-size: 14px;
font-weight: 400;
line-height: 44px;
padding: 0 37px;
transition: all 0.4s ease-in-out 0s;
text-decoration: none;
}
.htmega-single-post-slide .post-btn a.readmore-btn:hover {
background: #18012c none repeat scroll 0 0;
border: 1px solid #18012c;
color: #ffffff;
}
.htmega-postslider-area img{
width: 100%;
}
.htmega-postslider-area button.slick-arrow {
background: #ccd5d5 none repeat scroll 0 0;
border: 0 none;
bottom: 10px;
color: #00282a;
font-size: 24px;
height: 40px;
left: auto;
line-height: 1;
padding: 0;
position: absolute;
right: 10px;
width: 46px;
z-index: 2;
}
.htmega-postslider-area button.htmega-carosul-prev.slick-arrow {
right: 60px;
}
.htmega-arrow-2.htmega-postslider-area button.slick-arrow{
background: #d7dae9 none repeat scroll 0 0;
border: 1px solid #d7dae9;
border-radius: 100%;
color: #2a47e0;
font-size: 24px;
left: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease 0s;
z-index: 2;
}
.htmega-arrow-2.htmega-postslider-area button.htmega-carosul-next.slick-arrow {
left: auto !important;
right: 0;
}
.htmega-postslider-area .slick-dots li button::before{
display: none;
}
.htmega-postslider-area .slick-dots li {
background: #ccd5d5 none repeat scroll 0 0;
border-radius: 100%;
height: 15px;
width: 15px;
}
.htmega-postslider-area .slick-dots li.slick-active {
background: #00282a none repeat scroll 0 0;
} .htmega-postslider-layout-1 .content {
position: absolute;
left: 0;
top: 0;
max-width: 40%;
height: 100%;
padding: 10px;
z-index: 2;
}
.htmega-postslider-layout-1 .content .post-inner {
width: 100%;
height: 100%;
background: rgba(0, 140, 167, 0.8);
display: flex;
flex-direction: column;
justify-content: center;
padding: 30px;
}
.htmega-postslider-layout-1 .content .post-inner h2 {
font-size: 24px;
font-weight: 500;
}
.htmega-postslider-layout-1 .content .post-inner h2 a,.htmega-postslider-layout-1 .content .post-inner ul.meta li a {
color: #ffffff;
}
.htmega-postslider-layout-1 .content .post-inner p {
color: #ffffff;
font-size: 14px;
line-height: 28px;
}
.htmega-postslider-layout-1 ul.meta{
color: #ffffff;
}
.htmega-postslider-layout-1 .post-btn a.readmore-btn {
border: 1px solid #ffffff;
color: #ffffff;
} .htmega-single-post-slide .thumb a {
display: block;
height: 100%;
}
.htmega-single-post-slide .thumb a img {
object-fit: cover;
width: 100%;
height: 100%;
} .htmega-postslider-layout-2 .content .post-inner h2 {
font-size: 24px;
font-weight: 500;
margin-top: 20px;
margin-bottom: 18px;
}
.htmega-postslider-layout-2 .content .post-inner h2 a {
color: #464545;
}
.htmega-postslider-layout-2 .content .post-inner ul.meta li,.htmega-postslider-layout-2 .content .post-inner ul.meta li a {
color: #464545;
}
.htmega-postslider-layout-2 .content .post-inner p {
color: #464545;
}
.htmega-postslider-layout-2 .content .post-inner .post-btn {
margin-top: 19px;
}
.htmega-post-slider-right .content {
display: flex;
align-items: center;
height: 100%;
position: relative;
z-index: 2;
} .htmega-postslider-layout-3 .content {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
text-align: center;
z-index: 2;
}
.htmega-postslider-layout-3 .content .post-inner h2 {
font-size: 24px;
font-weight: 500;
margin-top: 20px;
margin-bottom: 18px;
padding: 0 26%;
line-height: 34px;
}
.htmega-postslider-layout-3 .content .post-inner h2 a {
color: #ffffff;
}
.htmega-postslider-layout-3 .content .post-inner ul.meta {
justify-content: center;
}
.htmega-postslider-layout-3 .content .post-inner ul.meta li,.htmega-postslider-layout-3 .content .post-inner ul.meta li a {
color: #ffffff;
}
.htmega-postslider-layout-3 .content .post-inner .post-btn {
margin-top: 19px;
}
.htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn {
border: 1px solid #ffffff;
color: #ffffff;
}
.htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn:hover {
background: #18012c;
color: #ffffff;
border: 1px solid #18012c;
}
.htmega-postslider-layout-3 .content ul.post-category {
justify-content: center;
} .htmega-postslider-layout-4 .content {
position: absolute;
text-align: center;
bottom: 0;
padding: 20px;
}
.htmega-postslider-layout-4 .content .post-inner {
background: rgba(0, 86, 255, 0.7);
padding: 25px;
text-align: left;
}
.htmega-postslider-layout-4 .content .post-inner h2 {
font-size: 24px;
font-weight: 500;
margin-bottom: 13px;
line-height: 34px;
}
.htmega-postslider-layout-4 .content .post-inner h2 a {
color: #ffffff;
}
.htmega-postslider-layout-4 .content .post-inner ul.meta li {
color: #ffffff;
}
.htmega-postslider-layout-4 .content .post-inner ul.meta li a {
color: #ffffff;
}
.htmega-postslider-layout-4 .content ul.post-category {
justify-content: center;
} .htmega-postslider-layout-5 .content {
background: #f4f4f4;
padding: 60px;
}
.htmega-postslider-layout-5 .content .post-inner h2 {
font-size: 24px;
font-weight: 500;
margin-top: 20px;
margin-bottom: 18px;
line-height: 34px;
}
.htmega-postslider-layout-5 .content .post-inner h2 a {
color: #464545;
}
.htmega-postslider-layout-5 .content .post-inner ul.meta li,.htmega-postslider-layout-5 .content .post-inner ul.meta li a {
color: #464545;
}
.htmega-postslider-layout-5 .content .post-inner .post-btn {
margin-top: 19px;
}
.htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn {
border: 1px solid #494849;
color: #494849;
}
.htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn:hover {
background: #18012c;
color: #ffffff;
border: 1px solid #18012c;
}
.htmega-arrow-2.htmega-postslider-area.htmega-postslider-style-5 button.slick-arrow{
top: 30%;
}
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots {
bottom: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
position: absolute;
right: 0;
top: 0;
width: 200px;
z-index: 2;
}
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li {
align-items: center;
background: transparent none repeat scroll 0 0;
border-bottom: 5px solid #828282;
border-left: 5px solid #828282;
border-radius: 0;
border-right: 5px solid #828282;
cursor: pointer;
display: flex;
flex-basis: 100%;
height: auto;
margin: 0;
overflow: hidden;
padding: 20px;
position: relative;
text-align: left;
transition: all 0.5s ease-in-out 0s;
width: auto;
z-index: 2;
}
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li:first-child {
border-top: 5px solid #828282;
}
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li.slick-active {
background: transparent none repeat scroll 0 0;
border: 5px solid #ffffff;
}
.htmega-postslider-style-4.htmega-postslider-area.thumb-st-layout-4 ul.slick-dots li:last-child{
border-bottom: 0!important;
}
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li h6 {
bottom: 0;
color: #ffffff;
font-weight: 500;
line-height: 22px;
margin: 0;  }
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li img {
height: 100%;
object-fit: cover;
width: 100%;
}
.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li:after {
content: "";
background: rgba(0, 0, 0, 0);
left: 0;
height: 0;
position: absolute;
width: 100%;
height: 100%;
z-index: 2;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
font-size: 132px;
color: #fff;
transition: all 0.3s ease-in-out;
}
.htmega-postslider-style-4.thumb-st-layout-4.htmega-postslider-area ul.slick-dots li:after {
opacity: 0;
}
.htmega-postslider-style-4.thumb-st-layout-4.htmega-postslider-area ul.slick-dots li.slick-active:after,.htmega-postslider-style-4.thumb-st-layout-4.htmega-postslider-area ul.slick-dots li:hover:after {
opacity: 1;
} .htmega-post-slider-st-6{
display: flex;
flex-direction: row-reverse;
}
.htmega-post-slider-st-6 .htmega-post-slider-right {
width: 45%;
}
.htmega-post-slider-st-6 .htmega-post-slider-left {
width: 55%;
}
.htmega-post-slider-st-6 .htmega-post-slider-right{
border: 25px solid #ddd;
}
.htmega-post-slider-st-6 .htmega-post-slider-right .content{
background-color: transparent;
background-image: linear-gradient(60deg, #3237C2 0%, #f2295b 100%);
padding: 30px;
}
.htmega-post-slider-left .thumb{
height: 100%;
} .htmega-post-slider-st-7 {
flex-direction: row;
}
.htmega-post-slider-st-7 .htmega-post-slider-right {
width: 55%;
}
.htmega-post-slider-st-7 .htmega-post-slider-left {
width: 45%;
}
.htmega-post-slider-st-7 .htmega-post-slider-right{
border: none;
}
.htmega-post-slider-st-7 .htmega-post-slider-right .content {
background-color:none;
background-image: none;
}
.htmega-post-slider-st-7{
background-color: rgba(255, 255, 255, 0.2);
border-radius: 15px;
overflow: hidden;
}
.htmega-single-post-slide .thumb a,.ht-post .thumb a{
position: relative;
display: block;
}
.htmega-single-post-slide .thumb a:after,.ht-post .thumb a:after,
.htmega-single-post-slide.htmega-postslider-layout-3 .thumb a:before {
content: "";
position: absolute;
background: rgba(0, 0, 0, 0);
top: 0;
left: 0;
width: 100%;
z-index: 0;
height: 100%;
transition: all 0.3s ease-in-out;
}
.htmega-single-post-slide.htmega-postslider-layout-3 .thumb a:before{
opacity: 0;
transition: all 0.3s ease-in-out;
}
.htmega-single-post-slide.htmega-postslider-layout-3:hover .thumb a:before{
opacity: 1;
}
.htmega-postslider-area .slick-slide>div{
line-height: 0;
} @media (max-width: 767px) {
.htmega-post-slider-st-6{
flex-direction: column-reverse;
}
.htmega-post-slider-st-6 .htmega-post-slider-right {
width: 100%;
}
.htmega-post-slider-st-6 .htmega-post-slider-left {
width: 100%;
}
} .htmega-image-gridstyle-4 .htb-row > [class*="col"] {
padding-left: 10px;
padding-right: 10px;
}
.htmega-masonry-activation.htmega-image-gridstyle-5 .htb-row > [class*="col"] {
padding-left: 25px;
padding-right: 25px;
}
.htmega-singleimage-grid .thumb img {
width: 100%;
}
.htmega-singleimage-grid h2{
margin: 0;
}
.htmega-singleimage-gridstyle-1 {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
margin-top: 30px;
overflow: hidden;
}
.htmega-singleimage-gridstyle-1 .thumb {
overflow: hidden;
}
.htmega-singleimage-gridstyle-1 .thumb a {
position: relative;
display: block;
z-index: 2;
}
.htmega-singleimage-gridstyle-1 .thumb a::before {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
background-color: rgba(0, 0, 0, 0.5);
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
content: "";
z-index: 1;
}
.htmega-singleimage-gridstyle-1 .thumb a img {
display: block;
position: relative;
-webkit-transition: all .4s linear;
transition: all .4s linear;
}
.htmega-singleimage-gridstyle-1:hover .thumb a::before {
opacity: 1;
}
.htmega-singleimage-gridstyle-1:hover .thumb a img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.htmega-singleimage-gridstyle-1 .image-grid-content h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: absolute;
font-size: 17px;
background: rgba(0, 0, 0, 0.6);
-webkit-transform: translateY(-100px);
transform: translateY(-100px);
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
padding: 10px;
width: 100%;
top: 0;
z-index: 3;
}
.htmega-singleimage-gridstyle-1 .image-grid-content a.read-btn {
text-decoration: none;
display: inline-block;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
margin: 50px 0 0;
padding: 7px 14px;
position: absolute;
top: 50%;
margin: 0;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-70%);
transform: translateX(-50%) translateY(-70%);
}
.htmega-singleimage-gridstyle-1 .image-grid-content a.read-btn:hover {
-webkit-box-shadow: 0 0 5px #fff;
box-shadow: 0 0 5px #fff;
}
.htmega-singleimage-gridstyle-1:hover .image-grid-content {
opacity: 1;
filter: alpha(opacity=100);
}
.htmega-singleimage-gridstyle-1:hover .image-grid-content h2 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translateY(0);
transform: translateY(0);
}
.htmega-singleimage-gridstyle-1:hover .image-grid-content a.read-btn {
opacity: 1;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
-webkit-transition-delay: .2s;
transition-delay: .2s;
z-index: 4;
} .custom-col-5 {
padding-left: 0px;
padding-right: 0px;
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.htmega-singleimage-gridstyle-2 {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.htmega-singleimage-gridstyle-2 .thumb {
overflow: hidden;
}
.htmega-singleimage-gridstyle-2 .thumb a {
position: relative;
display: block;
z-index: 2;
}
.htmega-singleimage-gridstyle-2 .thumb a::before {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.6);
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translate(460px, -100px) rotate(180deg);
transform: translate(460px, -100px) rotate(180deg);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
content: "";
z-index: 1;
}
.htmega-singleimage-gridstyle-2 .thumb a img {
display: block;
position: relative;
-webkit-transition: all .4s linear;
transition: all .4s linear;
width: 100%;
}
.htmega-singleimage-gridstyle-2:hover .thumb a::before {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.htmega-singleimage-gridstyle-2:hover .thumb a img {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.htmega-singleimage-gridstyle-2 .image-grid-content h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.6);
position: absolute;
top: 0;
width: 100%;
opacity: 0;
transition: 0.4s ease-in-out;
}
.htmega-singleimage-gridstyle-2 .image-grid-content a.read-btn {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
z-index: 4;
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-80%);
transform: translateX(-50%) translateY(-80%);
opacity: 0;
}
.htmega-singleimage-gridstyle-2 .image-grid-content a.read-btn:hover {
-webkit-box-shadow: 0 0 5px #fff;
box-shadow: 0 0 5px #fff;
}
.htmega-singleimage-gridstyle-2:hover .image-grid-content {
opacity: 1;
filter: alpha(opacity=100);
}
.htmega-singleimage-gridstyle-2:hover .image-grid-content h2 {
position: absolute;
top: 20px;
z-index: 3;
opacity: 1;
}
.htmega-singleimage-gridstyle-2:hover .image-grid-content a.read-btn {
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
opacity: 1;
} .htmega-image-gridstyle-3 .htb-row > [class*="col"] {
padding-left: 0;
padding-right: 0;
}
.htmega-singleimage-gridstyle-3 .thumb {
overflow: hidden;
}
.htmega-singleimage-gridstyle-3 .thumb a img {
transition: 0.4s ease-in-out;
}
.htmega-singleimage-gridstyle-3:hover .thumb a img {
transform: scale(1.1) rotate(3deg);
} .htmega-singleimage-gridstyle-4 {
margin-top: 20px;
position: relative;
}
.htmega-singleimage-gridstyle-4 .thumb a img {
width: 100%;
}
.htmega-singleimage-gridstyle-4 .image-grid-content {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
transition: 0.3s ease-out;
transition-property: opacity, transform, filter;
background: rgba(255, 255, 255, 0.8);
opacity: 0;
}
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
transform: translateY(-50%);
padding: 0 80px;
}
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action h2 a {
color: #18012c;
}
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action p {
font-size: 16px;
font-family: "Montserrat", sans-serif;
font-weight: 500;
margin: 0;
line-height: 28px;
}
.htmega-singleimage-gridstyle-4:hover .image-grid-content {
opacity: 1;
transform: translateX(0) translateY(0);
} .htmega-singleimage-gridstyle-5 {
margin-top: 50px;
position: relative;
}
.htmega-singleimage-gridstyle-5 .thumb a img {
width: 100%;
}
.htmega-singleimage-gridstyle-5 .image-grid-content {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
transition: 0.3s ease-out;
transition-property: opacity, transform, filter;
background: rgba(0, 0, 0, 0.8);
opacity: 0;
}
.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
transform: translateY(-50%);
padding: 0 20px;
}
.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action h2 {
color: #ffffff;
margin-bottom: 5px;
font-size: 23px;
}
.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action h2 a {
color: #ffffff;
}
.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action p {
font-size: 16px;
font-family: "Montserrat", sans-serif;
font-weight: 500;
margin: 0;
line-height: 26px;
color: #ffffff;
}
.htmega-singleimage-gridstyle-5:hover .image-grid-content {
opacity: 1;
transform: translateX(0) translateY(0);
} .row--5 > [class*="col"] {
padding-left: 5px;
padding-right: 5px;
}
.ht-thumb-gallery ul.htmega-thumbgallery-for {
margin: 0;
padding: 0;
list-style: none;
}
.ht-thumb-gallery ul.htmega-thumbgallery-for li{
position: relative;
}
.htmega-thumbgallery-for button.slick-arrow {
position: absolute;
top: 50%;
left: 30px;
z-index: 2;
width: 50px;
height: 50px;
background: #000000;
color: #fff;
border: 0 none;
border-radius: 100%;
font-size: 30px;
text-align: center;
padding: 0;
margin: 0;
transition: 0.4s ease-in-out;
transform: translateY(-50%);
line-height: 1;
}
.htmega-thumbgallery-for button.slick-arrow:hover {
background: #0056ff;
color: #fff;
}
.htmega-thumbgallery-nav{
text-align: center;
}
.htmega-thumbgallery-nav button.slick-arrow {
border-radius: 100%;
display: inline-block;
height: 50px;
padding: 0;
width: 50px;
}
.htmega-thumbgallery-for button.htmega-carosul-next {
left: auto;
right: 30px;
}
.htmega-thumbgallery-for .slick-dots,.htmega-thumbgallery-nav .slick-dots {
bottom: 10px;
position: absolute;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
text-align: center;
}
.htmega-thumbgallery-nav .slick-arrow + .slick-dots {
bottom: 50px;
}
.htmega-thumbgallery-for .slick-dots li,.htmega-thumbgallery-nav .slick-dots li{
display: inline-block;
}
.htmega-thumbgallery-for .slick-dots li button,.htmega-thumbgallery-nav .slick-dots li button{
background: #ddd;
text-indent: -99999px;
padding: 0;
margin-right: 8px;
border-radius: 100%;
width: 12px;
height: 12px;
}
.htmega-thumbgallery-for .slick-dots li.slick-active button,.htmega-thumbgallery-nav .slick-dots li.slick-active button{
background: #000;
}
.htmega-thumbgallery-for .slick-dots li button::before,.htmega-thumbgallery-nav .slick-dots li button::before{
display: none;
}
.htmega-thumbgallery-for.htmega-arrow-2 {
position: relative;
}
.htmega-thumbgallery-for.htmega-arrow-2 button {
position: absolute;
top: 50%;
left: 42px;
z-index: 2;
background: transparent;
color: #fff;
border: 0 none;
border-radius: 100%;
font-size: 48px;
text-align: center;
padding: 0;
margin: 0;
transition: 0.4s ease-in-out;
transform: translateY(-50%);
}
.htmega-thumbgallery-for.htmega-arrow-2 button:hover {
color: #0056ff;
}
.htmega-thumbgallery-for.htmega-arrow-2 button.htmega-carosul-next {
left: auto;
right: 42px;
}
.htmega-thumbgallery-nav .small-thumb {
cursor: pointer;
}
.htmega-thumbgallery-nav .small-thumb img {
width: 100%;
}
.htmega-thumbgallery-for .content {
position: absolute;
bottom: 40px;
left: 0;
background: rgba(0, 86, 255, 0.7);
padding: 5px 38px;
}
.htmega-thumbgallery-for .content.right-bottom {
bottom: 40px;
left: auto;
right: 0;
}
.htmega-thumbgallery-for .content h2 {
margin: 0;
color: #ffffff;
font-size: 24px;
line-height: 46px;
font-weight: 500;
}
.htmega-thumbgallery-nav .slick-slide.slick-current.slick-active.slick-center .small-thumb img {
border: 3px solid #0056ff;
}
.htmega-thumbgallery-nav .small-thumb img {
border: 3px solid #d7d7d7;
}
.htmega-thumbgallery-nav.htmega-thumbgallery-nav .slick-slide {
padding: 3px 0px;
}
.htmega-thumbgallery-nav.htmega-thumbgallery-nav {
margin: -3px 0;
}
.htmega-thumbnails-style-2 .htmega-thumbgallery-nav.htmega-thumbgallery-nav .slick-slide {
padding: 5px 3px;
}
.htmega-thumbnails-style-2 .htmega-thumbgallery-nav.htmega-thumbgallery-nav {
margin: 0 -3px;
}
.ht-thumb-gallery .slick-slide img {
display: block;
width: 100%;
} .htmega-testimonialgrid-style-1 .testimonal {
background: #f7f8f9;
padding: 30px;
margin-top: 30px;
}
.htmega-testimonialgrid-style-1 .testimonal .content {
display: flex;
align-items: center;
}
.htmega-testimonialgrid-style-1 .testimonal .content img {
max-width: 80px;
border-radius: 100%;
}
.htmega-testimonialgrid-style-1 .testimonal .content .clint-info {
padding-left: 25px;
}
.htmega-testimonialgrid-style-1 .testimonal .content .clint-info h4 {
font-size: 18px;
color: #383838;
margin: 0;
}
.htmega-testimonialgrid-style-1 .testimonal .content .clint-info span {
color: #1834a6;
font-size: 13px;
}
.htmega-testimonialgrid-style-1 .testimonal p {
color: #5b5b5b;
font-size: 14px;
line-height: 26px;
margin: 0;
margin-top: 22px;
} .htmega-testimonialgrid-style-2 .testimonal {
background: #fff none repeat scroll 0 0;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 30px;
padding: 40px 30px;
}
.htmega-testimonialgrid-style-2 .testimonal img {
border: 2px solid #43df9c;
border-radius: 50%;
box-sizing: content-box;
float: left;
max-width: 90px;
}
.htmega-testimonialgrid-style-2 .testimonal .content p {
color: #3e3e3e;
font-size: 16px;
line-height: 28px;
margin-bottom: 20px;
}
.htmega-testimonialgrid-style-2 .testimonal .content {
overflow: hidden;
padding-left: 20px;
}
.htmega-testimonialgrid-style-2 .testimonal .content .clint-info {
padding-left: 50px;
position: relative;
}
.htmega-testimonialgrid-style-2 .testimonal .content .clint-info::before {
background: #383838 none repeat scroll 0 0;
content: "";
height: 2px;
left: 0;
position: absolute;
top: 10px;
width: 30px;
} .htmega-testimonialgrid-style-3 .testimonal {
background: #fff none repeat scroll 0 0;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 53px;
padding-bottom: 27px;
position: relative;
text-align: center;
}
.htmega-testimonialgrid-style-3 .testimonal {
margin-top: 82px;
}
.htmega-testimonialgrid-style-3 .testimonal img {
border: 2px solid #727272;
border-radius: 50%;
box-sizing: content-box;
left: 50%;
max-width: 100px;
position: absolute;
top: 0;
transform: translate(-50%, -50%);
}
.htmega-testimonialgrid-style-3 .testimonal .content {
margin-top: 0;
padding-top: 73px;
}
.htmega-testimonialgrid-style-3 .testimonal .content p {
color: #5b5b5b;
font-size: 14px;
font-style: italic;
line-height: 24px;
margin-bottom: 4px;
padding: 0 4%;
}
.htmega-testimonialgrid-style-3 .testimonal .content h4 {
color: #5b5b5b;
font-size: 16px;
font-weight: 600;
line-height: 37px;
margin: 0;
} .htmega-testimonialgrid-style-4 .testimonal .content {
background: #fff none repeat scroll 0 0;
box-shadow: 0 0 10px rgba(82, 182, 188, 0.25);
padding: 50px 9%;
position: relative;
text-align: center;
}
.htmega-testimonialgrid-style-4 .testimonal .clint-info {
margin-top: 40px;
text-align: center;
}
.htmega-testimonialgrid-style-4 .testimonal img {
border: 2px solid #ececec;
border-radius: 50%;
box-sizing: content-box;
display: inline-block;
max-width: 80px;
}
.htmega-testimonialgrid-style-4 .testimonal .clint-info h4 {
color: #5c5c5c;
font-size: 22px;
font-weight: 700;
margin-bottom: 4px;
margin-top: 22px;
}
.htmega-testimonialgrid-style-4 .testimonal .clint-info span {
color: #5c5c5c;
font-size: 15px;
font-weight: 600;
}
.htmega-testimonialgrid-style-4 .testimonal .content .triangle {
border-color: #fff transparent transparent;
border-style: solid;
border-width: 20px;
left: 50%;
margin-top: -1px;
position: absolute;
top: 100%;
transform: translateX(-50%);
} .htmega-testimonialgrid-style-5 .testimonal{
background: #f7f8f9 none repeat scroll 0 0;
margin-top: 30px;
padding: 48px 30px;
}
.htmega-testimonialgrid-style-5 .clint-info h4 {
color: #383838;
font-size: 18px;
font-weight: 600;
margin-bottom: 1px;
}
.htmega-testimonialgrid-style-5 p {
color: #5b5b5b;
font-size: 14px;
font-style: italic;
line-height: 26px;
}
.htmega-testimonialgrid-style-5 .clint-info span {
color: #1834a6;
font-size: 14px;
}
.clint-info .rating {
color: #ffcf0e;
display: flex;
list-style: outside none none;
margin: 4px 0 0;
padding: 0;
}
.clint-info .rating li {
margin-right: 8px;
} .navigation_service .htmega-service-style-7::before{
display: none;
}
.elementor-widget-htmega-scrollnavigation-addons .swiper-container {
height: 100vh;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.swiper-pagination-bullet {
background: #3746ad none repeat scroll 0 0;
border-radius: 100%;
display: inline-block;
height: 26px;
opacity: 1;
width: 26px;
opacity:1 !important;
}
.swiper-pagination-bullet-active {
background: #ffffff;
}
.scroll-navigation-inner .elementor-section.elementor-section-height-full {
height: 100vh;
}
.scroll-navigation-inner .elementor-section.elementor-section-items-middle > .elementor-container {
align-items: center;
height: 100vh;
} .htmega-call-to-action{
text-align: center;
}
.htmega-call-to-action .htmega-content .htmega-callto-action-description {
color: #ffffff;
font-size: 16px;
margin: 0;
}
.htmega-call-to-action .htmega-content .htmega-callto-action-title {
color: #f7ca18;
font-size: 80px;
font-weight: 600;
margin-bottom: 27px;
font-family: "Poppins", sans-serif;
}
.htmega-call-to-action .htmega-content a.call_btn {
background: #f7ca18;
height: 47px;
padding: 0 38px;
display: inline-block;
line-height: 47px;
border-radius: 25px;
color: #000000;
font-size: 14px;
transition: 0.4s ease-in-out;
text-decoration: none;
}
.htmega-call-to-action .htmega-content a.call_btn:hover {
background: #ffffff;
color: #18012c;
} .callto-action-style-2 .htmega-content .htmega-callto-action-title {
color: #ffffff;
font-family: "Poppins", sans-serif;
font-size: 38px;
font-weight: 600;
margin-bottom: 6px;
}
.callto-action-style-2 .htmega-content .htmega-callto-action-description {
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-weight: 300;
font-size: 18px;
margin: 0;
}
.callto-action-style-2 a.call_btn {
height: 48px !important;
display: inline-block;
border: 2px solid #ffffff;
color: #ffff;
border-radius: 25px;
padding: 0 46px;
line-height: 43px !important;
font-size: 14px;
font-weight: 600;
transition: 0.4s ease-in-out;
}
.callto-action-style-2 a.call_btn:hover {
background: #ffffff;
color: #18012c;
border: 2px solid #ffffff;
} .callto-action-style-3{
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 70px 98px;
}
.callto-action-style-3 .htmega-content{
display: flex;
align-items: center;
justify-content: space-around;
}
.callto-action-style-3 {
position: relative;
}
.callto-action-style-3::before {
position: absolute;
content: "";
background: #999999;
height: 50px;
width: 2px;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.callto-action-style-3 .htmega-content .htmega-callto-action-description {
color: #000000;
font-size: 14px;
line-height: 25px;
margin-bottom: 5px;
}
.callto-action-style-3 .htmega-content .htmega-callto-action-title {
color: #000000;
font-weight: 500;
font-size: 24px;
margin: 0;
}
.callto-action-style-3 a.call_btn {
height: 50px !important;
display: inline-block;
border: 2px solid #000000;
color: #000000;
border-radius: 25px;
padding: 0 60px;
line-height: 46px;
font-size: 14px;
font-weight: 600;
transition: 0.4s ease-in-out;
}
.callto-action-style-3 a.call_btn:hover {
background: #000000;
color: #ffffff;
border: 2px solid #000000;
} .callto-action-style-4 .htmega-content .htmega-callto-action-title {
color: #ffffff;
font-weight: 400;
font-size: 36px;
margin-bottom: 21px;
}
.callto-action-style-4 .htmega-content .htmega-callto-action-description {
color: #ffffff;
font-size: 18px;
line-height: 35px;
padding: 0 17%;
margin-bottom: 34px;
}
.callto-action-style-4 a.call_btn {
background: #ffffff;
height: 50px;
display: inline-block;
padding: 0 40px;
line-height: 50px;
border-radius: 25px;
color: #0056ff;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
transition: 0.4s ease-in-out;
}
.callto-action-style-4 a.call_btn:hover {
background: #18012c;
color: #ffffff;
} .callto-action-style-5 .htmega-content .htmega-callto-action-title {
color: #ffffff;
font-size: 40px;
line-height: 60px;
font-weight: 500;
padding: 0 19%;
}
.callto-action-style-5 .htmega-content .htmega-callto-action-description {
color: #ffffff;
font-size: 18px;
margin-bottom: 44px;
font-family: 'Rubik', sans-serif;
}
.callto-action-style-5 a.call_btn {
border: 2px solid #ffffff;
height: 50px !important;
display: inline-block;
padding: 0 46px;
line-height: 48px;
color: #ffffff;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
border-radius: 4px;
transition: 0.4s ease-in-out;
font-family: 'Rubik', sans-serif;
}
.callto-action-style-5 a.call_btn:hover {
background: #ffffff;
color: #18012c;
} .callto-action-style-6 .htmega-content .htmega-callto-action-title {
color: #494949;
font-size: 40px;
line-height: 58px;
font-weight: 500;
}
.callto-action-style-6 .htmega-content .htmega-callto-action-description {
color: #494949;
font-size: 18px;
margin-bottom: 32px;
line-height: 30px;
padding-right: 27%;
}
.callto-action-style-6 a.call_btn {
height: 50px !important;
display: inline-block;
padding: 0 37px;
line-height: 50px;
color: #ffffff;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
transition: 0.4s ease-in-out;
background: #e97730;
font-family: "Montserrat", sans-serif;
}
.callto-action-style-6 a.call_btn:hover {
background: #18012c;
color: #ffffff;
} .callto-action-style-7 .call-to-action-inner {
display: inline-block;
padding: 100px 240px;
background: rgba(255, 255, 255, 0.6);
}
.callto-action-style-7 .htmega-content .htmega-callto-action-title, .callto-action-style-7 .htmega-content .htmega-callto-action-description {
color: #1e1e1e;
font-size: 42px;
line-height: 53px;
font-weight: 700;
font-family: 'Cormorant Garamond', serif;
margin-bottom: 29px;
}
.callto-action-style-7 a.call_btn {
display: inline-block;
color: #2c2c2c;
font-weight: 600;
font-size: 24px;
transition: 0.4s ease-in-out;
font-family: 'Cormorant Garamond', serif;
border-bottom: 2px solid #4f4848;
}
.callto-action-style-7 a.call_btn:hover {
color: #18012c;
border-bottom: 2px solid #18012c;
} .htmega-twitter-area button.slick-arrow {
border: 0 none;
color: #2d3e50;
font-size: 60px;
left: -60px;
position: absolute;
top: 26%;
background: transparent;
height: inherit;
padding: 0;
transition: all 0.3s ease-in-out;
z-index: 2;
}
.htmega-twitter-area button.htmega-carosul-next {
left: auto;
right: -60px;
}
.htmega-twitter-area .slick-dots li button::before{
display: none;
}
.htmega-twitter-area .slick-dots li {
width: 10px;
height: 10px;
}
.htmega-twitter-area .slick-dots li button {
background: #000000 none repeat scroll 0 0;
border-radius: 100%;
padding: 0;
width: 10px;
height: 10px;
}
.htmega-twitter-area .slick-dots li.slick-active button {
background: #F15D67 none repeat scroll 0 0;
} .htmega-twitter-single {
display: flex;
padding-right: 15px;
}
.htmega-twitter-single .htmega-thumb {
padding-right: 30px;
}
.htmega-twitter-single .htmega-thumb img {
max-width: 70px;
border: 1px solid #eaeaea;
}
.htmega-twitter-single .htmega-content {
margin-top: -7px;
}
.htmega-twitter-single .htmega-content .htmega-author {
margin-bottom: 6px;
}
.htmega-twitter-single .htmega-content .htmega-author h6 {
display: inline-block;
font-weight: 400;
font-size: 14px;
margin: 0;
position: relative;
}
.htmega-twitter-single .htmega-content .htmega-author h6 a {
color: #5c5c5c;
transition: 0.3s ease-in-out;
}
.htmega-twitter-single .htmega-content .htmega-author h6 a:hover {
color: #18012c;
}
.htmega-twitter-single .htmega-content .htmega-author span::before {
position: absolute;
content: "";
left: 0;
background: #000;
height: 14px;
width: 1px;
top: 50%;
transform: translateY(-50%);
}
.htmega-twitter-single .htmega-content .htmega-author span {
color: #000000;
font-size: 14px;
padding-left: 10px;
margin-left: 10px;
position: relative;
display: inline-block;
}
.htmega-twitter-single .htmega-content p {
color: #434343;
font-size: 14px;
line-height: 25px;
margin-bottom: 10px;
}
.htmega-twitter-single .htmega-content p a {
color: #00c8fa;
}
.htmega-twitter-single .htmega-content ul.twitter-meta {
padding: 0;
margin: 0;
list-style: none;
display: flex;
}
.htmega-twitter-single .htmega-content ul.twitter-meta li {
margin-right: 14px;
padding-right: 14px;
position: relative;
}
.htmega-twitter-single .htmega-content ul.twitter-meta li a {
color: #aaaaaa;
font-size: 13px;
transition: 0.3s ease-in-out;
}
.htmega-twitter-single .htmega-content ul.twitter-meta li a:hover {
color: #18012c;
}
.htmega-twitter-single .htmega-content ul.twitter-meta li a i {
padding-right: 10px;
}
.htmega-twitter-single .htmega-content ul.twitter-meta li::after {
position: absolute;
content: "";
background: #000;
width: 1px;
height: 11px;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.htmega-twitter-single .htmega-content ul.twitter-meta li:last-child::after {
display: none;
} .htmega-twitter-style-2 .htmega-twitter-single{
background: #fff;
padding: 40px;
border-radius: 4px;
display: block;
}
.htmega-twitter-style-2 .htmega-twitter-single .htmega-content .htmega-author span::before{
display: none;
}
.htmega-twitter-style-2 .htmega-twitter-single .htmega-content .htmega-author span{
padding: 0;
margin: 0;
}
.htmega-twitter-style-2 .ht-twitter-container {
display: flex;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-thumb {
padding-right: 30px;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-thumb img {
max-width: 70px;
border: 1px solid #eaeaea;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content {
margin-top: -7px;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author {
margin-bottom: 6px;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 {
display: inline-block;
font-weight: 400;
font-size: 14px;
margin: 0;
position: relative;
font-family: "Poppins", sans-serif;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 a {
color: #000000;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 a:hover {
color: #18012c;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 a span {
color: #a6a6a6;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author span {
color: #000000;
font-size: 14px;
padding-left: 10px;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content p {
color: #434343;
font-size: 14px;
line-height: 25px;
margin-bottom: 10px;
}
.htmega-twitter-style-2 .ht-twitter-container .htmega-content p a {
color: #00c8fa;
}
.htmega-twitter-style-2 .twitter-meta-inner {
display: flex;
justify-content: space-between;
}
.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta {
padding: 0;
margin: 0 -10px;
list-style: none;
display: flex;
}
.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta li {
position: relative;
margin: 0 10px;
}
.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta li a {
color: #878787;
font-size: 13px;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta li a:hover {
color: #18012c;
}
.htmega-twitter-style-2 .twitter-meta-inner p {
margin: 0;
color: #7f7f7f;
font-size: 12px;
}
.htmega-twitter-style-2 .slick-slide {
padding: 0px 15px;
}
.htmega-twitter-style-2 .slick-dots {
bottom: -45px;
} .htmega-twitter-style-3 .htmega-twitter-single{
background: #ffffff;
border: 1px solid #eaeaea;
padding: 30px 15px 30px 20px;
}
.htmega-twitter-style-3 .htmega-twitter-single .htmega-content ul.twitter-meta li{
padding: 0;
}
.htmega-twitter-style-3 .htmega-twitter-single .htmega-content ul.twitter-meta li::after{
display: none;
}
.htmega-twitter-style-3 .htmega-content .htmega-author {
margin-bottom: 6px;
}
.htmega-twitter-style-3 .htmega-content .htmega-author h6 {
display: inline-block;
font-weight: 400;
font-size: 14px;
margin: 0;
position: relative;
}
.htmega-twitter-style-3 .htmega-content .htmega-author h6 a {
color: #5c5c5c;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-3 .htmega-content .htmega-author h6 a:hover {
color: #18012c;
}
.htmega-twitter-style-3 .htmega-content .htmega-author span::before {
position: absolute;
content: "";
left: 0;
background: #000;
height: 14px;
width: 1px;
top: 50%;
transform: translateY(-50%);
}
.htmega-twitter-style-3 .htmega-content .htmega-author span {
color: #000000;
font-size: 14px;
padding-left: 10px;
margin-left: 10px;
position: relative;
}
.htmega-twitter-style-3 .htmega-content p {
color: #434343;
font-size: 14px;
line-height: 25px;
margin-bottom: 10px;
}
.htmega-twitter-style-3 .htmega-content p a {
color: #00c8fa;
}
.htmega-twitter-style-3 .htmega-content ul.twitter-meta {
padding: 0;
margin: 0 -10px;
list-style: none;
display: flex;
}
.htmega-twitter-style-3 .htmega-content ul.twitter-meta li {
position: relative;
margin: 0 10px;
}
.htmega-twitter-style-3 .htmega-content ul.twitter-meta li a {
color: #aaaaaa;
font-size: 13px;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-3 .htmega-content ul.twitter-meta li a:hover {
color: #18012c;
}
.htmega-twitter-style-3 .slick-slide {
padding: 0px 15px;
} .htmega-twitter-style-4 .htmega-twitter-single{
display: block;
padding: 0;
}
.htmega-twitter-style-4 .htmega-twitter-single .htmega-content ul.twitter-meta li{
padding: 0;
}
.htmega-twitter-style-4 .htmega-twitter-single .htmega-content ul.twitter-meta li::after{
display: none;
}
.htmega-twitter-style-4 .htmega-thumb img {
max-width: 70px;
border: 1px solid #eaeaea;
}
.htmega-twitter-style-4 .htmega-content {
padding-top: 25px;
}
.htmega-twitter-style-4 .htmega-content .htmega-author {
margin-bottom: 6px;
}  
.htmega-twitter-style-4 .htmega-content .htmega-author h6 a {
color: #5c5c5c;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-4 .htmega-content .htmega-author h6 a:hover {
color: #18012c;
}
.htmega-twitter-style-4 .htmega-content .htmega-author span {
color: #000000;
font-size: 14px;
padding-left: 10px;
}
.htmega-twitter-style-4 .htmega-content p {
color: #434343;
font-size: 14px;
line-height: 25px;
margin-bottom: 10px;
}
.htmega-twitter-style-4 .htmega-content p a {
color: #00c8fa;
}
.htmega-twitter-style-4 .htmega-content ul.twitter-meta {
padding: 0;
margin: 0;
list-style: none;
display: flex;
padding-top: 20px;
border-top: 1px solid #00c8fa;
justify-content: space-between;
}
.htmega-twitter-style-4 .htmega-content ul.twitter-meta li {
position: relative;
}
.htmega-twitter-style-4 .htmega-content ul.twitter-meta li a {
color: #aaaaaa;
font-size: 13px;
transition: 0.3s ease-in-out;
display: block;
}
.htmega-twitter-style-4 .htmega-content ul.twitter-meta li a:hover {
color: #18012c;
}
.htmega-twitter-style-4 .htmega-content ul.twitter-meta li a i {
padding-right: 10px;
}
.htmega-twitter-style-4 button.slick-arrow {
border: 1px solid #000000;
border-radius: 100%;
color: #000000;
font-size: 30px;
height: 50px;
line-height: 35px;
width: 50px;
}
.htmega-twitter-style-4 .slick-slide {
padding: 0px 15px;
} .htmega-twitter-style-5 .htmega-twitter-single{
background: #ffffff;
padding: 30px 15px 30px 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 5px;
}
.htmega-twitter-style-5 .htmega-content .htmega-author {
margin-bottom: 6px;
}
.htmega-twitter-style-5 .htmega-content .htmega-author h6 a {
color: #5c5c5c;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-5 .htmega-content .htmega-author h6 a:hover {
color: #18012c;
}   
.htmega-twitter-style-5 .htmega-content p {
color: #434343;
font-size: 14px;
line-height: 25px;
margin-bottom: 10px;
}
.htmega-twitter-style-5 .htmega-content p a {
color: #00c8fa;
}
.htmega-twitter-style-5 .twitter-meta-inner {
display: flex;
justify-content: space-between;
}
.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta {
padding: 0;
margin: 0 -10px;
list-style: none;
display: flex;
}
.htmega-twitter-style-5 .htmega-twitter-single .htmega-content ul.twitter-meta li::after{
display: none;
}
.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta li {
position: relative;
margin: 0 10px;
padding: 0;
}
.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta li a {
color: #878787;
font-size: 13px;
transition: 0.3s ease-in-out;
}
.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta li a:hover {
color: #18012c;
}
.htmega-twitter-style-5 .twitter-meta-inner p {
margin: 0;
color: #7f7f7f;
font-size: 12px;
}
.htmega-twitter-style-5 .slick-slide {
padding: 0px 15px;
} .htmega-post-grid-layout-3 .row-1 > .htb-col-lg-6 > .ht-post,
.htmega-post-grid-layout-3 .row-1 > .htb-col-lg-6 > .ht-post .thumb,
.htmega-post-grid-layout-3 .row-1 > .htb-col-lg-6 > .ht-post .thumb a,
.htmega-post-grid-layout-5 .ht-post,
.htmega-post-grid-layout-5 .ht-post .thumb,
.htmega-post-grid-layout-5 .ht-post .thumb a
{
height: 100%;
}
.htmega-post-grid-layout-5 .row--10 > [class*="col"]{
padding: 10px;
} .htmega-post-grid-area .row-1.htb-row .row-1 {
margin: 0;
}
.ht-post-grid-tab {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: space-between;
}
.ht-post-grid-tab .post-grid{
overflow: hidden;
}
.htmega-post-gridtab-layout-1 .post-grid,.htmega-post-gridtab-layout-3 .post-grid {
padding: 0 1px;
margin-bottom: 2px;
}
.htmega-post-gridtab-layout-1 .post-content,.htmega-post-gridtab-layout-3 .post-content {
margin: 0 1px;
}
.htmega-post-gridtab-layout-2 .post-grid,.htmega-post-gridtab-layout-4 .post-grid {
padding: 0 15px;
margin-bottom: 30px;
}
.htmega-post-gridtab-layout-2 .post-content,.htmega-post-gridtab-layout-4 .post-content {
margin: -30px 15px 0;
}
.htmega-post-gridtab-layout-5 .post-grid {
padding: 0 10px;
margin-bottom: 20px;
}
.htmega-post-gridtab-layout-5 .post-content {
margin: -20px 10px 0;
}
.ht-post-grid-tab .post-grid.post-grid-one-third {
min-width: calc(33.33%);
width: calc(33.33%);
}
.ht-post-grid-tab .post-grid.post-grid-half {
min-width: calc(50%);
width: calc(50%);
}
.ht-post-grid-tab .post-grid.post-grid-four {
min-width: calc(25%);
width: calc(25%);
}
.ht-post-grid-tab .post-grid.post-third-of-four {
min-width: calc(75%);
width: calc(75%);
}
.ht-post-grid-tab .post-content {
text-align: center;
z-index: 9;
display: none;
}
.ht-post-grid-tab .post-content.is-visible {
display: block;
}
.post-content {
position: relative;
}
.post-content .close__wrap {
position: absolute;
top: 30px;
right: 30px;
z-index: 9;
}
.post-content .close__wrap button {
background: #2a47e0 none repeat scroll 0 0;
border: 0 none;
color: #fff;
line-height: 1;
padding: 10px;
}
.post-grid .thumb a img {
width: 100%;
object-fit: cover;
height: 100%;
}
.post-grid .thumb,.post-grid .thumb a{
height: 100%;
}
.post-grid .thumb a{
width: 100%;
}
.single-post-grid-tab {
padding: 30px;
border: 1px solid #dfdfdf;
background: #f1f1f1;
overflow: hidden;
}
.single-post-grid-tab .thumb a img {
width: 100%;
}
.single-post-grid-tab .thumb{
overflow: hidden;
}
.ht-mega-post-grid-right .content {
height: 100%;
display: flex;
align-items: center;
}
.ht-mega-post-grid-left {
display: flex;
align-items: center;
}
.single-post-grid-tab .post-inner {
text-align: left;
}
.single-post-grid-tab .post-inner h2 {
font-size: 24px;
line-height: 36px;
margin-top: 20px;
}
.single-post-grid-tab .post-inner h2 a {
color: #464545;
}
.single-post-grid-tab .post-inner .meta {
list-style: none;
color: #fff;
padding: 0;
margin: 0;
display: block;
margin: 0 -15px;
}
.single-post-grid-tab .post-inner .meta li {
color: #464545;
font-size: 13px;
letter-spacing: 2px;
margin: 0 15px;
display: inline-block;
}
.single-post-grid-tab .post-inner .meta li i {
color: #464545;
}
.single-post-grid-tab .post-inner .meta li a {
color: #464545;
}
.single-post-grid-tab .post-inner p {
color: #494849;
font-size: 14px;
line-height: 28px;
margin-top: 17px;
margin-bottom: 28px;
}
.single-post-grid-tab .post-inner .post-category {
display: flex;
padding: 0;
list-style: none;
margin-left: 0;
}
.single-post-grid-tab .post-inner .post-category li {
margin-right: 10px;
transition: 0.4s ease-in-out;
}
.single-post-grid-tab .post-inner .post-category li a {
background: #2a47e0 none repeat scroll 0 0;
color: #fff;
font-size: 13px;
font-weight: 300;
letter-spacing: 1px;
padding: 2px 7px;
text-transform: uppercase;
}
.single-post-grid-tab .post-inner .post-btn a.readmore-btn {
background: transparent;
display: inline-block;
padding: 0 37px;
border-radius: 23px;
font-size: 14px;
font-weight: 400;
line-height: 44px;
transition: 0.4s ease-in-out;
color: #494849;
border: 1px solid #494849;
} @media (max-width: 991px) {
.ht-mega-post-grid-right .content {
margin-bottom: 15px;
}
.single-post-grid-tab .htb-row{
flex-direction: column-reverse;
}
} .ht-custom-carousel .single-custom-carousel img {
width: 100%;
}
.htmega-carousel-style-1 .slick-slide .single-custom-carousel img {
transition: all 0.3s ease 0s;
display: block;
}
.htmega-carousel-style-1 .single-custom-carousel {
position: relative;
transition: all 0.3s ease 0s;
}
.htmega-carousel-style-1 .slick-slide.slick-active .single-custom-carousel {
transform: scale(1.15);
}
.htmega-carousel-style-1 .slick-slide.slick-center .single-custom-carousel {
transform: scale(1.3);
}
.htmega-carousel-style-1 .slick-slide.slick-active{
z-index: 990;
position: relative;
}
.htmega-carousel-style-1 .slick-slide.slick-center {
z-index: 999;
position: relative;
}
.htmega-carousel-style-1 .slick-slide {
padding: 72px 0;
transition: all 0.3s ease 0s;
} .htmega-carousel-activation .slick-arrow{
padding: 0;
}
.htmega-carousel-activation .slick-dots {
text-align: center;
bottom: -60px;
}
.htmega-carousel-activation .slick-dots li {
display: inline-block;
margin: 0;
}
.htmega-carousel-activation .slick-dots li button {
border: 1px solid #863F51;
width: 12px;
height: 12px;
padding: 0;
border-radius: 50%;
background-color: transparent;
text-indent: -9999px;
}
.htmega-carousel-activation .slick-dots li.slick-active button {
background-color: #863F51;
} .htmega-carousel-style-2 .slick-slide .single-custom-carousel img {
transition: all 0.3s ease 0s;
display: block;
}
.htmega-carousel-style-2 .single-custom-carousel {
position: relative;
transition: all 0.3s ease 0s;
padding: 0 40px;
transform: scale(1.1);
}
.htmega-carousel-style-2 .slick-slide.slick-center .single-custom-carousel {
transform: scale(1.3);
}
.htmega-carousel-style-2 .slick-slide.slick-center {
z-index: 999;
position: relative;
}
.htmega-carousel-style-2 .slick-slide.slick-active {
transition: all 0.3s ease 0s;
}
.htmega-carousel-style-2 .slick-slide {
padding: 72px 0;
transition: all 0.3s ease 0s;
}
.htmega-carousel-style-2 {
position: relative;
}
.htmega-carousel-style-2 button.slick-arrow,.htmega-carousel-style-3 button.slick-arrow {
position: absolute;
left: -80px;
top: 50%;
transform: translateY(-50%);
background: #000000;
color: #f4f4f4;
width: 40px;
height: 40px;
border: 0 none;
border-radius: 100%;
padding: 0;
margin: 0;
font-size: 30px;
transition: 0.3s ease-in-out;
line-height: 28px;
}
.htmega-carousel-style-2 button.slick-arrow:hover,.htmega-carousel-style-3 button.slick-arrow:hover {
background: #0056ff;
color: #fff;
}
.htmega-carousel-style-2 button.htmega-carosul-next,.htmega-carousel-style-3 button.htmega-carosul-next {
left: auto;
right: -80px;
} .htmega-carousel-style-3 .slick-slide {
margin: 0px 15px;
}
.htmega-carousel-style-3 .slick-list.draggable {
margin: 0 -15px;
}
.htmega-carousel-style-3 .slick-dots {
bottom: -60px;
}
.htmega-carousel-style-3 .slick-dots li {
width: 10px;
height: 10px;
margin: 0 5px;
padding: 0;
}
.htmega-carousel-style-3 .slick-dots li button {
width: 10px;
height: 10px;
padding: 0;
background: #000;
border-radius: 100%;
border: 0;
}
.htmega-carousel-style-3 .slick-dots li button::before {
display: none;
}
.htmega-carousel-style-3 .slick-dots li.slick-active button {
background: #00c8fa;
} .htmega-carousel-style-4 {
position: relative;
}
.htmega-carousel-style-4 button.slick-arrow {
position: absolute;
top: 50%;
left: 0;
color: #f4f4f4;
border: 0 none;
font-size: 30px;
background: transparent;
width: 40px;
height: 50px;
line-height: 45px;
background: #000000;
transform: translateY(-50%);
z-index: 2;
padding: 0;
}
.htmega-carousel-style-4 button.htmega-carosul-next {
left: auto;
right: 0;
}
.htmega-carousel-style-4 .slick-list {
margin: 0 -15px;
}
.htmega-carousel-style-4 .slick-slide {
margin: 0px 15px;
} .htmega-carousel-style-5 .slick-slide {
margin: 0px 15px;
}
.htmega-carousel-style-5 .slick-list {
margin: 0 -15px;
}
.htmega-carousel-style-5 .slick-dots {
bottom: -40px;
background: #dbdbdb;
height: 8px;
border-radius: 4px;
left: 0;
right: 0;
width: auto;
}
.htmega-carousel-style-5 .slick-dots li {
width: 33.33%;
height: 8px;
margin: 0;
left: 0;
top: -13px;
transition: 0.4s ease-in-out;
}
.htmega-carousel-style-5 .slick-dots li::before {
position: absolute;
content: "";
left: 0;
top: 0;
width: 0;
height: 100%;
background: #0056ff;
border-radius: 4px;
transition: 0.4s ease-in-out;
}
.htmega-carousel-style-5 .slick-dots li button {
width: 33.33%;
height: 8px;
margin: 0;
left: 0;
}
.htmega-carousel-style-5 .slick-dots li button{
border: none;
}
.htmega-carousel-style-5 .slick-dots li.slick-active button{
background: transparent;
}
.htmega-carousel-style-5 .slick-dots li button::before {
display: none;
}
.htmega-carousel-style-5 .slick-dots li.slick-active::before {
width: 100%;
} .htmega-carousel-style-6 button.slick-arrow {
position: absolute;
top: 50%;
left: 0;
color: #f4f4f4;
border: 0 none;
font-size: 30px;
background: transparent;
width: 40px;
height: 50px;
background: #000000;
transform: translateY(-50%);
z-index: 2;
padding: 0;
}
.htmega-carousel-style-6 button.htmega-carosul-next {
left: auto;
right: 0;
}
.htmega-carousel-style-6 .slick-dots {
background: #19243c none repeat scroll 0 0;
margin-top: -8px;
position: static;
}
.htmega-carousel-style-6 .slick-dots li {
display: inline-block;
height: inherit;
padding: 30px 55px;
position: relative;
text-align: center;
width: auto;
z-index: 2;
}
.htmega-carousel-style-6 .slick-dots li h6 {
color: #ffffff;
font-size: 14px;
font-weight: 600;
margin: 0;
position: relative;
z-index: 3;
}
.htmega-carousel-style-6 .slick-dots li.slick-active::before {
position: absolute;
content: "";
background: #223152;
z-index: 1;
width: 100%;
height: 116%;
bottom: 0;
left: 0;
} .htmega-carousel-style-7 button.slick-arrow {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
background: transparent;
color: #f4f4f4;
border: 0 none;
border-radius: 100%;
padding: 0;
margin: 0;
font-size: 48px;
transition: 0.3s ease-in-out;
z-index: 1;
}
.htmega-carousel-style-7 button.slick-arrow:hover {
color: #18012c;
}
.htmega-carousel-style-7 button.htmega-carosul-next {
left: auto;
right: 20px;
} .htmega-doule-btn svg{
width: 20px;
}
.htmega-double-button-area{
display: flex;
}
.htmega-doublebutton {
display: flex;
position: relative;
width: 40%;
}
span.htmega-middle-text{
background: #ffffff none repeat scroll 0 0;
border-radius: 100%;
color: #000000;
font-family: "Montserrat",sans-serif;
font-size: 12px;
height: 26px;
left: 50%;
line-height: 25px;
position: absolute;
text-align: center;
top: 50%;
transform: translateX(-50%) translateY(-50%);
width: 26px;
z-index: 3;
}
.htmega-doublebutton a.htmega-doule-btn {
color: #ffffff;
font-family: "Montserrat",sans-serif;
font-size: 14px;
height: 50px;
line-height: 50px;
transition: all 0.4s ease-in-out 0s;
background: #a7d1b0 none repeat scroll 0 0;
border-radius: 25px 0 0 25px;
text-decoration: none;
width: 100%;
text-align: center;
}
.htmega-doublebutton a.htmega-doule-btn:hover,.htmega-doublebutton a.htmega-doule-btn.btn-two:hover {
background: #18012c none repeat scroll 0 0;
color: #ffffff;
}
.htmega-doublebutton a.htmega-doule-btn.btn-two {
background: #fa9866 none repeat scroll 0 0;
border-radius: 0 25px 25px 0;
}
.htmega-doublebutton a.htmega-doule-btn-size-sm{
height: 46px;
line-height: 46px;
}
.htmega-doublebutton a.htmega-doule-btn-size-md{
height: 50px;
line-height: 50px;
}
.htmega-doublebutton a.htmega-doule-btn-size-lg{
height: 60px;
line-height: 60px;
}
.htmega-doublebutton a.htmega-doule-btn-size-xl{
height: 70px;
line-height: 70px;
}
.htmega-doublebutton a.htmega-doule-btn-size-xs{
height: 40px;
line-height: 40px;
} .before_bg{
overflow: hidden;
}
.before_bg a.htmega-doule-btn{
position: relative;
background: transparent !important;
z-index: 1;
}
.before_bg a.htmega-doule-btn::before {
background-color: #a7d1b0;
content: "";
display: block;
height: 100%;
left: -16px;
position: absolute;
top: 0;
transform: skewX(-24deg);
width: 112%;
z-index: -1;
transition: 0.4s;
}
.before_bg a.htmega-doule-btn.btn-two::before {
background-color: #fa9866;
left: 0;
right: -16px;
} .htmega-banner .banner-thumb > a { position: relative;
display: block;
line-height: 0;
}
.htmega-banner .banner-thumb{
line-height: 0;
}
.htmega-banner .banner-thumb *{
line-height: normal;
}
.htmega-banner .banner-content a{
display: inline-block;
}
.htmega-banner .banner-thumb a::before {
background: rgba(255, 255, 255, 0.3);
content: "";
height: 0;
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
top: 0;
transition: all 0.5s ease 0s;
width: 0;
}
.htmega-banner .banner-thumb a::after {
background: rgba(255, 255, 255, 0.3);
bottom: 0;
content: "";
height: 0;
opacity: 0;
pointer-events: none;
position: absolute;
right: 0;
transition: all 0.5s ease 0s;
width: 0;
}
.htmega-banner .banner-thumb a img {
width: 100%;
}
.htmega-banner:hover .banner-thumb a::before {
height: 100%;
opacity: 1;
width: 100%;
}
.htmega-banner:hover .banner-thumb a::after {
height: 100%;
opacity:1;
width: 100%;
}
.htmega-banner {
position: relative;
}
.htmega-banner .banner-content a {
border-bottom: 1px solid #909b74;
color: #383838;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
transition: all 0.4s ease 0s;
text-decoration: none;
}
.htmega-banner .banner-content{
position: absolute;
z-index: 2;
width: 100%;
text-align: center;
} .htmega-banner-content-pos-center .banner-content{
top: 50%;
right: 0;
left: auto;
padding-right: 30px;
transform: translateY(-50%);
}
.htmega-banner-content-pos-bottom .banner-content {
bottom: 0;
padding-bottom: 40px;
}
.htmega-banner-content-pos-top .banner-content {
top: 0;
padding-top: 40px;
} .htmega-banner-style-1 .banner-content h6 {
color: #1f1e26;
font-size: 20px;
font-weight: 700;
letter-spacing: 11px;
text-transform: uppercase;
margin-bottom: 0;
font-family: "Poppins", sans-serif;
}
.htmega-banner-style-1 .banner-content h2 {
color: #1f1e26;
font-size: 60px;
text-transform: uppercase;
margin-bottom: 1px;
font-family: "Poppins", sans-serif;
}
.htmega-banner-style-1 .banner-content p {
color: #1f1e26;
font-size: 16px;
text-transform: uppercase;
margin: 0;
}
.htmega-banner-style-1 .banner-content h3 {
color: #1f1e26;
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 6px;
font-family: "Poppins", sans-serif;
}
.htmega-banner-style-1 .banner-content a {
color: #383838;
font-weight: 700;
text-transform: uppercase;
font-size: 14px;
border-bottom: 1px solid #909b74;
transition: 0.4s;
} .htmega-banner-style-2 .banner-content h2{
color: #1f1e26;
font-family: "Poppins",sans-serif;
font-size: 24px;
font-weight: 700;
margin-bottom: 6px;
text-transform: uppercase;
} .htmega-banner-style-3 .banner-content h2 {
color: #242424;
font-size: 30px;
font-weight: 400;
margin-bottom: 6px;
font-family: 'Prata', serif;
}
.htmega-banner-style-3 .banner-content p {
color: #1f1e26;
font-size: 14px;
text-transform: uppercase;
margin: 0;
font-weight: 400;
font-family: 'Rubik', sans-serif;
} .htmega-banner-style-4 .banner-content h2 {
color: #ffffff;
font-size: 20px;
font-weight: 800;
margin-bottom: 10px;
font-family: 'Open Sans', sans-serif;
}
.htmega-banner-style-4 .banner-content p {
color: #ffffff;
margin: 0;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
line-height: 26px;
padding-right: 77px;
margin-bottom: 15px;
}
.htmega-banner-style-4 .banner-content a {
font-family: 'Open Sans', sans-serif;
font-weight: 600;
background: #ffffff;
height: 30px;
display: inline-block;
padding: 0 15px;
line-height: 30px;
color: #000000;
font-size: 12px;
border-radius: 20px;
transition: 0.4s ease-in-out;
}
.htmega-banner-style-4 .banner-content a:hover {
background: #18012c;
color: #fff;
}
.htmega-banner-style-4 .banner-content {
text-align: left;
padding-left: 40px;
padding-top: 40px;
padding-right: 40px;
} .htmega-banner-style-5 .banner-content h2 {
color: #646161;
font-size: 24px;
font-weight: 700;
margin-bottom: 0;
font-family: 'Rubik', sans-serif;
}
.htmega-banner-style-5 .banner-content h2 span {
color: #f3a395;
}
.htmega-banner-style-5 .banner-content span {
color: #f3a395;
font-size: 24px;
font-weight: 700;
margin-bottom: 0;
font-family: 'Rubik', sans-serif;
}
.htmega-banner-style-5.htmega-banner-content-pos-center .banner-content {
top: 50%;
transform: translateY(-50%);
right: 0;
padding-right: 30px;
}
.htmega-banner-style-5 .banner-thumb a::before,.htmega-banner-style-6 .banner-thumb a::before {
background: transparent none repeat scroll 0 0;
border: 1px solid #f3a395;
content: "";
height: 100%;
left: 0px;
opacity: 1;
position: absolute;
top: 0px;
transition: all 0.4s ease 0s;
width: 100%;
z-index: 1;
} .htmega-banner-style-6 .banner-content {
display: flex;
justify-content: space-between;
flex-direction: column;
top: 0;
width: 100%;
text-align: center;
padding: 40px 0;
height: 100%;
transform: translateY(0);
}
.htmega-banner-style-6 .banner-content h2{
color: #646161;
font-family: "Rubik",sans-serif;
font-size: 24px;
font-weight: 700;
margin-bottom: 0;
}
.htmega-banner-style-6 .banner-content p {
color: #f3a395;
font-family: "Rubik",sans-serif;
font-size: 24px;
font-weight: 700;
margin-bottom: 0;
} .htmegaspcial-banner.htmega-banner-content-pos-right .banner-content {
top: 50%;
right: 0;
width: auto;
transform: translateY(-50%);
}
.htmegaspcial-banner.htmega-banner-content-pos-left .banner-content {
top: 50%;
left: 0;
width: auto;
transform: translateY(-50%);
}
.htbanner-badgeimage {
position: absolute;
top: 0;
left: 0;
display: inline-block;
}
.htbanner-badgeimage img{
width: 100%;
} .beer-slider input[type="range"]{
height: 100%;
}
.beer-slider {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 1px;
margin-bottom: 1.5rem;
position: relative;
}
.beer-slider::before {
background: transparent;
content: "";
height: 100%;
opacity: 0.35;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.htmega-imagecomparison .beer-handle,.htmega-imagecomparison .beer-range:focus ~ .beer-handle{
box-shadow: none;
}
.htmega-label-pos-center .beer-reveal[data-beer-label]::after, .htmega-label-pos-center .beer-slider[data-beer-label]::after{
top: 50%;
}
.htmega-label-pos-bottom .beer-reveal[data-beer-label]::after, .htmega-label-pos-bottom .beer-slider[data-beer-label]::after{
bottom: 1.5rem;
top: auto;
} a.htmega-downloadbtn {
font-size: 16px;
padding: 10px 15px;
text-transform: uppercase;
font-weight: 600;
text-decoration: none;
transition: 0.4s;
}
.file_meta {
font-size: 12px;
font-weight: 400;
margin-top: 7px;
opacity: 0.7;
}
.file_meta span {
margin-right: 10px;
position: relative;
}
.file_meta span::before {
border-left: 1px solid;
content: "";
height: 10px;
left: -8px;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 1px;
}
.file_meta span:first-child::before{
display: none;
}
.download_icon{
margin-right: 10px;
}
.edd_downloads_list .edd_download .edd_download_inner .edd_download_title a{
display: inline-block;
text-decoration: none;
} .htmega_buddypress_single {
display: inline-block;
text-align: center;
}
.htmega_buddypress_single a{
text-decoration: none;
display: inline-block;
}
.htmega_buddypress_single .buddy_press_meta span{
display: block;
} .elementor-widget-htmega-wcaddtocart-addons a{
text-decoration: none;
}
.elementor-widget-htmega-wcaddtocart-addons .quantity {
display: inline-block;
} .elementor-widget-htmega-wcpages-addons .col-1,.elementor-widget-htmega-wcpages-addons .col-2 {
flex: 0 0 100%;
max-width: 100%;
padding: 0;
}
.elementor-widget-htmega-wcpages-addons .form-row {
display: block;
}
.elementor-widget-htmega-wcpages-addons .woocommerce-MyAccount-navigation ul li{
list-style: none;
}
.elementor-widget-htmega-wcpages-addons .woocommerce-MyAccount-navigation ul li a{
text-decoration: none;
display: block;
} .woocommerce .product-category a{
display: inline-block;
transition: 0.4s;
}
.woocommerce .product-category .mark, .woocommerce .product-category mark {
background-color: transparent;
padding: 0;
} .job-manager-application-wrapper .application .application_button, .single_job_listing .application .application_button {
height: inherit;
}
.job_application button, .job_application input[type="button"], .job_application input[type="reset"], .job_application input[type="submit"]{
height:auto;
}
.job_summary_shortcode .job-type {
display: inline-block;
height: auto !important;
margin: 0 !important;
}
.job_summary_title {
font-size: 20px;
margin-top: 10px;
} .post-carousel-wrapper {
margin: 0 -15px;
}
.post-carousel-wrapper .slick-slide {
margin: 0 15px;
}
.post-carousel-wrapper .htmega-postslider-layout-1 .content{
max-width: 100%;
width: 100%;
}
.post-carousel-wrapper .htmega-postslider-layout-1 .content{
padding: 0;
}
.post-carousel-wrapper .htmega-postslider-layout-1 .content .post-inner {
background: #33a3b9 none repeat scroll 0 0;
transition: 0.4s;
}
.post-carousel-wrapper .htmega-postslider-layout-1:hover .content .post-inner {
background: rgba(51, 163, 185, 0.8) none repeat scroll 0 0;
}
.post-carousel-wrapper button.slick-arrow {
background: #5e5e5e none repeat scroll 0 0;
border: 0 none;
border-radius: 100%;
color: #fff;
font-size: 30px;
height: 50px;
left: -20px;
margin: 0;
padding: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
transition: all 0.4s ease-in-out 0s;
width: 50px;
line-height: 0;
z-index: 9999;
}
.post-carousel-wrapper button.htmega-carosul-next.slick-arrow {
left: auto;
right: -20px;
}
.post-carousel-wrapper .htmega-single-post-slide .content .post-inner ul.meta li{
letter-spacing: 0;
} .post-carousel-wrapper .htmega-postslider-layout-2 .content {
padding: 0 20px;
margin-top: -50px;
text-align: center;
position: relative;
z-index: 2;
overflow: hidden;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner {
background: #ffffff;
padding: 20px;
border-bottom: 4px solid #b5b5b5;
padding-top: 35px;
transition: 0.4s ease-in-out;
position: relative;
}
.post-carousel-wrapper .htmega-postslider-layout-2:hover .content .post-inner {
border-bottom: 4px solid #0056ff;
} .post-carousel-wrapper .htmega-postslider-layout-2 .content.htmega-gradient .post-inner{
border:none;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content.htmega-gradient .post-inner:after{
content: "";
left: 0;
height: 4px;
bottom: 0;
width: 100%;
position: absolute;
z-index: 2;
background:#b5b5b5;
transition: 0.4s ease-in-out;
background-image: linear-gradient(90deg, #F9DC03 0%, #F25A75 100%);
background-color: transparent;
}
.post-carousel-wrapper .htmega-postslider-layout-2:hover .content.htmega-gradient  .post-inner:after{
background-image: linear-gradient(90deg, #09E328 0%, #00C1C6 100%);
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul {
justify-content: space-between;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul.meta li {
color: #8f8f8f;
font-size: 14px;
font-family: 'Courgette', cursive;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul.meta li i {
font-size: 14px;
padding-right: 12px;
color: #a8a8a8;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul.meta li a {
color: #8f8f8f;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner h2 {
font-size: 20px;
font-weight: 600;
margin-bottom: 11px;
line-height: 28px;
margin-bottom: 25px;
padding: 0 30px;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner h2 a {
color: #4f4f4f;
transition: 0.4s ease-in-out;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner h2 a:hover {
color: #0056ff;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner p {
color: #818181;
font-size: 14px;
line-height: 24px;
margin-bottom: 29px;
font-family: "Montserrat", sans-serif;
font-weight: 300;
} .post-carousel-wrapper .htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn,.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner .post-btn a.readmore-btn,.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn {
border-radius: 0;
border-style: none none solid;
border-width: 0 0 1px;
border-color: #ffffff;
color: #ffffff;
display: inline-block;
font-family: "Montserrat",sans-serif;
font-size: 14px;
font-weight: 500;
height: inherit;
line-height: 24px;
padding: 0;
transition: all 0.4s ease-in-out 0s;
}
.post-carousel-wrapper .htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn:hover {
color: #33a3b9;
border-bottom: 1px solid #33a3b9;
background: transparent;
}
.post-carousel-wrapper.htmega-postcarousel-layout-3 button.slick-arrow {
background: #263170 none repeat scroll 0 0;
border: 0 none;
color: #fff;
font-size: 30px;
height: 40px;
margin: 0;
padding: 0;
position: absolute;
right: 15px;
top: -48px;
transition: all 0.4s ease-in-out 0s;
width: 46px;
border-radius: 0;
}
.post-carousel-wrapper.htmega-postcarousel-layout-3 button.htmega-carosul-prev.slick-arrow {
right: 66px;
left: auto;
} .post-carousel-wrapper .htmega-postslider-layout-4 .post-carousel-flex{
display: flex;
align-items: center;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content {
flex-basis: 58%;
position: relative;
margin-left: -75px;
background: #fff;
padding: 57px 24px;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner {
background: transparent none repeat scroll 0 0;
padding: 0;
text-align: left;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul {
justify-content: flex-start;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.post-category {
margin: 0 -5px;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.post-category li {
margin: 0 5px;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta {
margin:0;
margin-bottom: 10px;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta li {
color: #8c8c8c;
font-size: 14px;
font-family: "Montserrat", sans-serif;
font-weight: 500;
margin: 0 14px;
letter-spacing: 0;
margin-left: 0;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta li i {
font-size: 16px;
padding-right: 10px;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta li a {
color: #8c8c8c;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner h2 {
font-size: 20px;
font-weight: 600;
margin-bottom: 19px;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner h2 a {
color: #464646;
transition: 0.4s ease-in-out;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner h2 a:hover {
color: #0056ff;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner p {
color: #818181;
font-size: 14px;
line-height: 24px;
font-weight: 300;
font-family: "Montserrat", sans-serif;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner .post-btn a.readmore-btn {
color: #464646;
transition: 0.4s ease-in-out;
font-family: "Montserrat", sans-serif;
font-weight: 500;
background: transparent;
border-bottom: 1px solid #464646;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner .post-btn a.readmore-btn:hover {
color: #0056ff;
border-bottom: 1px solid #0056ff;
background: transparent;
} .post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner {
text-align: left;
padding: 30px 0;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content {
background: transparent;
padding: 0;
}
.post-carousel-wrapper .content .post-inner h2 {
word-break: break-word;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul {
justify-content: flex-start;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta {
margin: 0 -10px;
margin-bottom: 7px;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li {
color: #8c8c8c;
font-size: 14px;
font-family: "Montserrat", sans-serif;
padding: 0 10px;
font-weight: 500;
position: relative;
margin: 0;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li::before {
position: absolute;
content: "/";
right: 0;
top: 2px;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li:last-child::before {
display: none;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li a {
color: #8c8c8c;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner h2 {
font-size: 24px;
font-weight: 500;
margin-bottom: 11px;
margin: 0;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner h2 a {
color: #2b2b2b;
transition: 0.4s ease-in-out;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner h2 a:hover {
color: #0056ff;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner p {
color: #6d6a6a;
font-size: 17px;
line-height: 29px;
margin-bottom: 24px;
margin-top: 10px;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn {
border-bottom: 1px solid #464646;
font-size: 14px;
transition: 0.4s ease-in-out;
font-family: "Montserrat", sans-serif;
color: #464646;
background: transparent;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn:hover {
border-bottom: 1px solid #0056ff;
color: #0056ff;
}
.post-carousel-wrapper.htmega-postcarousel-layout-5 button.slick-arrow {
position: absolute;
top: 28%;
left: 15px;
width: 46px;
height: 46px;
background: #ffffff;
border: 0 none;
color: #0056ff;
font-size: 24px;
padding: 0;
margin: 0;
transition: 0.4s ease-in-out;
z-index: 2;
border-radius: 0;
}
.post-carousel-wrapper.htmega-postcarousel-layout-5 button.slick-arrow:hover {
background: #0056ff;
color: #ffffff;
}
.post-carousel-wrapper.htmega-postcarousel-layout-5 button.slick-arrow.htmega-carosul-next {
left: auto;
right: 15px;
} .post-carousel-wrapper.htmega-bottom-right-arrow button.slick-arrow,
.post-carousel-wrapper.htmega-bottom-center-arrow button.slick-arrow{
top:100%;
}
.post-carousel-wrapper.htmega-top-right-arrow button.slick-arrow {
top:0;
}
.post-carousel-wrapper.htmega-top-right-arrow button.slick-arrow {
right: 50px;
left: auto;
}
.post-carousel-wrapper.htmega-top-right-arrow button.htmega-carosul-next.slick-arrow {
right: 0px;
left: auto;
} .post-carousel-wrapper.htmega-bottom-right-arrow button.slick-arrow {
right: 50px;
left: auto;
}
.post-carousel-wrapper.htmega-bottom-right-arrow button.htmega-carosul-next.slick-arrow {
right: 0px;
left: auto;
} .post-carousel-wrapper.htmega-bottom-center-arrow button.slick-arrow {
left: 50%;
margin-left: -40px;
}
.post-carousel-wrapper.htmega-bottom-center-arrow button.htmega-carosul-next.slick-arrow {
left: auto;
right: 50%;
margin-right: -40px;
}
.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-bottom-center-arrow button.htmega-carosul-prev.slick-arrow {
right: auto;
left: 50%;
} .post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-verticle-center-arrow button.slick-arrow{
top:50%;
}
.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-verticle-center-arrow button.slick-arrow{
left: -20px;
right: auto;
}
.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-verticle-center-arrow button.htmega-carosul-next.slick-arrow {
left: auto;
right: -20px;
} .htmega-justify-single-image .thumb a {
display: block;
}
.htmega-justify-single-image .thumb a img{
width: 100%;
} .shapebg_image--1 {
background-image: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/css/img/others/business-shape.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.htmega-business-horurs-1 .business-hrs-inner {
padding: 70px 65px;
margin-top: -15px;
}
.htmega-business-horurs-1 .htmega-single-hrs {
margin-top: 15px;
}
.htmega-business-horurs-1 .htmega-single-hrs span.time {
float: right;
font-weight: 600;
color: #000000;
font-size: 20px;
font-family: 'Dosis', sans-serif;
}
.htmega-business-horurs-1 .htmega-single-hrs span.day {
color: #3b3b3b;
font-weight: 800;
font-size: 30px;
font-family: 'Dosis', sans-serif;
}
.htmega-business-horurs-1 .htmega-single-hrs.closed-day span.time {
color: #fa2d2d;
}
.htmega-business-horurs-1 .htmega-single-hrs.closed-day span.day {
color: #fa2d2d;
} .htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs {
padding: 16px 0;
border-top: 1px solid #f4f4f4;
position: relative;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs:first-child {
border-top: 1px solid transparent;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs::before {
border: 1px dashed #fff;
content: "";
height: 42px;
left: 50%;
position: absolute;
top: 50%;
transform: translateX(-50%) translateY(-50%);
width: 2px;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs span.day {
color: #fafafa;
font-weight: 400;
font-size: 18px;
font-family: "Montserrat", sans-serif;
padding-left: 40px;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs span.time {
float: right;
font-weight: 400;
color: #ffffff;
font-size: 16px;
font-family: "Montserrat", sans-serif;
padding-right: 40px;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs:nth-child(odd) {
background: #ff6f5e;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs:nth-child(even) {
background: #fe5743;
} .htmega-business-horurs-3 .business-hrs-inner {
padding: 20px 30px;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs {
padding: 10px 22px;
margin: 4px 0;
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs span {
font-family: 'Lobster Two', cursive;
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs span.day {
color: #565656;
font-weight: 400;
font-size: 20px;
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs span.time {
float: right;
font-weight: 400;
color: #565656;
font-size: 16px;
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs.closed-day {
background: #0056ff;
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs.closed-day span.time {
color: #ffffff;
}
.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs.closed-day span.day {
color: #ffffff;
} .htmega-business-horurs-4 .business-hrs-inner {
padding: 30px 50px;
background-image: url(//www.rote-herolde-wiesbaden.de/wp-content/plugins/ht-mega-for-elementor/assets/css/img/bg/bg-image-40.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.business-hrs-inner h4.hour-title {
text-align: center;
padding: 20px 0;
font-size: 24px;
font-weight: 600;
}
.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs {
padding: 17px 0;
position: relative;
}
.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs:last-child {
border: none !important;
}
.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs span {
font-family: "Montserrat", sans-serif;
}
.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs span.day {
color: #ffffff;
font-weight: 500;
font-size: 16px;
}
.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs span.time {
float: right;
font-weight: 300;
color: #ffffff;
font-size: 14px;
} .htmega-business-horurs-5 .business-hrs-inner {
padding: 30px 50px;
position: relative;
z-index: 2;
}
.htmega-business-horurs-5 .business-hrs-inner::before {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
content: "";
z-index: 2;
right: 0;
background-image: linear-gradient(#d80d5f, #2f46dc);
background-image: -webkit-gradient(#d80d5f, #2f46dc);
background-image: -webkit-linear-gradient(#d80d5f, #2f46dc);
background-image: -moz-linear-gradient(#d80d5f, #2f46dc);
background-image: -ms-linear-gradient(#d80d5f, #2f46dc);
background-image: -o-linear-gradient(#d80d5f, #2f46dc);
z-index: -1;
}
.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs {
padding: 17px 0;
position: relative;
}
.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs::before {
position: absolute;
content: "";
width: 60px;
height: 2px;
left: 45%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
border:1px dotted #ffffff;
}
.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs span {
font-family: "Montserrat", sans-serif;
}
.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs span.day {
color: #ffffff;
font-weight: 500;
font-size: 16px;
}
.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs span.time {
float: right;
font-weight: 300;
color: #ffffff;
font-size: 14px;
} .htmega-table-style {
border-radius: 10px 10px 0 0;
}
.htmega-table-style .htb-table {
margin: 0;
}
.htmega-table-style .htb-table thead {
background-color: #612d91;
}
.htmega-table-style .htb-table thead tr th {
text-align: center;
border: none;
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
color: #ffffff;
padding: 12px 20px;
border-right: 1px solid #fff;
}
.htmega-table-style .htb-table tbody tr {
background: #824f9e;
}
.htmega-table-style .htb-table tbody tr td {
text-align: center;
border: none;
padding: 12px 20px;
vertical-align: middle;
border-bottom: 1px solid #ffffff;
color: #ffffff;
font-size: 16px;
border-right: 1px solid #fff;
}
.htmega-table-style .htb-table thead tr th.sorting,.htmega-table-style .htb-table thead tr th.sorting_asc,.htmega-table-style .htb-table thead tr th.sorting_desc{
position: relative;
}
.htmega-table-style .htb-table thead tr th.sorting::before,.htmega-table-style .htb-table thead tr th.sorting_asc::before,.htmega-table-style .htb-table thead tr th.sorting_desc::before {
position: absolute;
content: "\f0d7";
right: 20px;
font-family: FontAwesome;
top: 30%;
}
.htmega-table-style .htb-table thead tr th.sorting::after,.htmega-table-style .htb-table thead tr th.sorting_desc::after,.htmega-table-style .htb-table thead tr th.sorting_asc::after {
position: absolute;
right: 20px;
top: 7px;
font-family: FontAwesome;
content: "\f0d8";
}
.htmega-table-style select{
width: auto;
} .htmega-table-style-2 {
border-radius: 0;
}
.htmega-table-style-2 .htb-table {
margin: 0;
}
.htmega-table-style-2 .htb-table thead {
background-color: #5ac5ff;
}
.htmega-table-style-2 .htb-table thead tr th {
text-align: left;
border: none;
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
color: #ffffff;
padding: 12px 20px;
border-right: 1px solid #c5c5c5;
border-left: 1px solid #c5c5c5;
padding-left: 30px;
outline: none;
}
.htmega-table-style-2 .htb-table tbody tr {
background: #ffffff;
}
.htmega-table-style-2 .htb-table tbody tr:nth-child(even) {
background: #f4f4f4;
}
.htmega-table-style-2 .htb-table tbody tr td {
text-align: left;
border: none;
padding: 12px 20px;
vertical-align: middle;
color: #000000;
font-size: 16px;
border-right: 1px solid #c5c5c5;
padding-left: 30px;
border-left: 1px solid #c5c5c5;
}
.htmega-table-style-2 td a {
font-size: 16px;
font-weight: 600;
color: #18012c;
} .htmega-table-style-3{
border-radius: 0;
}
.htmega-table-style-3 .htb-table {
margin: 0;
}
.htmega-table-style-3 .htb-table thead {
background-color: #727272;
}
.htmega-table-style-3 .htb-table thead tr th {
text-align: left;
border: none;
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
color: #ffffff;
padding: 12px 20px;
border-right: 1px solid #c5c5c5;
border-left: 1px solid #c5c5c5;
padding-left: 30px;
}
.htmega-table-style-3 .htb-table tbody tr {
background: #ffffff;
}
.htmega-table-style-3 .htb-table tbody tr td {
text-align: left;
border: none;
padding: 12px 20px;
vertical-align: middle;
color: #000000;
font-size: 16px;
border-right: 1px solid #c5c5c5;
border-left: 1px solid #c5c5c5;
border-bottom: 1px solid #c5c5c5;
padding-left: 30px;
}
.htmega-table-style-3 td a {
font-size: 16px;
font-weight: 600;
color: #18012c;
} .htmega-pricing-list-view a{
text-decoration: none;
}
.htmega-pricing-list-view .htb-table {
margin: 0;
}
.htmega-pricing-list-view .htb-table thead tr th {
text-align: center;
font-size: 16px;
font-weight: 500;
color: #5c5c5c;
padding: 12px 20px;
border-right: 1px solid #d4d4d4;
border-left: 1px solid #d4d4d4;
font-family: "Montserrat", sans-serif;
text-transform: inherit;
}
.htmega-pricing-list-view .htb-table td.tb-name a {
font-size: 16px;
font-weight: 600;
color: #18012c;
}
.htmega-pricing-list-view .htb-table tbody tr td {
text-align: center;
border: none;
padding: 12px 20px;
vertical-align: middle;
border-bottom: 1px solid #d4d4d4;
color: #5c5c5c;
font-size: 16px;
border-right: 1px solid #d4d4d4;
border-left: 1px solid #d4d4d4;
}
.htmega-pricing-list-view .htb-table tbody tr td a {
color: #5c5c5c;
}
.table-responsive.htmega-pricing-list-view {
overflow: hidden;
}
.table-responsive.htmega-pricing-list-view table.table {
margin: 0;
} .htmega-pricing-list-view .htmega-pricing-table__head-column-cell-area {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.htmega-column-position-icon-left .htmega-pricing-table__head-column-cell-area {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.htmega-column-position-icon-right .htmega-pricing-table__head-column-cell-area {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.htmega-column-position-icon-left .htmega-pricing-table__head-column-cell-icon, 
.htmega-column-position-icon-right .htmega-pricing-table__head-column-cell-icon {
width: auto;
}
.htmega-column-position-icon-bottom .htmega-pricing-table__head-column-cell-area {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.htmega-column-position-icon-top .htmega-pricing-table__head-column-cell-area {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.htmega-column-position-icon-bottom .htmega-pricing-table__head-column-cell-icon, 
.htmega-column-position-icon-top .htmega-pricing-table__head-column-cell-icon {
width: 100%;
}
.htmega-pricing-table__head-column-cell .htmega-pricing-table__head-column-cell-area .htmega-pricing-table__head-column-cell-icon img {
width: 40%;
}
.htmega-pricing-row-cell span.ht-data-label {
padding: 5px 8px;
border-radius: 20px;
position: relative;
background: #11A683;
color: #fff;
font-size: 10px;
} .htmega-pricing-table-style-4 table.table, 
.htmega-pricing-table-style-4 table.table td, 
.htmega-pricing-table-style-4 table.table th {
border: none;
}
.htmega-pricing-table-style-4 th.htmega-pricing-table__head-column-cell , 
.htmega-pricing-table-style-4 td.htmega-pricing-row-cell {
position: relative;
}
.htmega-pricing-table-style-4 th.htmega-pricing-table__head-column-cell .htmega-pricing-table__head-column-cell-area:before,
.htmega-pricing-table-style-4 td.htmega-pricing-row-cell .htmega-pricing-table__head-row-cell-area:before {
position: absolute;
content: "";
background: transparent;
width: 10px;
height: 10px;
left: 0;
border-radius: 50px;
}
.htmega-pricing-row-cell .htmega-button .htb-btn {
font-size: 14px;
}
.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table {
border-collapse: separate;
border-spacing: 0 20px;
}
.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr {
background: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
border-radius: 50px;
}
.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr td:first-child ,.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr th:first-child {
border-radius: 10px 0px 0px 10px;
}
.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr td:last-child , .htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr th:last-child {
border-radius: 0px 10px 10px 0px;
}
.htmega-row-icon-position-right .htmega-pricing-table__head-column-cell-text {
padding-right: 5px;
}
.htmega-row-icon-position-left .htmega-pricing-table__head-column-cell-text {
padding-left: 5px;
} .elementor-widget-htmega-pricinglistview-addons .htmega-pricing-table__head-row-cell-area {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-top .htmega-pricing-table__head-row-cell-area {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-bottom .htmega-pricing-table__head-row-cell-area {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-left .htmega-pricing-table__head-row-cell-area {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-right .htmega-pricing-table__head-row-cell-area {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-bottom .ha-table__body-row-cell-icon, 
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-top .ha-table__body-row-cell-icon {
width: 100%;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-left .ha-table__body-row-cell-icon, 
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-right .ha-table__body-row-cell-icon {
width: auto;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-right .htmega-pricing-table__head-row-cell-area .htmega-pricing-table__head-row-cell-icon {
padding-left: 5px;
}
.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-left .htmega-pricing-table__head-row-cell-area .htmega-pricing-table__head-row-cell-icon {
padding-right: 5px;
} .htmega-pricing-table-style-2 .htb-table {
margin: 0;
}
.htmega-pricing-table-style-2 .htb-table thead tr th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
padding: 0;
border: 0 none;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
}
.htmega-pricing-table-style-2 .htb-table thead tr th:first-child {
border: 1px solid transparent !important;
}
.htmega-pricing-table-style-2 .htb-table thead tr th span {
text-align: center;
font-size: 24px;
font-weight: 600;
color: #ff6565;
font-family: "Montserrat", sans-serif;
text-transform: inherit;
background: #ffc1c1;
display: block;
padding: 12px 20px;
text-transform: initial;
}
.htmega-pricing-table-style-2 .htb-table tbody tr td {
text-align: center;
border: none;
padding: 0;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
border-bottom: 1px solid #fff;
}
.htmega-pricing-table-style-2 .htb-table tbody tr td:first-child {
border-left: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.htmega-pricing-table-style-2 .htb-table tbody tr td span {
padding: 12px 20px;
vertical-align: middle;
color: #ffffff;
font-size: 16px;
background: #ff8686;
display: block;
}
.htmega-pricing-table-style-2 .htb-table tbody tr td span i {
color: #ffffff;
font-size: 16px;
}
.htmega-pricing-table-style-2 .htb-table tbody tr td a {
color: #ffffff;
}
.htmega-pricing-table-style-2 .htb-table td.tb-name a {
font-size: 16px;
font-weight: 600;
color: #18012c;
} .htmega-pricing-table-style-3 ul {
list-style: none;
padding: 0;
margin: 0;
}
.htmega-pricing-table-style-3 ul li {
margin-bottom: 25px;
}
.htmega-pricing-table-style-3 ul li a {
display: flex;
flex-wrap: wrap;
list-style: none;
align-items: center;
}
.htmega-pricing-table-style-3 ul li a .price-list-text {
flex: 1;
min-width: 1px;
align-items: center;
display: flex;
flex-wrap: wrap;
}
.htmega-pricing-table-style-3 ul li a .price-list-text span {
color: #373737;
font-weight: 600;
font-size: 20px;
}
.htmega-pricing-table-style-3 ul li a .price-list-text span.separator {
margin-left: 20px;
border-bottom-style: dotted;
border-bottom-width: 1px;
height: 0;
color: #ccc;
border-bottom-style: dashed;
border-bottom-color: #b9b9b9;
flex: 1;
min-width: 1px;
}
.htmega-pricing-table-style-3 ul li a .price-text-right {
width: auto;
padding-left: 20px;
}
.htmega-pricing-table-style-3 ul li a .price-text-right span.price {
background: #ff8686;
display: inline-block;
color: #ffffff;
font-weight: 600;
font-size: 20px;
height: 45px;
padding: 0 33px;
line-height: 46px;
margin-right: 10px;
border-radius: 22px;
}
.htmega-pricing-table-style-3 ul li a .price-text-right span.basket {
display: inline-block;
background: #ff9898;
height: 45px;
line-height: 44px;
width: 45px;
text-align: center;
border-radius: 100%;
color: #fff;
font-size: 18px;
} .htc-verctimeline-wrapper {
position: relative;
margin-top: 30px;
}
.htc-verctimeline-wrapper.htmega-verticletimeline-style-2::before {
content: "";
position: absolute;
left: 50%;
top: 0;
width: 6px;
background: #18012c;
height: 100%;
margin-left: -1px;
border-radius: 20px;
}
.htc-verctimeline-wrapper .ht-ver-timeline {
display: -webkit-box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
justify-content: space-between;
padding: 30px 0;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline::before {
content: "";
position: absolute;
left: 50%;
top: 0;
width: 2px;
background: #d2d2d2;
height: 100%;
margin-left: -1px;
}
.htc-verctimeline-wrapper .ht-ver-timeline:last-child::before {
display: none;
}
.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time {
width: 50%;
text-align: right;
padding: 0 30px;
position: relative;
-webkit-align-self: baseline;
-moz-align-self: baseline;
-ms-flex-item-align: baseline;
align-self: baseline;
position: relative;
top: -53px;
}
.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time::before {
position: absolute;
content: "";
right: -15px;
top: 50%;
margin-top: -15px;
height: 30px;
width: 30px;
border: 7px solid #e98250;
border-radius: 100%;
background: #fff;
transform: translateY(-50%);
}
.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date {
width: 100px;
border: 13px solid #f88a55;
text-align: center;
display: inline-block;
height: 100px;
border-radius: 100%;
background: #fff;
position: relative;
top: -12px;
margin-right: 11px;
}
.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date::before {
position: absolute;
content: "";
left: 115%;
top: 56%;
margin-top: -15px;
height: 10px;
width: 10px;
border-top: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 15px solid #f58854;
}
.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date span {
display: block;
color: #fc8c56;
font-size: 18px;
font-weight: 500;
line-height: 28px;
font-family: "Montserrat", sans-serif;
}
.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date span.month {
margin-top: 7px;
}
.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content {
padding-left: 123px;
text-align: left;
width: 50%;
position: relative;
top: -30px;
}
.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content::before {
position: absolute;
content: "";
border-style: dashed;
left: 25px;
height: 1px;
width: 80px;
border-width: 0 0 2px;
top: 11px;
border-color: #f38753;
}
.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content p {
color: #494849;
font-size: 14px;
line-height: 28px;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse {
-webkit-box-direction: reverse;
-webkit-box-orient: horizontal;
-webkit-flex-direction: row-reverse;
-moz-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time {
text-align: left;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time::before {
right: auto;
left: -15px;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time .vertical-date {
margin-right: 0;
margin-left: 11px;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time .vertical-date::before {
right: 115%;
left: auto;
border-top: 10px solid transparent;
border-right: 15px solid #fc8c56;
border-bottom: 10px solid transparent;
border-left: 10px solid transparent;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .timeline-content {
padding-left: 0;
padding-right: 123px;
text-align: right;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .timeline-content::before {
left: auto;
right: 25px;
} .htc-verctimeline-wrapper .ht-ver-timeline--2 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
justify-content: space-between;
padding: 40px 0 0;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2::before {
position: absolute;
content: "";
width: 6px;
height: 100%;
background: #cf2037;
left: 50%;
transform: translateX(-1px);
top: 0;
transition: 0.4s ease-in-out;
opacity: 0;
border-radius: 20px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2:hover::before {
opacity: 1;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time {
width: 50%;
text-align: right;
padding: 0 40px;
position: relative;
-webkit-align-self: baseline;
-moz-align-self: baseline;
-ms-flex-item-align: baseline;
align-self: baseline;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time::before {
position: absolute;
content: "";
right: -12px;
top: 50%;
margin-top: -15px;
height: 20px;
width: 20px;
border: 6px solid #18012c;
border-radius: 100%;
background: #fff;
transform: translateY(-50%);
transition: 0.4s ease-in-out;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span {
display: block;
color: #18012c;
font-size: 18px;
font-weight: 700;
line-height: 28px;
font-family: "Montserrat", sans-serif;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span.month {
margin-top: 7px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2:hover .vertical-time::before {
border: 6px solid #cf2037;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .timeline-content {
padding-left: 40px;
text-align: left;
width: 50%;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .timeline-content h6 {
color: #18012c;
font-size: 18px;
font-weight: 700;
transition: 0.4s ease-in-out;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2 .timeline-content p {
color: #313131;
font-size: 15px;
line-height: 25px;
font-family: "Montserrat", sans-serif;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2:hover .timeline-content h6 {
color: #cf2037;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse {
-webkit-box-direction: reverse;
-webkit-box-orient: horizontal;
-webkit-flex-direction: row-reverse;
-moz-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time {
text-align: left;
padding: 0 40px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time::before {
right: auto;
left: -9px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time .vertical-date {
margin-right: 0;
margin-left: 11px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .timeline-content {
padding-left: 0;
padding-right: 40px;
text-align: right;
} .htc-verctimeline-wrapper.htmega-verticletimeline-style-3 {
padding-top: 100px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
justify-content: space-between;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3::before {
content: "";
position: absolute;
left: 50%;
top: 0;
width: 3px;
background: #f4f4f4;
height: 100%;
margin-left: -2px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3:last-child::before {
display: none;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .vertical-time {
width: 50%;
text-align: right;
padding: 0 40px;
position: relative;
-webkit-align-self: baseline;
-moz-align-self: baseline;
-ms-flex-item-align: baseline;
align-self: baseline;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .vertical-time .vertical-date span {
display: block;
color: #18012c;
font-size: 30px;
font-weight: 700;
line-height: 28px;
font-family: "Montserrat", sans-serif;
position: absolute;
left: 94%;
width: 60px;
height: 60px;
background: #f4f4f4;
text-align: center;
line-height: 60px;
border-radius: 100%;
top: 0;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content {
padding-left: 67px;
text-align: left;
width: 50%;
position: relative;
top: -139px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content .content {
background: #ffffff;
box-shadow: 0 0 97px rgba(0, 0, 0, 0.1);
padding: 38px 30px;
position: relative;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content .content::before {
right: 100%;
left: auto;
border-top: 10px solid transparent;
border-right: 20px solid #ffffff;
border-bottom: 10px solid transparent;
border-left: 10px solid transparent;
position: absolute;
content: "";
top: 82%;
margin-top: -15px;
height: 10px;
width: 10px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content h6 {
color: #18012c;
font-size: 18px;
font-weight: 700;
transition: 0.4s ease-in-out;
margin-bottom: 8px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content p {
color: #18012c;
font-size: 14px;
line-height: 28px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse {
-webkit-box-direction: reverse;
-webkit-box-orient: horizontal;
-webkit-flex-direction: row-reverse;
-moz-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .vertical-time {
text-align: left;
padding: 0 40px;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .vertical-time .vertical-date span {
left: auto;
right: 94%;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .timeline-content {
padding-right: 67px;
text-align: right;
padding-left: 0;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .timeline-content .content::before {
left: 100%;
right: auto;
border-top: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 15px solid #ffffff;
} .offcanvas{
text-align: center;
}
.offcanvas .canvas-btn {
display: inline-block;
height: 46px;
color: #ffffff;
font-size: 16px;
font-family: "Montserrat", sans-serif;
font-weight: 500;
padding: 0 36px;
line-height: 45px;
border-radius: 4px;
background: #fa9866;
text-decoration: none;
}
.offcanvas svg {
width: 20px;
margin-top: 10px;
float: left;
}
.site-menu .searchform input[type="text"] {
color: #fff;
}
.site-menu.show-nav {
-webkit-transform: translateX(440px);
transform: translateX(440px);
-webkit-transform: translate3d(440px, 0, 0);
transform: translate3d(440px, 0, 0);
}
.site-menu {
width: 440px;
height: 100%;
position: fixed;
top: 0;
left: -440px;
background: #000000;
transform: translateX(0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: 300ms ease all;
transition: 300ms ease all;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
z-index: 99;
overflow-y: auto;
padding-top: 80px;
}
.admin-bar .site-menu{
padding-top: 120px;
}
.site-menu a.canvas-closebtn i{
border: 1px solid #fff;
color: #fff;
padding: 9px;
position: absolute;
right: 20px;
top: 20px;
}
.admin-bar .site-menu a.canvas-closebtn i{
top: 60px;
} .site-menu.align-right-active {
transform: translateX(0);
}
.site-menu.align-right-active.show-nav {
-webkit-transform: translateX(-440px);
transform: translateX(-440px);
-webkit-transform: translate3d(-440px, 0, 0);
transform: translate3d(-440px, 0, 0);
}
.site-menu.align-right-active {
left: auto;
right: -440px;
}
.site-menu.align-top-active {
transform: translateY(0);
}
.site-menu.align-top-active.show-nav {
-webkit-transform: translateY(150px);
transform: translateY(150px);
-webkit-transform: translate3d(0, 150px, 0);
transform: translate3d(0, 150px, 0);
}
.site-menu.align-bottom-active {
transform: translateY(0);
}
.site-menu.align-bottom-active.show-nav {
-webkit-transform: translateY(-150px);
transform: translateY(-150px);
-webkit-transform: translate3d(0, -150px, 0);
transform: translate3d(0, -150px, 0);
}
.site-menu.align-bottom-active,
.site-menu.align-top-active {
left: 0;
right: auto;
bottom: -150px;
top: auto;
width: 100%;
height: 150px;
}
.site-menu.align-top-active {
top: -150px;
bottom: auto;
width: 100%;
height: 150px;
}
.site-menu .content_offcanvas .elementor-widget-wp-widget-nav_menu ul {
padding: 0;
margin: 0;
list-style: none;
}
.site-menu .content_offcanvas .elementor-widget-wp-widget-nav_menu ul li a {
color: #ffffff;
font-size: 15px;
display: block;
padding: 13px 0;
border-top: 1px solid #414141;
text-transform: uppercase;
text-decoration: none;
}
.site-menu .content_offcanvas .elementor-widget-wp-widget-nav_menu ul li:first-child a {
border-top: 1px solid transparent;
}
.site-menu .content_offcanvas .blog-search{
margin: 0 70px;
}
.site-menu .content_offcanvas .blog-search form input,.site-menu .content_offcanvas_verticle .blog-search form input {
border-radius: 20px;
height: 40px;
}
.site-menu .content_offcanvas .blog-search form button,.site-menu .content_offcanvas_verticle .blog-search form button {
height: 40px;
}
.site-menu .content_offcanvas .blog-search form button:hover,.site-menu .content_offcanvas_verticle .blog-search form button:hover{
color: #ffffff;
}
.site-menu .content_offcanvas_verticle .linemenu-nav ul li {
margin: 0 10px;
}
.admin-bar .site-menu.align-top-active,.site-menu.align-bottom-active {
padding-top: 40px !important;
}
.admin-bar .site-menu.align-top-active .elementor-image {
margin-top: 7px;
}
.site-menu.align-top-active a.canvas-closebtn i,.site-menu.align-bottom-active a.canvas-closebtn i {
z-index: 999;
} .magnifier-lens{
cursor: pointer;
} .htmega-animated-heading{
text-align: center;
}
.htmega-animated-heading .cd-words-wrapper b {
color: #0056ff;
} .htmega-style-1 h4{
color: #515151;
font-size: 36px;
margin: 0;
font-weight: 600;
} .htmega-style-2 h4 span.beforetext {
padding: .25em 0 .325em;
margin: 0 auto;
text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
font-size: 60px;
color: #515151; -webkit-background-clip: text;
background-clip: text; -webkit-text-fill-color: transparent;
-webkit-animation: bgimganimation 80s linear infinite; -webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
background-color: #007bff; 
} .htmega-style-3 h4{
color: #515151;
font-size: 60px;
font-weight: 700;
margin: 0;
} .htmega-style-4 h4{
vertical-align: middle;
text-align: center;
font-size: 36px;
color: #4e4e4e;
font-weight: 400;
font-style: italic;
} .htmega-style-5 h4{
font-size: 36px;
} .htmega-style-6 h4{
text-align: center;
font-size: 36px;
color: #515151;
font-weight: 400;
margin: 0;
}
.htmega-style-6 .cd-words-wrapper b {
font-style: italic;
font-size: 48px;
color: #0056ff;
margin-top: -9px;
}
.cd-headline.loading-bar .cd-words-wrapper::after {
background: #0056ff;
} .htmega-animated-heading .cd-headline::before {
font-size: 100px;
font-weight: 100;
position: absolute;
z-index: -1;
top: 0;
left: 50%;
content: attr(data-pltext);
-webkit-transform: translateX(-50%) translateY(-14px);
-ms-transform: translateX(-50%) translateY(-14px);
transform: translateX(-50%) translateY(-14px);
text-transform: uppercase;
color: #2e98fb24;
white-space: nowrap;
margin-top: -15px
}
.htmega-animated-heading .headline-placeholder {
position: relative;
z-index: 1;
} .htmega-carousel-activation {
position: relative;
}
.htmega-carousel-activation .panel-slider .content h2{
margin-top: 0;
}
.panel-slider-wrapper.htmega-carousel-activation .slick-track {
margin: 0 -2px;
}
.panel-slider-wrapper.htmega-carousel-activation .slick-track .slick-slide {
padding: 0 2px;
}
.panel-slider-wrapper.htmega-carousel-activation button {
position: absolute;
top: 50%;
left: 70px;
z-index: 2;
width: 50px;
height: 50px;
border-radius: 100%;
line-height: 50px;
color: #fff;
background: rgba(255, 255, 255, 0.5);
border: 0 none;
transform: translateY(-50%);
transition: 0.4s ease-in-out;
font-size: 24px;
padding: 0;
}
.panel-slider-wrapper.htmega-carousel-activation button:hover {
background: rgba(24, 1, 44, 0.5);
}
.panel-slider-wrapper.htmega-carousel-activation button.htmega-carosul-next {
left: auto;
right: 70px;
}
.panel-slider {
position: relative;
}
.panel-slider .content {
position: absolute;
bottom: 0;
left: 0;
padding: 33px 40px;
background: rgba(0, 0, 0, 0.45);
width: 100%;
}
.panel-slider .content h2 {
color: #ffffff;
font-size: 18px;
font-weight: 500;
margin-bottom: 8px;
}
.panel-slider .content span {
color: #ffffff;
font-size: 16px;
}
.panel-slide-active-2 .slick-slide {
margin: 0 2px;
}
.panel_slider_style-1 .htmega-carousel-activation .panel-slider .content {
display: none;
}
.panel_slider_style-1 .htmega-carousel-activation .slick-slide.slick-center .panel-slider .content {
display: block;
} .panel_slider_style-2 .htmega-carousel-activation .slick-track {
margin: 0 -2px;
}
.panel_slider_style-2 .htmega-carousel-activation .slick-track .slick-slide {
padding: 0 2px;
}
.panel_slider_style-2 .htmega-carousel-activation button {
position: absolute;
top: 50%;
left: 50px;
z-index: 2;
color: #000000;
border: 0 none;
transform: translateY(-50%);
transition: 0.4s ease-in-out;
font-size: 36px;
}
.panel_slider_style-2 .htmega-carousel-activation button:hover {
color: #18012c;
}
.panel_slider_style-2 .htmega-carousel-activation button.htmega-carosul-next {
left: auto;
right: 50px;
}
.panel_slider_style-2 .htmega-carousel-activation .panel-slider {
position: relative;
}
.panel_slider_style-2 .htmega-carousel-activation .panel-slider .thumb img {
width: 100%;
}
.panel_slider_style-2 .htmega-carousel-activation .panel-slider .content {
position: absolute;
bottom: 0;
padding: 33px 40px;
background: rgba(0, 0, 0, 0.8);
text-align: center;
left: 0;
width: 100%;
-webkit-transition: transform .4s ease-in-out;
-moz-transition: transform .4s ease-in-out;
transition: transform .4s ease-in-out;
-webkit-transform: translateY(110%);
-moz-transform: translateY(110%);
transform: translateY(110%);
}
.panel_slider_style-2 .htmega-carousel-activation .panel-slider .content h2 {
color: #ffffff;
font-size: 18px;
font-weight: 500;
margin-bottom: 8px;
}
.panel_slider_style-2 .htmega-carousel-activation .panel-slider .content span {
color: #ffffff;
font-size: 16px;
}
.panel_slider_style-2 .htmega-carousel-activation .panel-slider:hover .content {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
transform: translateY(0);
} .panel_slider_style-3 .panel-slider .content-inner {
-webkit-transition: opacity .15s 0s;
-moz-transition: opacity .15s 0s;
transition: opacity .15s 0s;
position: absolute;
width: 100%;
text-align: center;
height: 100%;
top: 0;
}
.panel_slider_style-3 .panel-slider .content-inner::after {
content: '';
position: absolute;
top: -100%;
left: 0;
height: 100%;
width: 100%;
background: black;
-webkit-transition: top .35s;
-moz-transition: top .35s;
transition: top .35s;
}
.panel_slider_style-3 .panel-slider .content-inner .content {
position: absolute;
z-index: 2;
width: 100%;
top: 50%;
transform: translateY(-50%);
transition: 0.4s ease-in-out;
opacity: 0;
bottom: auto;
}
.panel_slider_style-3 .panel-slider .content-inner .content h2 {
color: #fff;
margin-bottom: 10px;
font-size: 30px;
}
.panel_slider_style-3 .panel-slider:hover .content-inner::after {
top: 0;
}
.panel_slider_style-3 .panel-slider:hover .content-inner .content {
opacity: 1;
} .panel_slider_style-4 .htmega-carousel-activation button {
position: absolute;
top: 50%;
left: 140px;
z-index: 2;
width: 50px;
height: 50px;
border-radius: 100%;
line-height: 50px;
color: #000000;
border: 0 none;
transform: translateY(-50%);
transition: 0.4s ease-in-out;
font-size: 24px;
border: 1px solid #000000;
}
.panel_slider_style-4 .htmega-carousel-activation button:hover {
border: 1px solid #ffffff;
color: #ffffff;
}
.panel_slider_style-4 .htmega-carousel-activation button.htmega-carosul-next {
left: auto;
right: 140px;
}
.panel_slider_style-4 .htmega-carousel-activation .slick-slide {
padding: 72px 0;
transition: all 0.3s ease 0s;
}
.panel_slider_style-4 .htmega-carousel-activation .panel-slider {
position: relative;
transition: all 0.3s ease 0s;
}
.panel_slider_style-4 .htmega-carousel-activation .slick-slide.slick-center .panel-slider {
transform: scale(1.3);
}
.panel_slider_style-4 .htmega-carousel-activation .panel-slider {
position: relative;
transform: scale(0.9);
}
.panel_slider_style-4 .htmega-carousel-activation .panel-slider::before {
background: rgba(255, 255, 255, 0.7);
position: absolute;
content: "";
left: 0;
top: 0;
width: 100%;
height: 100%;
transition: 0.3s ease-in-out;
}
.panel_slider_style-4 .htmega-carousel-activation .slick-slide.slick-center .panel-slider::before {
display: none;
}
.panel_slider_style-4 .htmega-carousel-activation {
margin: 0 -70px;
}
.panel_slider_style-4 .htmega-carousel-activation .thumb img {
width: 100%;
}
.panel_slider_style-4 .htmega-carousel-activation .slick-slide {
margin: 0 70px;
} .ht-scroll-image {
border-style: solid;
border-width: 20px 20px 20px 20px;
border-color: #ffffff;
border-radius: 5px 5px 5px 5px;
box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
}
.ht-scroll-image .thumb {
min-height: 600px;
transition: background-position 6s ease-in-out;
-webkit-transition: background-position 6s ease-in-out;
border-style: solid;
border-width: 0px 0px 0px 0px;
display: block;
position: relative;
width: 100%;
background-position: top;
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
border-top: 1px solid #f2f2f2;
border-left: 1px solid #f2f2f2;
border-bottom: 1px solid #f2f2f2;
border-right: 1px solid #f2f2f2;
transition: background-position 2s cubic-bezier(0.1, 0.54, 0.43, 0.94);
-webkit-transition: background-position 2s cubic-bezier(0.1, 0.54, 0.43, 0.94);
}
.ht-scroll-image .thumb:hover {
background-position: center bottom !important;
}  .ht-event {
align-items: center;
border: 1px solid #efefef;
border-radius: 10px;
display: flex;
margin-top: 40px;
padding: 10px;
}
.ht-event .thumb {
flex-basis: 50%;
position: relative;
}
.ht-event .thumb a img {
width: 100%;
}
.ht-event .content {
flex-basis: 50%;
padding-left: 27px;
}
.ht-event .thumb .event-date {
background: #141414 none repeat scroll 0 0;
color: #fff;
padding: 8px 0;
position: absolute;
right: -13px;
text-align: center;
top: 0;
width: 60px;
}
.ht-event .thumb .event-date span {
display: block;
font-size: 20px;
font-style: italic;
font-weight: 500;
}
.ht-event .content h4 {
font-size: 18px;
margin-bottom: 15px;
margin-top: 0;
}
.ht-event .content ul.event-time {
display: flex;
list-style: outside none none;
margin: 0;
padding: 0;
}
.ht-event .content ul.event-time li {
color: #909090;
font-size: 14px;
}
.ht-event .content ul.event-time li i {
color: #56a4b1;
padding-right: 10px;
}
.ht-event .content p {
color: #727272;
font-size: 14px;
line-height: 24px;
margin-top: 10px;
}
.ht-event .content .event-btn a {
border-bottom: 1px solid #727272;
color: #727272;
font-size: 14px;
font-weight: 500;
transition: all 0.4s ease-in-out 0s;
}
.ht-event .content ul.event-time li + li {
margin-left: 15px;
padding-left: 15px;
position: relative;
}
.ht-event .content ul.event-time li + li::before {
background: #9f9f9f none repeat scroll 0 0;
content: "";
height: 15px;
left: 0;
position: absolute;
top: 28%;
width: 2px;
} #htmega-google-map{
width: 100%;
}
.header-transparent .mean-container .mean-nav {
background: #111111 none repeat scroll 0 0;
float: left;
width: 100%;
}
.header-transparent a.meanmenu-reveal i{
color: #fff;
}
.mean-container .mean-nav > ul {
padding: 0;
}
.header-transparent .mean-container .mean-nav a.mean-expand {
color: #fff !important;
}
.mean-container .mean-nav > ul li ul{
padding-left: 10px;
}
.header-transparent .mean-nav ul li a {
border-color: #eee;
color: #fff;
padding: 6px 30px 6px 10px;
}  #site-navigation-wrap .dropdown-menu {
background-color: inherit;
border: inherit;
border-radius: inherit;
color: inherit;
display: block;
float: inherit;
font-size: inherit;
font-family: inherit;
list-style: outside none none;
margin: 0;
min-width: inherit;
padding: 0;
position: static;
text-align: inherit;
z-index: inherit;
background-clip:inherit;
}
#site-navigation-wrap .dropdown-menu a{
text-decoration: none;
color: inherit;
}
a{
color: inherit;
}
.htmega-search-box .btn{
font-family: fontawesome;
padding: 0;
}
.htmega-search-box .fa{
font-family: fontawesome;
}
.woocommerce .col-1,.woocommerce .col-2 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.woocommerce .form-row {
display: block;
}  @media (min-width: 1200px) and (max-width: 1400px) {
} @media (min-width: 992px) and (max-width: 1199px) {
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{
padding: 0;
}
} @media (min-width: 768px) and (max-width: 991px) {
.htmega-banner-style-4 .banner-content {
padding-left: 20px;
padding-right: 20px;
padding-top: 20px;
}
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{
padding: 0;
}
.htmega-banner-style-4 .banner-content h2{
margin-top: 0;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs::before{
left: 40%;
}
.htmega-btn-size-md {
padding: 16px 25px !important;
}
.htmega-btn-size-xl {
padding: 35px 30px !important;
}
.htmega-btn-size-lg {
padding: 25px 30px !important;
}
.htmega-btn-size-sm {
padding: 8px 20px !important;
}
.htmega-call-to-action .text-right {
margin-top: 10px;
text-align: left !important;
}
.callto-action-style-3::before{
display: none;
}
.htmega-newsticker-style-1 .breaking-news-title h5 {
padding: 0 15px;
}
.htmega-team-style-3 .htmega-team-click-action {
margin-bottom: -60px;
}
.htmega-social-network li {
margin: 3px 0;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4 {
margin-top: 0;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4 {
margin-bottom: 0;
margin-top: 0;
}
.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action span {
margin-bottom: 3px;
}
.htmega-team .htmega-team-hover-action .htmega-team-hover p {
padding: 0 5px;
}
.htmega-testimonial-style-5 .testimonial-shape {
bottom: 45%;
}
.htmega-countbox .ht-count {
margin: 0 22px 10px;
}
.title-style-two .section-title-txt {
padding: 0 14%;
}
.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner {
padding: 35px 0 20px;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li {
font-size: 13px;
}
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action {
padding: 0;
} .htmegainstagram-column-tablet-1 .htmega-instragram ul.htmega-instagram-list li{
width: 100%;
}
.htmegainstagram-column-tablet-2 .htmega-instragram ul.htmega-instagram-list li{
width: 50%;
}
.htmegainstagram-column-tablet-3 .htmega-instragram ul.htmega-instagram-list li{
width: 33.33%;
}
.htmegainstagram-column-tablet-4 .htmega-instragram ul.htmega-instagram-list li{
width: 25%;
}
.htmegainstagram-column-tablet-5 .htmega-instragram ul.htmega-instagram-list li{
width: 20%;
}
.htmegainstagram-column-tablet-6 .htmega-instragram ul.htmega-instagram-list li{
width: 16.66%;
}
.htmega-process-area{
background-image: none !important;
}
.htmega-process-column-5 .htmega-single-process-area {
flex: 0 0 50%;
max-width: 50%;
}
} @media (max-width: 767px) {
.htmega-tab-nav a {
margin: 0 5px 10px;
}
.htmega-tab-menu-style-2 a {
margin: 0 10px 10px;
}
.htmega-tab-menu-style-3 a {
margin: 5px 3px -1px;
}
.htmega-tab-style-5 .htmega-tab-nav,.htmega-tab-style-5 .htmega-tab-content-area{
max-width: 100%;
flex: 0 0 100%;
}
.htmega-tab-style-5 .htmega-tab-content-area {
border-left: 0px;
}
.single-partner {
margin-bottom: 20px;
width: auto;
}
.htmega-brands-style-2 ul.brand-list li {
border-right: 0 none;
margin: 0 auto;
width: 50%;
}
.htmega-brands-style-4 ul.brand-list li {
border: 0 none;
padding: 25px 15px;
width: 50%;
}
.htmega-brands-style-5 .brand-logo-col {
flex: 0 0 50%;
max-width: 50%;
}
.htmega-business-horurs-1 .business-hrs-inner {
padding: 70px 0;
}
.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs::before,.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs::before{
display: none;
}
.htmega-business-horurs-5 .business-hrs-inner,.htmega-business-horurs-4 .business-hrs-inner {
padding: 30px 20px;
}
.htmega-business-horurs-3 .business-hrs-inner{
padding: 20px;
}
.htmega-call-to-action .text-right {
margin-top: 10px;
text-align: left !important;
}
.callto-action-style-3::before{
display: none;
}
.callto-action-style-3 .htmega-content{
display: block;
}
.callto-action-style-7 .call-to-action-inner{
padding: 0;
}
.htmega-countbox .ht-count::before{
display: none;
}
.htmega-countbox .ht-count {
margin: 0 22px 15px !important;
}
.htmega-carousel-style-1 .slick-slide.slick-center .single-custom-carousel {
transform: scale(1);
}
.ht-custom-carousel.slick-slider .slick-list, .ht-custom-carousel.slick-slider .slick-track {
padding: 0 !important;
}
.htmega-carousel-style-6 .slick-dots li {
padding: 30px 35px;
}
.htmega-table-style .dataTables_wrapper {
overflow-x: auto;
}
.edd_download_columns_0 .edd_download, .edd_download_columns_3 .edd_download {
width: 100%;
}
.custom-col-5 {
flex: 0 0 100%;
max-width: 100%;
}
a.instagram_follow_btn{
margin-top: 20px;
}
a.instagram_follow_btn span {
font-size: 12px;
padding: 0 5px;
}
.htmega-lightbox img {
width: 100%;
}
.htmega-mailchimp-style-3 .htmega-input-box input {
max-width: inherit;
width: auto;
}
.htmega-team-style-3 .htmega-team-click-action {
margin-bottom: -58px;
}
.htmega-testimonial-style-5 .testimonial-shape {
bottom: 38%;
}
.htmega-testimonial-for .testimonial-desc p {
padding: 0 3%;
}
.htmega-testimonial-style-6,.htmega-testimonial-style-8 {
padding: 0;
}
.htmega-testimonal-nav.slick-slider {
max-width: 100%;
}
.htmega-testimonial-style-4 .testimonal .testimonal-image {
float: none;
padding-right: 0;
}
.htmega-testimonial-style-4 .testimonal .testimonal-image::after,.htmega-testimonial-style-4 .testimonal .testimonal-image::before{
display: none;
}
.htmega-testimonial-style-4 .testimonal .content {
padding-left: 0;
padding-top: 20px;
}
.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content {
padding-left: 25px;
}
.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .timeline-content{
padding-right: 25px;
}
.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content::before{
display: none;
}
.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content {
padding-left: 60px;
width: 100%;
}
.htmega-process-area{
background-image: none !important;
}
.htmega-process-column-4 .htmega-single-process-area,.htmega-process-column-5 .htmega-single-process-area {
flex: 0 0 100%;
max-width: 100%;
}
.htmega-process-column-3 .htmega-single-process-area {
flex: 0 0 100%;
margin-bottom: 30px;
max-width: 100%;
}
.htmega-process-style-2 .htmega-number::before{
display: none;
}
.htmega-process-style-4 {
height: auto;
width: auto;
}
.htmega-process-style-4 .htmega-single-process-area{
position: inherit;
}
.htmega-process-style-4 .htmega-single-process-area:nth-child(2),.htmega-process-style-4 .htmega-single-process-area:nth-child(4) {
top: 0;
}
.elementor-widget-htmega-scrollnavigation-addons .swiper-slide {
height: 100vh !important;
}
.scroll-navigation-inner .elementor-image{
display: none;
}
.elementor-widget-htmega-scrollnavigation-addons .swiper-container .swiper-wrapper .swiper-slide:first-child .elementor-image{
display: block;
}
.htmega_mobile_fit.elementor-section.elementor-section-height-full {
height: 100vh;
}
.htmega_mobile_fit.elementor-section.elementor-section-items-middle .elementor-container {
align-items: center;
}
.htmega_mobile_fit.elementor-section.elementor-section-items-middle .elementor-container {
align-items: center;
height: 100%;
}
.ht-event {
display: block;
}
.ht-event .thumb {
margin-bottom: 20px;
}
.htmega-postcarousel-layout-3 .slick-arrow{
display: none !important;
}
.htmega-countbox .ht-count {
margin: 0 22px 10px;
}
.title-style-two .section-title-txt::before, .title-style-two .section-title-txt::after{
display: none;
}
figure.gallery-item {
margin-top: 20px !important;
}
.htmega-switcher-nav.nav {
background: transparent none repeat scroll 0 0;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .post-carousel-flex {
display: block;
}
.post-carousel-wrapper .htmega-postslider-layout-4 .content{
margin-left: 0;
padding: 30px 20px;
}
.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li {
font-size: 13px;
}
.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action {
padding: 0;
} .htmegainstagram-column-mobile-1 .htmega-instragram ul.htmega-instagram-list li{
width: 100%;
}
.htmegainstagram-column-mobile-2 .htmega-instragram ul.htmega-instagram-list li{
width: 50%;
}
.htmegainstagram-column-mobile-3 .htmega-instragram ul.htmega-instagram-list li{
width: 33.33%;
}
.htmegainstagram-column-mobile-4 .htmega-instragram ul.htmega-instagram-list li{
width: 25%;
}
.htmegainstagram-column-mobile-5 .htmega-instragram ul.htmega-instagram-list li{
width: 20%;
}
.htmegainstagram-column-mobile-6 .htmega-instragram ul.htmega-instagram-list li{
width: 16.66%;
} .htmega-postslider-layout-1 .content,.htmega-postslider-layout-4 .content {
position: static;
max-width: 100%;
padding: 0;
}
.post-carousel-wrapper .htmega-postslider-layout-1 .content{
position: absolute;
}
.thumb-st-layout-4 .content {
position: absolute;
}
.thumb-st-layout-4.htmega-postslider-area ul.slick-dots {
width: 80px;
}
} [class*='htmega-'] svg{
height: auto;
transition: all 0.3s ease-in-out;
} [class*='htmega-'] [type=button]:focus, [class*='htmega-'] [type=submit]:focus, [class*='htmega-'] button:focus {
outline: none;
}
 .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.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
-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 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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
animation-duration: 2s;
}
@-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;
}@-webkit-keyframes np-btn--1 {
60% {
-webkit-transform: scale3d(0.8, 0.8, 1);
transform: scale3d(0.8, 0.8, 1);
}
85% {
-webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes np-btn--1 {
60% {
-webkit-transform: scale3d(0.8, 0.8, 1);
transform: scale3d(0.8, 0.8, 1);
}
85% {
-webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@-webkit-keyframes np-btn--2 {
to {
opacity: 0;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes np-btn--2 {
to {
opacity: 0;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
} @-webkit-keyframes np-hvr-horizontal {
16.65% {
-webkit-transform: translateX(8px);
transform: translateX(8px);
}
33.3% {
-webkit-transform: translateX(-6px);
transform: translateX(-6px);
}
49.95% {
-webkit-transform: translateX(4px);
transform: translateX(4px);
}
66.6% {
-webkit-transform: translateX(-2px);
transform: translateX(-2px);
}
83.25% {
-webkit-transform: translateX(1px);
transform: translateX(1px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes np-hvr-horizontal {
16.65% {
-webkit-transform: translateX(8px);
transform: translateX(8px);
}
33.3% {
-webkit-transform: translateX(-6px);
transform: translateX(-6px);
}
49.95% {
-webkit-transform: translateX(4px);
transform: translateX(4px);
}
66.6% {
-webkit-transform: translateX(-2px);
transform: translateX(-2px);
}
83.25% {
-webkit-transform: translateX(1px);
transform: translateX(1px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
} @-webkit-keyframes hvr-to-bottom-right {
16.65% {
-webkit-transform: translate(8px, 8px);
transform: translate(8px, 8px);
}
33.3% {
-webkit-transform: translate(-6px, -6px);
transform: translate(-6px, -6px);
}
49.95% {
-webkit-transform: translate(4px, 4px);
transform: translate(4px, 4px);
}
66.6% {
-webkit-transform: translate(-2px, -2px);
transform: translate(-2px, -2px);
}
83.25% {
-webkit-transform: translate(1px, 1px);
transform: translate(1px, 1px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes hvr-to-bottom-right {
16.65% {
-webkit-transform: translate(8px, 8px);
transform: translate(8px, 8px);
}
33.3% {
-webkit-transform: translate(-6px, -6px);
transform: translate(-6px, -6px);
}
49.95% {
-webkit-transform: translate(4px, 4px);
transform: translate(4px, 4px);
}
66.6% {
-webkit-transform: translate(-2px, -2px);
transform: translate(-2px, -2px);
}
83.25% {
-webkit-transform: translate(1px, 1px);
transform: translate(1px, 1px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}  @keyframes bounceY {
0% {
transform: translateY(-205px);
}
40% {
transform: translateY(-100px);
}
65% {
transform: translateY(-52px);
}
82% {
transform: translateY(-25px);
}
92% {
transform: translateY(-12px);
}
55%,
75%,
87%,
97%,
100% {
transform: translateY(0px);
}
}
@-moz-keyframes bounceY {
0% {
-moz-transform: translateY(-205px);
}
40% {
-moz-transform: translateY(-100px);
}
65% {
-moz-transform: translateY(-52px);
}
82% {
-moz-transform: translateY(-25px);
}
92% {
-moz-transform: translateY(-12px);
}
55%,
75%,
87%,
97%,
100% {
-moz-transform: translateY(0px);
}
}
@-webkit-keyframes bounceY {
0% {
-webkit-transform: translateY(-205px);
}
40% {
-webkit-transform: translateY(-100px);
}
65% {
-webkit-transform: translateY(-52px);
}
82% {
-webkit-transform: translateY(-25px);
}
92% {
-webkit-transform: translateY(-12px);
}
55%,
75%,
87%,
97%,
100% {
-webkit-transform: translateY(0px);
}
}@font-face{font-family:'simple-line-icons';src:url(//www.rote-herolde-wiesbaden.de/wp-content/themes/oceanwp/assets/fonts/simple-line-icons/Simple-Line-Icons.eot?v=2.4.0);src:url(//www.rote-herolde-wiesbaden.de/wp-content/themes/oceanwp/assets/fonts/simple-line-icons/Simple-Line-Icons.eot?v=2.4.0#iefix)format('embedded-opentype'),url(//www.rote-herolde-wiesbaden.de/wp-content/themes/oceanwp/assets/fonts/simple-line-icons/Simple-Line-Icons.woff2?v=2.4.0)format('woff2'),url(//www.rote-herolde-wiesbaden.de/wp-content/themes/oceanwp/assets/fonts/simple-line-icons/Simple-Line-Icons.ttf?v=2.4.0)format('truetype'),url(//www.rote-herolde-wiesbaden.de/wp-content/themes/oceanwp/assets/fonts/simple-line-icons/Simple-Line-Icons.woff?v=2.4.0)format('woff'),url(//www.rote-herolde-wiesbaden.de/wp-content/themes/oceanwp/assets/fonts/simple-line-icons/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons)format('svg');font-weight:normal;font-style:normal;font-display:swap}.icon-user,.icon-people,.icon-user-female,.icon-user-follow,.icon-user-following,.icon-user-unfollow,.icon-login,.icon-logout,.icon-emotsmile,.icon-phone,.icon-call-end,.icon-call-in,.icon-call-out,.icon-map,.icon-location-pin,.icon-direction,.icon-directions,.icon-compass,.icon-layers,.icon-menu,.icon-list,.icon-options-vertical,.icon-options,.icon-arrow-down,.icon-arrow-left,.icon-arrow-right,.icon-arrow-up,.icon-arrow-up-circle,.icon-arrow-left-circle,.icon-arrow-right-circle,.icon-arrow-down-circle,.icon-check,.icon-clock,.icon-plus,.icon-minus,.icon-close,.icon-exclamation,.icon-organization,.icon-trophy,.icon-screen-smartphone,.icon-screen-desktop,.icon-plane,.icon-notebook,.icon-mustache,.icon-mouse,.icon-magnet,.icon-energy,.icon-disc,.icon-cursor,.icon-cursor-move,.icon-crop,.icon-chemistry,.icon-speedometer,.icon-shield,.icon-screen-tablet,.icon-magic-wand,.icon-hourglass,.icon-graduation,.icon-ghost,.icon-game-controller,.icon-fire,.icon-eyeglass,.icon-envelope-open,.icon-envelope-letter,.icon-bell,.icon-badge,.icon-anchor,.icon-wallet,.icon-vector,.icon-speech,.icon-puzzle,.icon-printer,.icon-present,.icon-playlist,.icon-pin,.icon-picture,.icon-handbag,.icon-globe-alt,.icon-globe,.icon-folder-alt,.icon-folder,.icon-film,.icon-feed,.icon-drop,.icon-drawer,.icon-docs,.icon-doc,.icon-diamond,.icon-cup,.icon-calculator,.icon-bubbles,.icon-briefcase,.icon-book-open,.icon-basket-loaded,.icon-basket,.icon-bag,.icon-action-undo,.icon-action-redo,.icon-wrench,.icon-umbrella,.icon-trash,.icon-tag,.icon-support,.icon-frame,.icon-size-fullscreen,.icon-size-actual,.icon-shuffle,.icon-share-alt,.icon-share,.icon-rocket,.icon-question,.icon-pie-chart,.icon-pencil,.icon-note,.icon-loop,.icon-home,.icon-grid,.icon-graph,.icon-microphone,.icon-music-tone-alt,.icon-music-tone,.icon-earphones-alt,.icon-earphones,.icon-equalizer,.icon-like,.icon-dislike,.icon-control-start,.icon-control-rewind,.icon-control-play,.icon-control-pause,.icon-control-forward,.icon-control-end,.icon-volume-1,.icon-volume-2,.icon-volume-off,.icon-calendar,.icon-bulb,.icon-chart,.icon-ban,.icon-bubble,.icon-camrecorder,.icon-camera,.icon-cloud-download,.icon-cloud-upload,.icon-envelope,.icon-eye,.icon-flag,.icon-heart,.icon-info,.icon-key,.icon-link,.icon-lock,.icon-lock-open,.icon-magnifier,.icon-magnifier-add,.icon-magnifier-remove,.icon-paper-clip,.icon-paper-plane,.icon-power,.icon-refresh,.icon-reload,.icon-settings,.icon-star,.icon-symbol-female,.icon-symbol-male,.icon-target,.icon-credit-card,.icon-paypal,.icon-social-tumblr,.icon-social-twitter,.icon-social-facebook,.icon-social-instagram,.icon-social-linkedin,.icon-social-pinterest,.icon-social-github,.icon-social-google,.icon-social-reddit,.icon-social-skype,.icon-social-dribbble,.icon-social-behance,.icon-social-foursqare,.icon-social-soundcloud,.icon-social-spotify,.icon-social-stumbleupon,.icon-social-youtube,.icon-social-dropbox{font-family:'simple-line-icons';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}.icon-user:before{content:"\e005"}.icon-people:before{content:"\e001"}.icon-user-female:before{content:"\e000"}.icon-user-follow:before{content:"\e002"}.icon-user-following:before{content:"\e003"}.icon-user-unfollow:before{content:"\e004"}.icon-login:before{content:"\e066"}.icon-logout:before{content:"\e065"}.icon-emotsmile:before{content:"\e021"}.icon-phone:before{content:"\e600"}.icon-call-end:before{content:"\e048"}.icon-call-in:before{content:"\e047"}.icon-call-out:before{content:"\e046"}.icon-map:before{content:"\e033"}.icon-location-pin:before{content:"\e096"}.icon-direction:before{content:"\e042"}.icon-directions:before{content:"\e041"}.icon-compass:before{content:"\e045"}.icon-layers:before{content:"\e034"}.icon-menu:before{content:"\e601"}.icon-list:before{content:"\e067"}.icon-options-vertical:before{content:"\e602"}.icon-options:before{content:"\e603"}.icon-arrow-down:before{content:"\e604"}.icon-arrow-left:before{content:"\e605"}.icon-arrow-right:before{content:"\e606"}.icon-arrow-up:before{content:"\e607"}.icon-arrow-up-circle:before{content:"\e078"}.icon-arrow-left-circle:before{content:"\e07a"}.icon-arrow-right-circle:before{content:"\e079"}.icon-arrow-down-circle:before{content:"\e07b"}.icon-check:before{content:"\e080"}.icon-clock:before{content:"\e081"}.icon-plus:before{content:"\e095"}.icon-minus:before{content:"\e615"}.icon-close:before{content:"\e082"}.icon-exclamation:before{content:"\e617"}.icon-organization:before{content:"\e616"}.icon-trophy:before{content:"\e006"}.icon-screen-smartphone:before{content:"\e010"}.icon-screen-desktop:before{content:"\e011"}.icon-plane:before{content:"\e012"}.icon-notebook:before{content:"\e013"}.icon-mustache:before{content:"\e014"}.icon-mouse:before{content:"\e015"}.icon-magnet:before{content:"\e016"}.icon-energy:before{content:"\e020"}.icon-disc:before{content:"\e022"}.icon-cursor:before{content:"\e06e"}.icon-cursor-move:before{content:"\e023"}.icon-crop:before{content:"\e024"}.icon-chemistry:before{content:"\e026"}.icon-speedometer:before{content:"\e007"}.icon-shield:before{content:"\e00e"}.icon-screen-tablet:before{content:"\e00f"}.icon-magic-wand:before{content:"\e017"}.icon-hourglass:before{content:"\e018"}.icon-graduation:before{content:"\e019"}.icon-ghost:before{content:"\e01a"}.icon-game-controller:before{content:"\e01b"}.icon-fire:before{content:"\e01c"}.icon-eyeglass:before{content:"\e01d"}.icon-envelope-open:before{content:"\e01e"}.icon-envelope-letter:before{content:"\e01f"}.icon-bell:before{content:"\e027"}.icon-badge:before{content:"\e028"}.icon-anchor:before{content:"\e029"}.icon-wallet:before{content:"\e02a"}.icon-vector:before{content:"\e02b"}.icon-speech:before{content:"\e02c"}.icon-puzzle:before{content:"\e02d"}.icon-printer:before{content:"\e02e"}.icon-present:before{content:"\e02f"}.icon-playlist:before{content:"\e030"}.icon-pin:before{content:"\e031"}.icon-picture:before{content:"\e032"}.icon-handbag:before{content:"\e035"}.icon-globe-alt:before{content:"\e036"}.icon-globe:before{content:"\e037"}.icon-folder-alt:before{content:"\e039"}.icon-folder:before{content:"\e089"}.icon-film:before{content:"\e03a"}.icon-feed:before{content:"\e03b"}.icon-drop:before{content:"\e03e"}.icon-drawer:before{content:"\e03f"}.icon-docs:before{content:"\e040"}.icon-doc:before{content:"\e085"}.icon-diamond:before{content:"\e043"}.icon-cup:before{content:"\e044"}.icon-calculator:before{content:"\e049"}.icon-bubbles:before{content:"\e04a"}.icon-briefcase:before{content:"\e04b"}.icon-book-open:before{content:"\e04c"}.icon-basket-loaded:before{content:"\e04d"}.icon-basket:before{content:"\e04e"}.icon-bag:before{content:"\e04f"}.icon-action-undo:before{content:"\e050"}.icon-action-redo:before{content:"\e051"}.icon-wrench:before{content:"\e052"}.icon-umbrella:before{content:"\e053"}.icon-trash:before{content:"\e054"}.icon-tag:before{content:"\e055"}.icon-support:before{content:"\e056"}.icon-frame:before{content:"\e038"}.icon-size-fullscreen:before{content:"\e057"}.icon-size-actual:before{content:"\e058"}.icon-shuffle:before{content:"\e059"}.icon-share-alt:before{content:"\e05a"}.icon-share:before{content:"\e05b"}.icon-rocket:before{content:"\e05c"}.icon-question:before{content:"\e05d"}.icon-pie-chart:before{content:"\e05e"}.icon-pencil:before{content:"\e05f"}.icon-note:before{content:"\e060"}.icon-loop:before{content:"\e064"}.icon-home:before{content:"\e069"}.icon-grid:before{content:"\e06a"}.icon-graph:before{content:"\e06b"}.icon-microphone:before{content:"\e063"}.icon-music-tone-alt:before{content:"\e061"}.icon-music-tone:before{content:"\e062"}.icon-earphones-alt:before{content:"\e03c"}.icon-earphones:before{content:"\e03d"}.icon-equalizer:before{content:"\e06c"}.icon-like:before{content:"\e068"}.icon-dislike:before{content:"\e06d"}.icon-control-start:before{content:"\e06f"}.icon-control-rewind:before{content:"\e070"}.icon-control-play:before{content:"\e071"}.icon-control-pause:before{content:"\e072"}.icon-control-forward:before{content:"\e073"}.icon-control-end:before{content:"\e074"}.icon-volume-1:before{content:"\e09f"}.icon-volume-2:before{content:"\e0a0"}.icon-volume-off:before{content:"\e0a1"}.icon-calendar:before{content:"\e075"}.icon-bulb:before{content:"\e076"}.icon-chart:before{content:"\e077"}.icon-ban:before{content:"\e07c"}.icon-bubble:before{content:"\e07d"}.icon-camrecorder:before{content:"\e07e"}.icon-camera:before{content:"\e07f"}.icon-cloud-download:before{content:"\e083"}.icon-cloud-upload:before{content:"\e084"}.icon-envelope:before{content:"\e086"}.icon-eye:before{content:"\e087"}.icon-flag:before{content:"\e088"}.icon-heart:before{content:"\e08a"}.icon-info:before{content:"\e08b"}.icon-key:before{content:"\e08c"}.icon-link:before{content:"\e08d"}.icon-lock:before{content:"\e08e"}.icon-lock-open:before{content:"\e08f"}.icon-magnifier:before{content:"\e090"}.icon-magnifier-add:before{content:"\e091"}.icon-magnifier-remove:before{content:"\e092"}.icon-paper-clip:before{content:"\e093"}.icon-paper-plane:before{content:"\e094"}.icon-power:before{content:"\e097"}.icon-refresh:before{content:"\e098"}.icon-reload:before{content:"\e099"}.icon-settings:before{content:"\e09a"}.icon-star:before{content:"\e09b"}.icon-symbol-female:before{content:"\e09c"}.icon-symbol-male:before{content:"\e09d"}.icon-target:before{content:"\e09e"}.icon-credit-card:before{content:"\e025"}.icon-paypal:before{content:"\e608"}.icon-social-tumblr:before{content:"\e00a"}.icon-social-twitter:before{content:"\e009"}.icon-social-facebook:before{content:"\e00b"}.icon-social-instagram:before{content:"\e609"}.icon-social-linkedin:before{content:"\e60a"}.icon-social-pinterest:before{content:"\e60b"}.icon-social-github:before{content:"\e60c"}.icon-social-google:before{content:"\e60d"}.icon-social-reddit:before{content:"\e60e"}.icon-social-skype:before{content:"\e60f"}.icon-social-dribbble:before{content:"\e00d"}.icon-social-behance:before{content:"\e610"}.icon-social-foursqare:before{content:"\e611"}.icon-social-soundcloud:before{content:"\e612"}.icon-social-spotify:before{content:"\e613"}.icon-social-stumbleupon:before{content:"\e614"}.icon-social-youtube:before{content:"\e008"}.icon-social-dropbox:before{content:"\e00c"}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;outline:0;font-size:100%;font:inherit;vertical-align:baseline;font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-size:62.5%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block}table{border-collapse:collapse;border-spacing:0}caption,th,td{font-weight:normal;text-align:left}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}blockquote,q{quotes:none}a:focus{outline:0}a:hover,a:active{outline:0}a img{border:0}img{max-width:100%;height:auto}select{max-width:100%}em{font-style:italic}* html{font-size:87.5%}html{-ms-overflow-x:hidden;overflow-x:hidden}body{font-family:"Open Sans",sans-serif;font-size:14px;line-height:1.8;color:#4a4a4a;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-wrap:break-word;word-wrap:break-word}body{background-color:#fff}.mejs-container{margin-bottom:20px}dfn,cite,em,i{font-style:italic}body .oceanwp-row{margin:0 -0.625rem}body .oceanwp-row .col{float:left;margin:0 0 1.25rem;padding:0 0.625rem}body .oceanwp-row .span_1_of_1{float:none;width:100%}body .oceanwp-row .span_1_of_2{width:50%}body .oceanwp-row .span_1_of_3{width:33.33%}body .oceanwp-row .span_1_of_4{width:25%}body .oceanwp-row .span_1_of_5{width:20%}body .oceanwp-row .span_1_of_6{width:16.66666667%}body .oceanwp-row .span_1_of_7{width:14.28%}body .oceanwp-row .span_1_of_8{width:12.5%}body .oceanwp-row .span_1_of_9{width:11.11%}body .oceanwp-row .span_1_of_10{width:10%}.count-1,.col-1,.col.first{clear:both;margin-left:0}.isotope-entry{clear:none}.no-margin{margin:0 !important}.no-padding{padding:0 !important}.responsive-video-wrap iframe,.responsive-video-wrap object,.responsive-video-wrap embed,.responsive-audio-wrap iframe,.responsive-audio-wrap object,.responsive-audio-wrap embed{display:block}.wp-video-shortcode{max-width:100% !important}.responsive-video-wrap p{margin:0}form.oceanwp-searchform{display:inline-block;position:relative;height:35px}form.oceanwp-searchform input{margin:0;padding:0 40px 0 15px;height:100%;min-height:100%}form.oceanwp-searchform button{display:block;position:absolute;top:50%;right:0;min-width:40px;height:60%;height:100%;font-size:12px;font-weight:600;background-color:transparent !important;margin:0;padding:0;border:0;text-align:center;line-height:1;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.polylang-switcher-shortcode li{float:left;margin-right:5px}.polylang-switcher-shortcode.flags-and-names li{margin-right:15px}.polylang-switcher-shortcode li:last-child{margin-right:0}.screen-reader-text{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(50%);height:1px;margin:-1px;font-size:14px !important;font-weight:400;overflow:hidden;padding:0;position:absolute !important;width:1px;word-wrap:normal !important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;clip-path:none;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.no-display{border:0;clip:rect(1px, 1px, 1px, 1px);display:none;height:1px;overflow:hidden;padding:0;position:absolute;width:1px;-webkit-clip-path:circle(1% at 1% 1%);clip-path:circle(1% at 1% 1%)}.owp-icon{width:14px;height:14px;vertical-align:text-bottom}#owp-svg-icons path,#owp-svg-icons rect,#owp-svg-icons circle,#owp-svg-icons line,#owp-svg-icons polygon,#owp-svg-icons polyline{stroke:inherit;fill:none}.owp-icon use{stroke:#333}::selection{color:#fff;background:#333;text-shadow:none}::-moz-selection{color:#fff;background:#333;text-shadow:none}@media only screen and (min-width: 768px) and (max-width: 959px){body .oceanwp-row .span_1_of_4.col-3.col{margin-left:0;clear:both}body .oceanwp-row .span_1_of_4.col:not(.product),body .oceanwp-isotope-grid .span_1_of_4.col{width:50%}}@media only screen and (max-width: 480px){.col{width:100%;margin-left:0;margin-right:0;margin-bottom:30px}} html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:600}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.container{width:1200px;max-width:90%;margin:0 auto}#wrap{position:relative}#main{position:relative}#main #content-wrap{padding-top:50px;padding-bottom:50px}.no-margins #main #content-wrap,.no-margins.separate-layout #main #content-wrap,.landing-page #main #content-wrap{padding-top:0;padding-bottom:0}.content-area{float:left;position:relative;width:72%;padding-right:30px;border-right-width:1px;border-style:solid;border-color:#f1f1f1}.widget-area{width:28%}.widget-area.sidebar-primary{float:right;padding-left:30px}.widget-area.sidebar-secondary{float:left}.content-full-width .content-area,body.content-full-screen #content-wrap{width:100% !important;max-width:none !important;padding:0 !important;border:0 !important}.content-full-screen .content-area{float:none;width:100% !important;max-width:none !important;padding:0 !important;margin:0 !important;border:0 !important}.content-left-sidebar .content-area{float:right;padding-left:30px;padding-right:0;border-left-width:1px;border-right-width:0}.content-left-sidebar .widget-area{float:left;padding-right:30px;padding-left:0}.content-both-sidebars .content-area{width:44%}.content-both-sidebars.scs-style .content-area{left:28%;padding-left:30px;border-left-width:1px}.content-both-sidebars.scs-style .widget-area.sidebar-secondary{position:relative;left:-44%;padding-right:30px}.content-both-sidebars.ssc-style .content-area{left:56%;padding-left:30px;padding-right:0;border-left-width:1px;border-right-width:0}.content-both-sidebars.ssc-style .widget-area{position:relative;left:-44%;padding-right:30px}.content-both-sidebars.ssc-style .widget-area.sidebar-primary{padding-left:0}.content-both-sidebars.css-style .widget-area.sidebar-secondary{padding-left:30px}.boxed-layout{background-color:#e9e9e9}.boxed-layout #wrap{width:1280px;max-width:100%;margin:0 auto;background-color:#fff}.boxed-layout.wrap-boxshadow #wrap{-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.15);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.15);box-shadow:0 1px 4px rgba(0,0,0,0.15)}.boxed-layout #wrap .container{width:auto;max-width:none;padding-left:30px;padding-right:30px}.boxed-layout.content-full-screen #content-wrap{padding-left:0 !important;padding-right:0 !important}.boxed-layout #footer-widgets{margin:0}.boxed-layout .site-breadcrumbs{right:30px}.separate-layout{background-color:#f1f1f1}.separate-layout .content-area,.separate-layout .widget-area .sidebar-box{background-color:#fff;padding:30px}.separate-layout.content-left-sidebar .content-area{padding:30px}.separate-layout.content-full-width .content-area{padding:30px !important}.separate-layout .content-area{border-right-width:0}.separate-layout.content-left-sidebar .content-area{border-left-width:0}.separate-layout .widget-area.sidebar-primary{padding-left:20px}.separate-layout .widget-area.sidebar-secondary{padding-right:20px}.separate-layout.content-left-sidebar .widget-area{padding-right:20px;padding-left:0}.separate-layout #main #content-wrap{padding-top:20px;padding-bottom:20px}.separate-layout .sidebar-box{margin-bottom:20px}.separate-layout .sidebar-box:last-child{margin-bottom:0}.separate-layout.content-both-sidebars.scs-style .content-area{border-left-width:0}.separate-layout.content-both-sidebars.scs-style .widget-area.sidebar-secondary{padding-right:20px}.separate-layout.content-both-sidebars.ssc-style .content-area{padding-right:30px;border-left-width:0}.separate-layout.content-both-sidebars.ssc-style .widget-area{padding-right:20px}.separate-layout.content-both-sidebars.css-style .widget-area.sidebar-secondary{padding-left:20px;padding-right:0}body.separate-blog.separate-layout .content-area{padding:0 !important;background-color:transparent}body.separate-blog.separate-layout #blog-entries>*{background-color:#fff;padding:30px;border:0;margin-bottom:20px}body.separate-blog.separate-layout #blog-entries>:last-child{margin-bottom:0}body.separate-blog.separate-layout .oceanwp-pagination,body.separate-blog.separate-layout .page-jump,body.separate-blog.separate-layout .scroller-status{background-color:#fff;padding:30px;margin-top:20px}body.separate-blog.separate-layout .oceanwp-pagination ul.page-numbers,body.separate-blog.separate-layout .page-jump ul.page-numbers,body.separate-blog.separate-layout .scroller-status ul.page-numbers{padding:0}body.separate-blog.separate-layout .oceanwp-row{margin:0;margin-right:-1.25rem}body.separate-blog.separate-layout #blog-entries.blog-grid>*{background-color:transparent;padding:0 1.25rem 0 0}body.separate-blog.separate-layout #blog-entries.blog-grid>:last-child{margin-bottom:1.25rem}body.separate-blog.separate-layout.has-blog-grid .oceanwp-pagination{margin-top:0}body.separate-blog.separate-layout .blog-entry.grid-entry .blog-entry-inner{background-color:#fff;padding:1.875rem;border:0}body.separate-blog.separate-layout .blog-entry.grid-entry .thumbnail{margin:0}@media only screen and (max-width: 1280px){.content-both-sidebars .content-area{float:none !important;width:100% !important;left:auto !important;border-width:0 !important}.content-both-sidebars:not(.separate-layout) .content-area{padding:0 !important;margin-bottom:40px}.content-both-sidebars .widget-area.sidebar-primary,.content-both-sidebars .widget-area.sidebar-secondary{float:left;width:49% !important;left:auto !important;padding:0 !important}.content-both-sidebars .widget-area.sidebar-primary{float:right}.content-both-sidebars:not(.separate-layout) .widget-area.sidebar-primary,.content-both-sidebars:not(.separate-layout) .widget-area.sidebar-secondary{width:48% !important}.separate-layout.content-both-sidebars .content-area{margin-bottom:20px}.separate-layout.content-both-sidebars .widget-area.sidebar-primary,.separate-layout.content-both-sidebars .widget-area.sidebar-secondary{width:49% !important}.separate-layout.content-both-sidebars .widget-area.sidebar-secondary{margin-bottom:20px}.separate-layout.content-both-sidebars .widget-area.sidebar-primary{padding-left:0}}@media only screen and (max-width: 1080px){.content-both-sidebars .content-area{float:none !important;width:100% !important;left:auto !important;border-width:0 !important}.content-both-sidebars:not(.separate-layout) .content-area{padding:0 !important;margin-bottom:40px}.content-both-sidebars .widget-area.sidebar-primary,.content-both-sidebars .widget-area.sidebar-secondary{float:left;width:49% !important;left:auto !important;padding:0 !important}.content-both-sidebars .widget-area.sidebar-primary{float:right}.content-both-sidebars:not(.separate-layout) .widget-area.sidebar-primary,.content-both-sidebars:not(.separate-layout) .widget-area.sidebar-secondary{width:48% !important}.separate-layout.content-both-sidebars .content-area{margin-bottom:20px}.separate-layout.content-both-sidebars .widget-area.sidebar-primary,.separate-layout.content-both-sidebars .widget-area.sidebar-secondary{width:49% !important}.separate-layout.content-both-sidebars .widget-area.sidebar-secondary{margin-bottom:20px}.separate-layout.content-both-sidebars .widget-area.sidebar-primary{padding-left:0}}@media only screen and (max-width: 959px){.boxed-layout #wrap{overflow:hidden}.boxed-layout .site-breadcrumbs{right:auto}.container,body.content-full-screen .elementor-section-wrap>.elementor-section.elementor-section-boxed>.elementor-container{max-width:90%}.content-area,.content-left-sidebar .content-area{float:none !important;width:100%;margin-bottom:40px;border:0}body.sidebar-content .content-area{margin-bottom:0}body:not(.separate-layout) .content-area,.content-left-sidebar:not(.separate-layout) .content-area{padding:0 !important}.no-margins .content-area,.no-margins.content-left-sidebar .content-area{margin-bottom:0}.widget-area.sidebar-primary,.widget-area.sidebar-secondary,.content-left-sidebar .widget-area{float:none !important;width:100%;padding:0 !important;border:0}body.has-composer.has-sidebar #primary{margin-bottom:40px}#main #content-wrap.container{width:auto !important}.content-both-sidebars .widget-area.sidebar-primary,.content-both-sidebars .widget-area.sidebar-secondary{float:none !important;width:100% !important}.content-both-sidebars:not(.separate-layout) .widget-area.sidebar-primary,.content-both-sidebars:not(.separate-layout) .widget-area.sidebar-secondary{width:100% !important}.separate-layout.content-both-sidebars .widget-area.sidebar-primary,.separate-layout.content-both-sidebars .widget-area.sidebar-secondary{width:100% !important}.separate-layout .container,.separate-layout.content-full-screen .elementor-section-wrap>.elementor-section.elementor-section-boxed>.elementor-container{max-width:95%}.separate-layout .content-area,.separate-layout.content-left-sidebar .content-area{margin-bottom:20px}.separate-layout .widget-area{padding-left:0 !important;padding-right:0 !important}body.separate-blog.separate-layout .oceanwp-row{margin:0 !important}body.separate-blog.separate-layout #blog-entries.blog-grid>*{padding:0 !important}}@media only screen and (min-width: 768px) and (max-width: 959px){body.boxed-layout #wrap,body.boxed-layout .parallax-footer{width:auto !important}}@media only screen and (max-width: 767px){#wrap{width:100% !important}body.boxed-layout #wrap{width:auto !important}.boxed-layout #top-bar-social.top-bar-right{right:auto}.boxed-layout #top-bar-social.top-bar-left{left:auto}.col:not(.swiper-slide),.blog-entry{width:100% !important;margin-bottom:25px}}@media only screen and (max-width: 480px){.boxed-layout #wrap .container{padding-left:20px;padding-right:20px}}figure>img{display:block;margin:0 auto}img{max-width:100%;height:auto;vertical-align:middle}img[class*="align"],img[class*="attachment-"]{height:auto}.wp-caption{max-width:100%;margin-bottom:24px}.wp-caption img[class*="wp-image-"]{display:block;margin-bottom:5px}.wp-caption-text{font-size:14px;font-style:italic;color:#999}.wp-smiley{margin-top:0;margin-bottom:0;padding:0;border:0}embed,iframe,object{width:100%;max-width:100%}.entry-content .alignwide{margin-left:-3%;width:calc(100% + 6%);max-width:calc(100% + 6%)}.entry-content .alignfull{margin-left:-32px;width:calc(100% + 64px);max-width:calc(100% + 64px)}.page .entry .alignfull{margin-left:-32px;width:calc(100% + 64px);max-width:calc(100% + 64px)}.page .entry .alignwide{margin-left:-3%;width:calc(100% + 6%);max-width:calc(100% + 6%)}body.content-full-screen .entry-content .alignwide,body.content-full-screen .entry-content .alignfull,body.content-full-screen .entry .alignwide,body.content-full-screen .entry .alignfull{margin-left:0;width:100%;max-width:100%}body.single-post.content-max-width .entry-content .wp-block-embed .responsive-video-wrap,body.page.content-max-width .entry .wp-block-embed .responsive-video-wrap{max-width:100%;padding-left:0;padding-right:0}body.single-post.content-max-width .entry-content .alignwide,body.page.content-max-width .entry .alignwide{margin:0 auto;width:calc(90% + 32px);max-width:calc(90% + 32px)}body.single-post.content-max-width .entry-content .alignfull,body.page.content-max-width .entry .alignfull{width:100vw;max-width:100vw;margin-left:calc(50% - 50vw)}@media screen and (max-width: 959px){.entry-content .alignfull{margin-left:-5.5%;width:calc(100% + 11%);max-width:calc(100% + 11%)}.page .entry .alignfull{margin-left:-5.5%;width:calc(100% + 11%);max-width:calc(100% + 11%)}}.alignleft{float:left;margin-right:1.5em}.alignright{float:right;margin-left:1.5em}.aligncenter{text-align:center;margin:0 auto;clear:both}img.aligncenter,.wp-caption.aligncenter{display:block;margin:0 auto}.alignnone{display:block}table{width:100%;margin-bottom:2.618em}table th,table td{padding:10px;text-align:left;vertical-align:top;border-bottom:1px solid #e9e9e9}table th{text-transform:uppercase}.sticky,.bypostauthor{font-size:inherit}.col:after,.clr:after,.group:after,dl:after,.left_float:after,.right_float:after{content:"";display:block;visibility:hidden;clear:both;zoom:1;height:0}.left_float{float:left;width:48%}.right_float{float:right;width:48%}.no_float{clear:both}.left_float label,.right_float label,.no_float label{font-size:13px;font-weight:600;color:#333}.full{display:block;width:100%}.gallery-item{display:inline-block;text-align:left;vertical-align:top;margin:0 0 1.5em;width:50%}.gallery-columns-1 .gallery-item{width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-item a,.gallery-item a:hover,.gallery-item a:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:none;display:inline-block;max-width:100%;vertical-align:top}.gallery-item a img{display:block}.gallery-caption{background-color:#f5f5f5;color:#333;font-size:14px;font-weight:400;line-height:1.3;padding:8px 10px}.gallery-columns-7 .gallery-caption,.gallery-columns-8 .gallery-caption,.gallery-columns-9 .gallery-caption{display:none}@media screen and (min-width: 30em){.gallery-item{max-width:25%}.gallery-columns-1 .gallery-item{max-width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}}@media screen and (min-width: 48em){.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}}.responsive-video-wrap{position:relative}.responsive-video-wrap:before{content:"";display:block;padding-top:56.25%}.responsive-video-wrap iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%;display:block}.wp-block-embed .responsive-video-wrap{position:static}.wp-block-embed .responsive-video-wrap:before{display:none}a{color:#333}a:hover{color:#13aff0}a.light{color:#fff}a.light:hover{color:#13aff0}a,a:hover,a:focus{text-decoration:none;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.single-post:not(.elementor-page) .entry-content a:not(.wp-block-button__link):not(.wp-block-file__button),.page:not(.elementor-page):not(.woocommerce-page) .entry a:not(.wp-block-button__link):not(.wp-block-file__button){cursor:pointer;text-underline-offset:3px;text-decoration:underline;text-decoration-skip-ink:all;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.single-post:not(.elementor-page) .entry-content a:not(.wp-block-button__link):not(.wp-block-file__button):hover,.page:not(.elementor-page):not(.woocommerce-page) .entry a:not(.wp-block-button__link):not(.wp-block-file__button):hover{text-decoration:underline;text-decoration-style:dotted;text-decoration-skip-ink:none;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.single-post:not(.elementor-page) .entry-content a:not(.wp-block-button__link):not(.wp-block-file__button):focus:not(.wp-block-button__link):not(.wp-block-file__button),.page:not(.elementor-page):not(.woocommerce-page) .entry a:not(.wp-block-button__link):not(.wp-block-file__button):focus:not(.wp-block-button__link):not(.wp-block-file__button){outline:2px solid transparent;text-decoration:underline 1px dotted #13aff0;text-decoration-skip-ink:none;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}h1,h2,h3,h4,h5,h6{font-weight:600;margin:0 0 20px;color:#333;line-height:1.4}h1{font-size:23px}h2{font-size:20px}h3{font-size:18px}h4{font-size:17px}h5{font-size:15px}h6{font-size:14px}.theme-heading{font-size:14px;letter-spacing:1.3px;margin:0 0 20px;text-transform:uppercase}.theme-heading .text::before{content:'\f105';font-family:'Font Awesome 5 Free';font-size:18px;font-weight:600;color:#13aff0;padding-right:6px}p{margin:0 0 20px}abbr[title],dfn[title]{cursor:help}del{vertical-align:baseline;text-decoration:line-through;color:#aaa}code,kbd,pre,samp{font-size:16px}pre{margin:20px 0;padding:20px;color:#2080ad;background-color:#fafafa}code{color:#2080ad}.wp-block-quote{margin:1.5em auto;padding-left:20px;border-left-width:3px;border-style:solid;border-left-color:#13aff0}blockquote{font-style:italic;margin:20px 40px;padding-left:20px;border-left-width:3px;border-style:solid;border-left-color:#13aff0}blockquote cite{position:relative;display:block;padding:10px 0 0 20px;color:#555}blockquote cite:before{position:absolute;left:0;content:"\2014"}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin:0 0 20px}ul,ol{margin:15px 0 15px 20px}ol{list-style-type:decimal}ol ol{list-style:upper-alpha}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:lower-alpha}li ul,li ol{margin:0 0 0 25px}dl{margin:20px}dt{font-weight:700}dd{margin-bottom:20px}hr{clear:both;height:1px;min-height:0;margin:20px 0;border-top:1px solid #e9e9e9;border-right:0;border-bottom:0;border-left:0}hr.dotted{border-style:dotted}hr.dashed{border-style:dashed}hr.blackborder{border-color:#000}hr.whiteborder{border-color:#fff}@media print{*{background:transparent !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}@media only screen and (max-width: 480px){blockquote{margin:20px 0}}form input[type="text"],form input[type="password"],form input[type="email"],form input[type="url"],form input[type="date"],form input[type="month"],form input[type="time"],form input[type="datetime"],form input[type="datetime-local"],form input[type="week"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="color"],form select,form textarea{display:inline-block;min-height:40px;width:100%;font-size:14px;line-height:1.8;padding:6px 12px;vertical-align:middle;background-color:transparent;color:#333;border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}form select{padding-top:0 !important;padding-bottom:0 !important}form input[type="number"]{max-width:50px;padding:0 0 0 8px}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="search"],textarea{-webkit-appearance:none}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-results-button,input[type="search"]::-webkit-search-results-decoration{display:none}form textarea{min-height:150px;line-height:1.5;resize:vertical}input[type="checkbox"]{display:inline-block;background-color:#fff;border:1px solid #bbb;line-height:0;width:16px;min-width:16px;height:16px;margin:-3px 10px 0 0;outline:0;text-align:center;vertical-align:middle;clear:none;cursor:pointer;-webkit-appearance:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-webkit-transition:0.05s border-color ease-in-out;-moz-transition:0.05s border-color ease-in-out;-ms-transition:0.05s border-color ease-in-out;-o-transition:0.05s border-color ease-in-out;transition:0.05s border-color ease-in-out}input[type=radio]:checked:before,input[type=checkbox]:checked:before{float:left;display:inline-block;vertical-align:middle;width:16px;line-height:14px;font-family:'Font Awesome 5 Free';text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked:before{content:'\f00c';margin-bottom:-1px;color:#13aff0;font-weight:600}form input:not([type]){display:inline-block;padding:5px 10px;border:1px solid #ccc;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 3px #ddd;-moz-box-shadow:inset 0 1px 3px #ddd;box-shadow:inset 0 1px 3px #ddd}form input[type="color"]{padding:5px 10px}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="email"]:focus,form input[type="url"]:focus,form input[type="date"]:focus,form input[type="month"]:focus,form input[type="time"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="week"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="color"]:focus,form select:focus,form textarea:focus{border-color:#bbb;outline:0}form input:not([type]):focus{border-color:#bbb;outline:0}form input[type="file"]:focus,form input[type="radio"]:focus,form input[type="checkbox"]:focus{outline:0}form input[type="checkbox"],form input[type="radio"]{display:inline-block}form input[type="text"][disabled],form input[type="password"][disabled],form input[type="email"][disabled],form input[type="url"][disabled],form input[type="date"][disabled],form input[type="month"][disabled],form input[type="time"][disabled],form input[type="datetime"][disabled],form input[type="datetime-local"][disabled],form input[type="week"][disabled],form input[type="number"][disabled],form input[type="search"][disabled],form input[type="tel"][disabled],form input[type="color"][disabled],form select[disabled],form textarea[disabled]{cursor:not-allowed;color:#cad2d3;background-color:#eaeded}form input:not([type])[disabled]{cursor:not-allowed;color:#cad2d3;background-color:#eaeded}form input[readonly],form select[readonly],form textarea[readonly]{color:#777;border-color:#ccc;background-color:#eee}form input:focus:invalid,form textarea:focus:invalid,form select:focus:invalid{color:#b94a48;border-color:#e9322d}form input[type="file"]:focus:invalid:focus,form input[type="radio"]:focus:invalid:focus,form input[type="checkbox"]:focus:invalid:focus{outline-color:#e9322d}select{width:100%;height:2.25em;min-height:auto;border:1px solid #ddd;background-color:white;cursor:pointer;padding:0 15px;margin:0}form select[multiple]{height:auto}form label{margin-bottom:3px}form fieldset{margin:0;padding:.35em 0 .75em;border:0}form legend{display:block;width:100%;margin-bottom:.3em;padding:.3em 0;color:#333;border-bottom:1px solid #e5e5e5}input[type="button"],input[type="reset"],input[type="submit"],button[type="submit"],.button,body div.wpforms-container-full .wpforms-form input[type=submit],body div.wpforms-container-full .wpforms-form button[type=submit],body div.wpforms-container-full .wpforms-form .wpforms-page-button{display:inline-block;font-family:inherit;background-color:#13aff0;color:#fff;font-size:12px;font-weight:600;text-transform:uppercase;margin:0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:0.1em;line-height:1;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:hover,button[type="submit"]:hover,input[type="button"]:focus,input[type="reset"]:focus,input[type="submit"]:focus,button[type="submit"]:focus,.button:hover,body div.wpforms-container-full .wpforms-form input[type=submit]:hover,body div.wpforms-container-full .wpforms-form button[type=submit]:hover,body div.wpforms-container-full .wpforms-form .wpforms-page-button:hover{background-color:#0b7cac;color:#fff}input[type="button"]:focus,input[type="reset"]:focus,input[type="submit"]:focus,button[type="submit"]:focus,button:focus,.button:focus{outline:0}.pure-button[disabled],.pure-button-disabled,.pure-button-disabled:hover,.pure-button-disabled:focus,.pure-button-disabled:active{cursor:not-allowed;-moz-opacity:.4;-webkit-opacity:.4;opacity:.4;border:none;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}button::-moz-focus-inner,input[type="button"]::-moz-focus-inner,input[type="reset"]::-moz-focus-inner,input[type="submit"]::-moz-focus-inner{padding:0;border:0}.pure-button-primary,.pure-button-selected,a.pure-button-primary,a.pure-button-selected{color:#fff;background-color:#0078e7}.comment-form-cookies-consent{display:inline-block;width:100%}.comment-form-cookies-consent label{display:inline-block}#top-bar-wrap{position:relative;background-color:#fff;font-size:12px;border-bottom:1px solid #f1f1f1;z-index:101}#top-bar{padding:8px 0}#top-bar-inner{position:relative}.top-bar-left{float:left}.top-bar-right{float:right}.top-bar-centered{float:none;text-align:center}@media only screen and (max-width: 767px){#top-bar{padding:20px 0}#top-bar>div:nth-child(2){padding-top:20px}.top-bar-right{float:none;text-align:center}}@media screen and (max-width: 782px){#top-bar-wrap{z-index:100}}#top-bar-content strong{color:#333}#top-bar-content>a{color:#555}#top-bar-content>a:hover{color:#13aff0}#top-bar-content select{background-color:transparent;padding:5px;color:rgba(0,0,0,0.4);border-color:rgba(0,0,0,0.2);min-width:100px}#top-bar-content #lang_sel{position:relative;display:inline-block;top:3px;margin-right:10px;z-index:99}#topbar-template{display:inline-block}#top-bar-wrap #lang_sel ul ul{z-index:99999}.top-bar-right .polylang-switcher-shortcode{float:right;margin:0;margin-left:20px}.top-bar-left .polylang-switcher-shortcode{float:left;margin:0;margin-right:20px}@media only screen and (max-width: 767px){#top-bar-content,#top-bar-social-alt{float:none;text-align:center}#top-bar #lang_sel{text-align:left}body.rtl #top-bar #lang_sel{text-align:right}}.top-bar-left.has-content #top-bar-nav,.top-bar-right.has-content #top-bar-nav{margin:0;margin-right:20px;padding:0}#top-bar-nav,#top-bar-nav>li{display:inline-block}#top-bar-content.top-bar-centered #top-bar-nav,#top-bar-content.top-bar-centered #top-bar-nav>li{display:inline-block;float:none}#top-bar-nav>ul>li{display:inline-block;float:none;margin-right:15px}#top-bar-nav>ul>li:last-child{margin-right:0}#top-bar-nav>ul>li a .nav-arrow{margin-left:4px;margin-right:0}@media only screen and (max-width: 767px){#top-bar #top-bar-nav>li{float:none;display:inline-block}#top-bar-nav{float:none;text-align:center}}#top-bar-social ul{margin:0;padding:0;list-style:none}#top-bar-social li{float:left}#top-bar-social li a{display:block;float:left;font-size:14px;color:#bbb;padding:0 6px}#top-bar-social.top-bar-left li:first-child a{padding-left:0}#top-bar-social.top-bar-right li:last-child a{padding-right:0}#top-bar-social li a.oceanwp-twitter a:hover{color:#46d4fe}#top-bar-social li a.oceanwp-facebook a:hover{color:#37589b}#top-bar-social li a.oceanwp-googleplus a:hover{color:#de5a49}#top-bar-social li a.oceanwp-pinterest a:hover{color:#cb2027}#top-bar-social li a.oceanwp-dribbble a:hover{color:#ea4c89}#top-bar-social li a.oceanwp-vk a:hover{color:#597BA5}#top-bar-social li a.oceanwp-instagram a:hover{color:#3F729B}#top-bar-social li a.oceanwp-linkedin a:hover{color:#3399CC}#top-bar-social li a.oceanwp-tumblr a:hover{color:#2C4762}#top-bar-social li a.oceanwp-github a:hover{color:#60b044}#top-bar-social li a.oceanwp-flickr a:hover{color:#fa4086}#top-bar-social li a.oceanwp-skype a:hover{color:#00AFF0}#top-bar-social li a.oceanwp-youtube a:hover{color:#C4302B}#top-bar-social li a.oceanwp-vimeo a:hover{color:#1ab7ea}#top-bar-social li a.oceanwp-vine a:hover{color:#00bf8f}#top-bar-social li a.oceanwp-xing a:hover{color:#006464}#top-bar-social li a.oceanwp-yelp a:hover{color:#C41200}#top-bar-social li a.oceanwp-tripadvisor a:hover{color:#589442}#top-bar-social li a.oceanwp-rss a:hover{color:#ff7900}#top-bar-social li a.oceanwp-email a:hover{color:#13aff0}#top-bar-social.top-bar-right{position:absolute;right:0;top:50%;height:20px;line-height:20px;margin-top:-10px}#top-bar-social.top-bar-left{position:absolute;left:0;top:50%;height:20px;line-height:20px;margin-top:-10px}#top-bar-social.top-bar-centered{padding-top:15px}#top-bar-social.top-bar-centered li{display:inline-block;float:none}@media only screen and (max-width: 767px){#top-bar-social{text-align:center}#top-bar-social.top-bar-left,#top-bar-social.top-bar-right{position:inherit;left:auto;right:auto;float:none;height:auto;line-height:1.5em;margin-top:0}#top-bar-social li{float:none;display:inline-block}}#site-header{position:relative;width:100%;background-color:#fff;border-bottom:1px solid #f1f1f1;z-index:100}#site-header.is-transparent{position:absolute;top:0;background-color:transparent;height:auto;z-index:9999}#transparent-header-wrap{position:relative}.has-transparent-header .oceanwp-sticky-header-holder{height:auto !important}.has-transparent-header .is-sticky #site-header{background-color:#fff}.no-header-border #site-header{border-bottom:none}#site-header-inner{position:relative;height:100%}#site-logo{float:left;height:100%;display:table}#site-logo #site-logo-inner{display:table-cell;vertical-align:middle;height:74px}#site-logo #site-logo-inner a{background-color:transparent !important}#site-logo #site-logo-inner a img{width:auto;vertical-align:middle;-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}#site-logo #site-logo-inner a:hover img{-moz-opacity:.6;-webkit-opacity:.6;opacity:.6}#site-logo #site-logo-inner picture{display:inline-block}#site-logo a.site-logo-text{font-size:24px;margin:0}#site-logo.has-responsive-logo .responsive-logo-link{display:none}#site-header.has-header-media>*:not(.overlay-header-media){position:relative;z-index:2}#site-header.has-header-media .overlay-header-media{display:block;position:absolute;top:0;left:0;height:100%;width:100%;background-color:rgba(0,0,0,0.3);z-index:1}#site-header .custom-header-media{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden;width:100%}#site-header .custom-header-media:before{content:"";position:absolute;bottom:0;left:0;right:0;display:block;height:100%;z-index:2;background:-moz-linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 100%);background:-webkit-linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 100%)}#site-header .custom-header-media video,#site-header .custom-header-media iframe{position:absolute;height:auto;left:50%;max-width:1000%;min-height:100%;min-width:100%;min-width:100vw;width:auto;top:50%;-webkit-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);-o-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}#site-header .custom-header-media .wp-custom-header-video-button{display:none}.has-header-video #site-header-inner{z-index:10}#sidr .sidr-class-social-menu-inner .fa{font-family:"Font Awesome 5 Brands";font-weight:400}@media only screen and (max-width: 959px){.has-left-menu #site-logo{padding:0 !important}}@media only screen and (max-width: 767px){#site-logo{margin-top:0px !important;margin-bottom:0px !important}}#site-header.transparent-header{position:absolute;top:0;background-color:transparent;height:auto;z-index:9999}#site-header.transparent-header #site-logo.has-transparent-logo .custom-logo-link{display:none}#site-header.transparent-header #site-logo.has-transparent-logo .transparent-logo-link{display:block}.is-sticky #site-header.transparent-header #site-logo.has-transparent-logo .custom-logo-link{display:block}.is-sticky #site-header.transparent-header #site-logo.has-transparent-logo .transparent-logo-link{display:none}#site-header.top-header{border-bottom:0 !important}#site-header.top-header .header-top{position:relative;background-color:#fff;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,0.1);-moz-box-shadow:0 1px 5px 0 rgba(0,0,0,0.1);box-shadow:0 1px 5px 0 rgba(0,0,0,0.1);z-index:100}#site-header.top-header .header-top .left{float:left}#site-header.top-header .header-top .right{float:right}#site-header.top-header .header-top .right .inner{display:table;position:relative}#site-header.top-header #searchform-header-replace{background-color:#fff}#site-header.top-header.header-replace .left,#site-header.top-header.header-replace .right{-webkit-transition:opacity 0.25s ease-in-out;-moz-transition:opacity 0.25s ease-in-out;-ms-transition:opacity 0.25s ease-in-out;-o-transition:opacity 0.25s ease-in-out;transition:opacity 0.25s ease-in-out}#site-header.top-header.header-replace .left.hide,#site-header.top-header.header-replace .right.hide{visibility:hidden;-moz-opacity:0;-webkit-opacity:0;opacity:0}#site-header.top-header #site-navigation-wrap{float:none;right:auto !important;left:-15px}#site-header.top-header #site-navigation-wrap .dropdown-menu>li>a{font-size:10px;line-height:40px;font-weight:600;letter-spacing:2px;text-transform:uppercase}#site-header.top-header .oceanwp-social-menu,#site-header.top-header #search-toggle{float:none;display:table-cell;vertical-align:middle;height:40px}#site-header.top-header .oceanwp-social-menu .social-menu-inner{display:block;height:auto}#site-header.top-header .oceanwp-social-menu{right:0;padding:0 10px}#site-header.top-header .oceanwp-social-menu .colored ul li a,#site-header.top-header .oceanwp-social-menu .minimal ul li a,#site-header.top-header .oceanwp-social-menu .dark ul li a{padding:0 3px}#site-header.top-header .oceanwp-social-menu .colored ul li a span,#site-header.top-header .oceanwp-social-menu .minimal ul li a span,#site-header.top-header .oceanwp-social-menu .dark ul li a span{width:26px;height:26px;line-height:26px}#site-header.top-header #search-toggle{border-right:1px solid #f1f1f1;border-left:1px solid #f1f1f1;padding:0 6px}#site-header.top-header #search-toggle a{display:inline-block;font-size:12px;width:28px;text-align:center}#site-header.top-header.search-overlay #search-toggle .search-overlay-toggle{position:relative;z-index:101}#site-header.top-header.search-overlay #search-toggle .search-overlay-toggle.exit>span:before{content:'✕';color:#fff}#site-header.top-header #searchform-header-replace input{color:#222;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:2px}#site-header.top-header #searchform-header-replace-close{font-size:16px;padding:0 6px}#site-header.top-header .header-bottom{text-align:center}#site-header.top-header #site-logo{float:none;display:inline-block;padding:50px 0}#site-header.top-header #site-logo #site-logo-inner{display:block;height:auto}#site-header.top-header #site-logo #site-description{padding-top:20px}#site-header.top-header #site-logo #site-description h2{color:#929292;font-size:12px;line-height:20px;letter-spacing:2px;text-transform:uppercase;margin:0}#site-header.top-header .oceanwp-mobile-menu-icon{float:none;left:-15px;right:auto}#site-header.top-header .oceanwp-mobile-menu-icon a{font-size:10px;line-height:40px;font-weight:600;letter-spacing:2px;text-transform:uppercase}#site-header.top-header.has-header-media #site-header-sticky-wrapper,#site-header.top-header.has-header-media .header-top{z-index:101}@media only screen and (max-width: 959px){.top-header-style .sidr-class-social-menu-inner,.top-header-style .sidr-class-mobile-searchform{display:none}}@media only screen and (max-width: 480px){#site-header.top-header .right{display:none}#site-header.top-header.header-replace .left.hide,#site-header.top-header.header-replace .right.hide{visibility:visible;-moz-opacity:1;-webkit-opacity:1;opacity:1}#site-header.top-header .header-top .left,#site-header.top-header .header-top .right{float:none !important;text-align:center}#site-header.top-header .oceanwp-mobile-menu-icon{float:none;left:auto !important;right:auto !important}#site-header.top-header .oceanwp-mobile-menu-icon a{float:none}#site-header.top-header .header-top .right .inner{display:block;padding-bottom:10px}#site-header.top-header .oceanwp-social-menu,#site-header.top-header #search-toggle{float:none;display:inline-block;height:auto}.top-header-style .sidr-class-social-menu-inner,.top-header-style .sidr-class-mobile-searchform{display:block}}#site-header.full_screen-header{z-index:9999}#site-header.full_screen-header #site-header-inner{overflow:visible !important}#site-header.full_screen-header #site-navigation-wrap{right:0}#site-header.full_screen-header #site-logo.has-full-screen-logo{position:relative;z-index:101}#site-header.full_screen-header #site-logo.has-full-screen-logo .full-screen-logo-link{display:none}#site-header.full_screen-header #site-logo.has-full-screen-logo.opened .custom-logo-link,#site-header.full_screen-header #site-logo.has-full-screen-logo.opened .retina-logo-link{display:none}#site-header.full_screen-header #site-logo.has-full-screen-logo.opened .full-screen-logo-link{display:block}#site-header.full_screen-header .menu-bar-wrap{float:right;height:100%;display:table}#site-header.full_screen-header .menu-bar-inner{display:table-cell;vertical-align:middle;position:relative;height:74px}#site-header.full_screen-header .menu-bar{display:inline-block;position:relative;margin-left:10px;min-width:38px;height:33px;text-align:center;z-index:101}#site-header.full_screen-header .menu-bar .ham{display:inline-block;width:23px;height:2px;position:relative;top:2px;background-color:#333;vertical-align:middle;white-space:nowrap;-webkit-transition:all ease 0.3s;-moz-transition:all ease 0.3s;-ms-transition:all ease 0.3s;-o-transition:all ease 0.3s;transition:all ease 0.3s}#site-header.full_screen-header .menu-bar .ham:before,#site-header.full_screen-header .menu-bar .ham:after{position:absolute;content:"";display:inline-block;width:23px;height:2px;left:0;background-color:#333;outline:1px solid transparent;-webkit-transition:all ease 0.3s;-moz-transition:all ease 0.3s;-ms-transition:all ease 0.3s;-o-transition:all ease 0.3s;transition:all ease 0.3s}#site-header.full_screen-header .menu-bar .ham:before{top:-8px}#site-header.full_screen-header .menu-bar .ham:after{top:8px}#site-header.full_screen-header .menu-bar.exit .ham{background-color:transparent !important}#site-header.full_screen-header .menu-bar.exit .ham:before,#site-header.full_screen-header .menu-bar.exit .ham:after{background-color:#fff}#site-header.full_screen-header .menu-bar.exit .ham:before{-webkit-transform:translateY(8px) rotateZ(-45deg);-moz-transform:translateY(8px) rotateZ(-45deg);-ms-transform:translateY(8px) rotateZ(-45deg);-o-transform:translateY(8px) rotateZ(-45deg);transform:translateY(8px) rotateZ(-45deg)}#site-header.full_screen-header .menu-bar.exit .ham:after{-webkit-transform:translateY(-8px) rotateZ(45deg);-moz-transform:translateY(-8px) rotateZ(45deg);-ms-transform:translateY(-8px) rotateZ(45deg);-o-transform:translateY(-8px) rotateZ(45deg);transform:translateY(-8px) rotateZ(45deg)}#site-header.full_screen-header.nav-open{-webkit-transform:none !important;-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;transform:none !important}#site-header.full_screen-header #full-screen-menu{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.9);overflow-y:scroll;z-index:100}#site-header.full_screen-header #full-screen-menu #full-screen-menu-inner{display:table;width:100%;height:100%;padding:0 40px}#site-header.full_screen-header #full-screen-menu #site-navigation{display:table-cell;vertical-align:middle;padding:100px 0;text-align:center}#site-header.full_screen-header .fs-dropdown-menu{list-style:none;margin:0}#site-header.full_screen-header .fs-dropdown-menu li a{display:block;color:#fff;letter-spacing:2px;text-transform:uppercase}#site-header.full_screen-header .fs-dropdown-menu li a:hover{color:#929292}#site-header.full_screen-header .fs-dropdown-menu li a:focus{outline:1px dashed rgba(255,255,255,0.3)}#site-header.full_screen-header .fs-dropdown-menu li>a .nav-arrow{display:inline-block;width:26px;padding-left:5px;text-align:center}#site-header.full_screen-header .fs-dropdown-menu li>a .nav-arrow:before{content:"+"}#site-header.full_screen-header .fs-dropdown-menu li>a .nav-arrow:focus{outline:1px dashed rgba(255,255,255,0.3)}#site-header.full_screen-header .fs-dropdown-menu li.open-sub>a .nav-arrow:before{content:"-"}#site-header.full_screen-header .fs-dropdown-menu li .sidebar-box{display:none}#site-header.full_screen-header .fs-dropdown-menu ul.sub-menu{display:none;list-style:none;margin:0;padding:0}#site-header.full_screen-header .fs-dropdown-menu ul.sub-menu li a{font-size:16px;padding:6px 0}#site-header.full_screen-header .fs-dropdown-menu>li{display:block}#site-header.full_screen-header .fs-dropdown-menu>li>a{font-size:24px;line-height:1.2;padding:12px 0}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li{max-width:220px;margin:10px auto 0}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li form{position:relative}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li input,#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li label{font-size:20px;padding:4px 0;color:#fff;margin:0;text-align:center;text-transform:uppercase}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li input{position:relative;border:0;background-color:transparent;border-bottom:1px solid #666;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;border-radius:0;z-index:2}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li input:hover,#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li input:focus{border-color:#fff}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li label{display:block;position:absolute;top:0;bottom:0;left:0;right:0;cursor:text;-moz-opacity:.5;-webkit-opacity:.5;opacity:.5;z-index:1}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li label i{display:inline-block;background-color:#fff;width:3px;height:3px;margin-left:3px;-webkit-animation:blink 1s linear infinite;-moz-animation:blink 1s linear infinite;-ms-animation:blink 1s linear infinite;-o-animation:blink 1s linear infinite;animation:blink 1s linear infinite}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li label i+i{-ms-animation-delay:.2s;-webkit-animation-delay:.2s;-o-animation-delay:.2s;-moz-animation-delay:.2s;animation-delay:.2s}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li label i+i+i{-ms-animation-delay:.4s;-webkit-animation-delay:.4s;-o-animation-delay:.4s;-moz-animation-delay:.4s;animation-delay:.4s}#site-header.full_screen-header .fs-dropdown-menu>li.search-toggle-li form.search-filled label{-moz-opacity:0;-webkit-opacity:0;opacity:0;-webkit-transition-duration:150ms;-moz-transition-duration:150ms;-ms-transition-duration:150ms;-o-transition-duration:150ms;transition-duration:150ms}#site-header.full_screen-header .oceanwp-social-menu{display:block;float:none;margin-top:30px;text-align:center;right:auto}#site-header.full_screen-header .oceanwp-social-menu .social-menu-inner{display:block;height:auto !important}#site-header.full_screen-header .oceanwp-social-menu ul li{float:none;display:inline-block}#site-header.full_screen-header .oceanwp-social-menu.simple-social ul li a{background-color:transparent !important;color:#fff;font-size:24px;padding:0 16px;margin:0}#site-header.full_screen-header .oceanwp-social-menu.simple-social ul li a:hover{color:#929292}#site-header.full_screen-header .oceanwp-social-menu .colored ul li a,#site-header.full_screen-header .oceanwp-social-menu .minimal ul li a,#site-header.full_screen-header .oceanwp-social-menu .dark ul li a{padding:0 4px}#site-header.full_screen-header .oceanwp-social-menu .colored ul li a span,#site-header.full_screen-header .oceanwp-social-menu .minimal ul li a span,#site-header.full_screen-header .oceanwp-social-menu .dark ul li a span{font-size:16px;width:60px;height:60px;line-height:60px}@-webkit-keyframes blink{0%{-webkit-opacity:1}50%{-webkit-opacity:0}100%{-webkit-opacity:1}}@-moz-keyframes blink{0%{-moz-opacity:1}50%{-moz-opacity:0}100%{-moz-opacity:1}}@-o-keyframes blink{0%{-o-opacity:1}50%{-o-opacity:0}100%{-o-opacity:1}}@keyframes blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}@media only screen and (max-width: 959px){#site-header.full_screen-header #site-logo.has-full-screen-logo.opened .custom-logo-link{display:block}#site-header.full_screen-header #site-logo.has-full-screen-logo.opened .full-screen-logo-link{display:none}}#site-header.center-header #site-logo{display:none}#site-header.center-header #site-navigation-wrap{float:none;width:100%;right:auto}#site-header.center-header #site-navigation-wrap .navigation{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center}#site-header.center-header #site-navigation-wrap .middle-site-logo{width:24%;text-align:center}#site-header.center-header #site-navigation-wrap .middle-site-logo a img{width:auto;vertical-align:middle;-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}#site-header.center-header #site-navigation-wrap .middle-site-logo:hover img{-moz-opacity:.6;-webkit-opacity:.6;opacity:.6}#site-header.center-header #site-navigation-wrap .left-menu,#site-header.center-header #site-navigation-wrap .right-menu{position:relative;width:38%}#site-header.center-header #site-navigation-wrap .left-menu{float:left}#site-header.center-header #site-navigation-wrap .right-menu{float:right}#site-header.center-header #site-navigation-wrap .dropdown-menu>li{float:none;display:inline-block}#site-header.center-header .centered .left-menu,#site-header.center-header .centered .right-menu{text-align:center}#site-header.center-header .wider .left-menu{text-align:left}#site-header.center-header .wider .right-menu{text-align:right}#site-header.center-header .closer .left-menu{text-align:right}#site-header.center-header .closer .right-menu{text-align:left}#site-header.center-header #searchform-header-replace.show{max-width:100% !important}#site-header.center-header.header-replace #site-navigation .middle-site-logo{-webkit-transition:opacity 0.3s;-moz-transition:opacity 0.3s;-ms-transition:opacity 0.3s;-o-transition:opacity 0.3s;transition:opacity 0.3s}#site-header.center-header.header-replace #site-navigation.hide .middle-site-logo{visibility:hidden;-moz-opacity:0;-webkit-opacity:0;opacity:0}#site-header.medium-header{background-color:transparent;text-align:center}#site-header.medium-header .top-header-wrap{position:relative;background-color:#fff;padding:30px 0;-webkit-transition:padding 0.4s ease-in-out;-moz-transition:padding 0.4s ease-in-out;-ms-transition:padding 0.4s ease-in-out;-o-transition:padding 0.4s ease-in-out;transition:padding 0.4s ease-in-out;z-index:10}#site-header.medium-header .top-header-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:100%;margin:0}#site-header.medium-header .top-col{-webkit-flex:1 0 0%;flex:1 0 0%}#site-header.medium-header .top-col.col-1{text-align:left}#site-header.medium-header .top-col.col-2,#site-header.medium-header .top-col.logo-col{text-align:center}#site-header.medium-header .top-col.col-3{text-align:right}#site-header.medium-header #medium-searchform form{display:inline-block;position:relative}#site-header.medium-header #medium-searchform form.search-filled label{-moz-opacity:0;-webkit-opacity:0;opacity:0;-webkit-transition-duration:150ms;-moz-transition-duration:150ms;-ms-transition-duration:150ms;-o-transition-duration:150ms;transition-duration:150ms}#site-header.medium-header #medium-searchform input{position:relative;background-color:transparent !important;border:0;margin:0;padding:6px 38px 6px 12px;max-width:178px;z-index:2}#site-header.medium-header #medium-searchform input:focus{max-width:220px}#site-header.medium-header #medium-searchform label,#site-header.medium-header #medium-searchform button{position:absolute;top:0;line-height:40px;margin:0}#site-header.medium-header #medium-searchform label{left:12px;color:#333;cursor:text;-moz-opacity:.5;-webkit-opacity:.5;opacity:.5;z-index:1}#site-header.medium-header #medium-searchform button{right:0;width:38px;background-color:transparent;color:#555;border:0;padding:0;z-index:2;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}#site-header.medium-header #medium-searchform button:hover{color:#13aff0}#site-header.medium-header #medium-searchform .search-bg{position:absolute;top:0;bottom:0;left:0;right:0;background-color:#f5f5f5}#site-header.medium-header #site-logo{float:none;display:block}#site-header.medium-header #site-logo #site-logo-inner{display:block;height:auto !important}#site-header.medium-header .oceanwp-social-menu{float:none;display:block;right:auto !important;left:auto !important}#site-header.medium-header .oceanwp-social-menu .social-menu-inner{display:block;height:auto !important}#site-header.medium-header .oceanwp-social-menu ul li{float:none;display:inline-block}#site-header.medium-header #site-navigation-wrap{position:relative;background-color:#f9f9f9;float:none;position:relative;right:auto !important;left:auto !important;-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none;z-index:9}#site-header.medium-header #site-navigation-wrap.left-menu #site-navigation{float:left;left:-22px}#site-header.medium-header #site-navigation-wrap.center-menu #site-navigation .dropdown-menu>li{float:none;display:inline-block}#site-header.medium-header #site-navigation-wrap.right-menu #site-navigation{float:right;right:-22px}#site-header.medium-header #site-navigation-wrap #site-navigation{display:inline-block;position:relative}#site-header.medium-header #site-navigation-wrap .dropdown-menu>li>a{font-size:12px;line-height:60px;padding:0 22px;text-transform:uppercase;letter-spacing:1px}#site-header.medium-header.hidden-menu #site-navigation-wrap,#site-header.medium-header.hidden-menu #site-navigation,#site-header.medium-header.hidden-menu .oceanwp-mobile-menu-icon{max-height:150px;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-ms-transition:all 0.4s ease-in-out;-o-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.is-sticky #site-header.medium-header .top-header-wrap{padding:20px 0}.is-sticky #site-header.medium-header .top-header-wrap .oceanwp-social-menu .social-menu-inner{height:auto}.is-sticky #site-header.medium-header.hidden-menu #site-navigation-wrap,.is-sticky #site-header.medium-header.hidden-menu #site-navigation,.is-sticky #site-header.medium-header.hidden-menu .oceanwp-mobile-menu-icon{max-height:0;-moz-opacity:0;-webkit-opacity:0;opacity:0;visibility:hidden}.is-sticky #site-header.medium-header.hidden-menu:hover #site-navigation-wrap,.is-sticky #site-header.medium-header.hidden-menu:hover #site-navigation,.is-sticky #site-header.medium-header.hidden-menu:hover .oceanwp-mobile-menu-icon{max-height:150px;-moz-opacity:1;-webkit-opacity:1;opacity:1;visibility:visible}#site-header.medium-header .oceanwp-mobile-menu-icon{float:none;background-color:#f9f9f9;right:auto !important;left:auto !important}#site-header.medium-header .oceanwp-mobile-menu-icon a{float:none;display:inline-block;font-size:12px;padding:0 22px;line-height:60px;letter-spacing:1px;text-transform:uppercase}#site-header.medium-header.is-transparent .top-header-wrap,#site-header.medium-header.is-transparent #site-navigation-wrap,#site-header.medium-header.is-transparent .oceanwp-mobile-menu-icon{background-color:transparent;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-ms-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}@media only screen and (max-width: 959px){.medium-header-style .sidr-class-social-menu-inner,.medium-header-style .sidr-class-mobile-searchform{display:none}}@media only screen and (max-width: 767px){#site-header.medium-header .top-header-inner{display:block}#site-header.medium-header .top-col:not(.logo-col){display:none}#site-header.medium-header .top-col.logo-col{display:inline-block;text-align:center}.medium-header-style .sidr-class-social-menu-inner,.medium-header-style .sidr-class-mobile-searchform{display:block}}@media only screen and (max-width: 480px){#site-header.medium-header .header-top-wrap{padding:20px 0}#site-header.medium-header .oceanwp-mobile-menu-icon a{line-height:40px}}#site-header.vertical-header{position:fixed;top:0;width:300px;max-width:100%;height:100%;border-bottom:none;z-index:3000;-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}#site-header.vertical-header .ps__rail-y{padding:0 !important;width:0}#site-header.vertical-header.has-scrolled{background-color:#fff}#site-header.vertical-header.has-shadow{-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,0.1);-moz-box-shadow:0 0 20px 0 rgba(0,0,0,0.1);box-shadow:0 0 20px 0 rgba(0,0,0,0.1)}#site-header.vertical-header .ps__thumb-y{background-color:transparent}#site-header.vertical-header .has-template>#site-logo{display:none}#site-header.vertical-header #site-header-inner{max-width:100%;padding:30px 0;overflow:hidden}#site-header.vertical-header #site-header-inner>*:not(#site-navigation-wrap){padding:0 30px}#site-header.vertical-header #site-header-inner #sidr{display:block}#site-header.vertical-header.vh-left-logo #site-logo{text-align:left}#site-header.vertical-header.vh-center-logo #site-logo{text-align:center}#site-header.vertical-header.vh-right-logo #site-logo{text-align:right}#site-header.vertical-header #site-logo,#site-header.vertical-header #site-logo #site-logo-inner{display:block;float:none;height:auto}#site-header.vertical-header #site-logo{margin:20px 0 45px}#site-header.vertical-header #site-logo a:focus{outline:1px dashed rgba(0,0,0,0.3)}#site-header.vertical-header .has-social #site-navigation-wrap{right:auto}#site-header.vertical-header #site-navigation-wrap{float:none;right:auto;-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}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li{display:block;float:none;position:relative;border-bottom:1px solid rgba(0,0,0,0.05)}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li:last-child{border-bottom:none}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li>a{position:relative;line-height:1;padding:17px 30px}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li>a:focus{outline:1px dashed rgba(0,0,0,0.3)}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li>a .dropdown-toggle{position:absolute;right:0;top:0;width:50px;height:100%;line-height:1;cursor:pointer;text-align:center}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li>a .dropdown-toggle:focus{outline:1px dashed rgba(0,0,0,0.3)}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li>a .dropdown-toggle:before{content:"+";font-size:20px;position:absolute;top:50%;left:50%;line-height:1;margin-top:-10px;margin-left:-10px}#site-header.vertical-header #site-navigation-wrap .dropdown-menu li.active>a>.dropdown-toggle:before{content:"-"}#site-header.vertical-header #site-navigation-wrap .dropdown-menu .sub-menu{display:none;position:relative;top:100%;left:0;background-color:rgba(0,0,0,0.03);border:none;border-top:1px solid rgba(0,0,0,0.05);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}#site-header.vertical-header #site-navigation-wrap .nav-arrow,#site-header.vertical-header #site-navigation-wrap .sidebar-box{display:none}#site-header.vertical-header #vertical-searchform{margin-top:40px}#site-header.vertical-header #vertical-searchform form{position:relative}#site-header.vertical-header #vertical-searchform form.search-filled label{-moz-opacity:0;-webkit-opacity:0;opacity:0;-webkit-transition-duration:150ms;-moz-transition-duration:150ms;-ms-transition-duration:150ms;-o-transition-duration:150ms;transition-duration:150ms}#site-header.vertical-header #vertical-searchform form input{position:relative;font-size:14px;border-width:0 0 2px;background-color:transparent !important;border-color:rgba(0,0,0,0.04);padding:10px 12px;z-index:2}#site-header.vertical-header #vertical-searchform form label,#site-header.vertical-header #vertical-searchform form button{position:absolute;top:50%;margin:0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}#site-header.vertical-header #vertical-searchform form label:focus,#site-header.vertical-header #vertical-searchform form button:focus{outline:1px dashed rgba(0,0,0,0.3)}#site-header.vertical-header #vertical-searchform form label{left:12px;cursor:text;-moz-opacity:.5;-webkit-opacity:.5;opacity:.5;z-index:1}#site-header.vertical-header #vertical-searchform form button{right:0;width:50px;height:100%;line-height:1;padding:0;background-color:transparent;color:#777;border:none;z-index:2;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}#site-header.vertical-header #vertical-searchform form button:hover{color:#333}#site-header.vertical-header #vertical-searchform form .search-bg{position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,0.03)}#site-header.vertical-header .oceanwp-social-menu{float:none;display:block;margin-top:40px}#site-header.vertical-header .oceanwp-social-menu.simple-social{right:auto}#site-header.vertical-header .oceanwp-social-menu .social-menu-inner{display:block;height:auto}#site-header.vertical-header .custom-header-nav #site-navigation-wrap #site-navigation{display:block}#site-header.vertical-header .custom-header-nav #site-navigation-wrap #site-navigation .dropdown-menu>li>a{padding-left:0;padding-right:0}#site-header.vertical-header .vertical-toggle{display:none;position:absolute;top:10px;width:34px;height:34px;font-size:22px;line-height:34px;padding:0 !important;text-align:center}.has-vh-transparent .is-sticky #site-header.vertical-header{background-color:#fff}body.vertical-header-style.left-header #site-header.vertical-header{left:0}body.vertical-header-style.left-header #site-header.vertical-header .vertical-toggle{right:0}body.vertical-header-style.left-header #outer-wrap{margin-left:300px}body.vertical-header-style.right-header #site-header.vertical-header{right:0}body.vertical-header-style.right-header #site-header.vertical-header .vertical-toggle{left:0}body.vertical-header-style.right-header #outer-wrap{margin-right:300px}body.vertical-header-style.has-vh-transparent.left-header #outer-wrap{margin-left:0}body.vertical-header-style.has-vh-transparent.right-header #outer-wrap{margin-right:0}body.vertical-header-style.vh-closed.left-header #site-header.vertical-header{left:-266px}body.vertical-header-style.vh-closed.left-header #outer-wrap{margin-left:34px}body.vertical-header-style.vh-closed.right-header #site-header.vertical-header{right:-266px}body.vertical-header-style.vh-closed.right-header #outer-wrap{margin-right:34px}body.vertical-header-style.vh-closed.vh-opened.left-header #site-header.vertical-header{left:0}body.vertical-header-style.vh-closed.vh-opened.right-header #site-header.vertical-header{right:0}body.vertical-header-style.vh-closed.vh-opened #site-header.vertical-header #site-navigation-wrap{padding-right:0}body.vertical-header-style.vh-closed #site-header.vertical-header .vertical-toggle{display:block}body.vertical-header-style.vh-closed #site-header.vertical-header #site-navigation-wrap{padding-right:34px}@media only screen and (max-width: 1280px){body.vertical-header-style.default-collapse.left-header #site-header.vertical-header{left:-266px}body.vertical-header-style.default-collapse.left-header #outer-wrap{margin-left:34px}body.vertical-header-style.default-collapse.right-header #site-header.vertical-header{right:-266px}body.vertical-header-style.default-collapse.right-header #outer-wrap{margin-right:34px}body.vertical-header-style.default-collapse.vh-opened.left-header #site-header.vertical-header{left:0}body.vertical-header-style.default-collapse.vh-opened.right-header #site-header.vertical-header{right:0}body.vertical-header-style.default-collapse.vh-opened #site-header.vertical-header #site-navigation-wrap{padding-right:0}body.default-collapse #site-header.vertical-header .vertical-toggle{display:block}body.default-collapse #site-header.vertical-header #site-navigation-wrap{padding-right:34px}}#site-header.custom-header ul.oceanwp-custom-menu{list-style:none;margin:0;padding:0}#site-header.custom-header ul.oceanwp-custom-menu li{display:inline-block}#site-header.custom-header ul.oceanwp-custom-menu li a{display:block;font-size:13px;line-height:40px;padding:0 15px;letter-spacing:0.6px}.custom-header-logo.left{text-align:left}.custom-header-logo.right{text-align:right}.custom-header-logo.center{text-align:center}.custom-header-logo #site-logo{float:none;display:inline-block}.custom-header-logo #site-logo #site-logo-inner{display:block;height:auto !important}.custom-header-nav.left{text-align:left}.custom-header-nav.right{text-align:right}.custom-header-nav.center{text-align:center}.custom-header-nav #site-navigation-wrap{float:none;right:auto}.custom-header-nav #site-navigation-wrap #site-navigation{display:inline-block;position:relative}.custom-header-nav #site-navigation-wrap .dropdown-menu>li{float:none;display:inline-block}.custom-header-nav .oceanwp-mobile-menu-icon{float:none !important}.custom-header-nav .oceanwp-mobile-menu-icon a{display:inline-block}#site-navigation-wrap{float:right;position:relative;right:-15px}#site-navigation-wrap .dropdown-menu{list-style:none;margin:0;padding:0}#site-navigation-wrap .dropdown-menu>li{float:left;position:relative}#site-navigation-wrap .dropdown-menu>li>a{display:block;font-size:13px;line-height:74px;color:#555;padding:0 15px;letter-spacing:0.6px}#site-navigation-wrap .dropdown-menu>li>a.site-search-toggle{letter-spacing:0}#site-navigation-wrap .dropdown-menu>li>a:hover{color:#13aff0}#site-navigation-wrap .dropdown-menu>li>a .nav-arrow{padding-left:6px;line-height:1}#site-navigation-wrap .dropdown-menu>li.btn>a{background-color:transparent !important}#site-navigation-wrap .dropdown-menu>li.btn>a>span{background-color:#13aff0;color:#fff;padding:12px 22px;font-weight:600;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;cursor:pointer;text-align:center;-webkit-transition:background-color 0.3s ease;-moz-transition:background-color 0.3s ease;-ms-transition:background-color 0.3s ease;-o-transition:background-color 0.3s ease;transition:background-color 0.3s ease}#site-navigation-wrap .dropdown-menu>li.btn>a>span:before,#site-navigation-wrap .dropdown-menu>li.btn>a>span:after{display:none !important}#site-navigation-wrap .dropdown-menu>li.btn>a:hover>span{background-color:#0b7cac;color:#fff}#site-navigation-wrap .dropdown-menu>li.btn.rounded>a>span{-webkit-border-radius:25px;-moz-border-radius:25px;-ms-border-radius:25px;border-radius:25px}.has-social #site-navigation-wrap{right:0}.minimal-header.left-menu #site-navigation-wrap,.transparent-header.left-menu #site-navigation-wrap{float:left;right:0}.minimal-header.left-menu #site-logo,.transparent-header.left-menu #site-logo{padding-right:20px}.center-menu #site-navigation-wrap{position:absolute;float:none;left:50%;right:auto;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.sf-menu,.sf-menu *{margin:0;padding:0;list-style:none}.sf-menu li.menu-item{position:relative;white-space:nowrap;white-space:normal}.sf-menu li:hover,.sf-menu li.sfHover{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.sf-menu ul.sub-menu{position:absolute;display:none;top:100%;left:0;z-index:9999}.sf-menu>li{float:left}.sf-menu li:hover>ul,.sf-menu li.sfHover>ul{display:block}.sf-menu a.menu-link{display:block;position:relative;zoom:1}.sf-menu ul.sub-menu ul{top:0;left:100%}.dropdown-menu,.dropdown-menu *{margin:0;padding:0;list-style:none}.dropdown-menu .sub-menu{display:none;position:absolute;top:100%;left:0;background-color:#fff;border-top:3px solid #13aff0;min-width:180px;line-height:1;text-align:left;z-index:999;-webkit-box-shadow:0 2px 6px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 6px rgba(0,0,0,0.1);box-shadow:0 2px 6px rgba(0,0,0,0.1)}.dropdown-menu li .sub-menu li.menu-item{display:block;float:none}.dropdown-menu ul .sub-menu{top:0;left:100%}.no-top-border .sub-menu{border:none}.dropdown-menu ul li.menu-item{display:block;border-bottom:1px solid #f1f1f1}.dropdown-menu ul li.menu-item:last-child{border-bottom:0}.dropdown-menu ul li a.menu-link{display:block;position:relative;float:none;font-size:12px;font-weight:400;line-height:1.2em;letter-spacing:0.6px;padding:12px 15px;text-transform:capitalize}.dropdown-menu ul li a.menu-link:hover{background-color:#f8f8f8;color:#555}.dropdown-menu ul li a.menu-link:hover .owp-icon use{stroke:#555}.dropdown-menu ul li a.menu-link .nav-arrow{position:absolute;top:50%;right:15px;margin-top:-6.5px;padding:0}.dropdown-menu ul li a.menu-link i{position:relative;width:20px;text-align:center;margin-right:3px}.dropdown-menu li a.menu-link i{padding-right:5px}.nav-content{display:block;font-size:11px;line-height:1.8;padding:5px 0;white-space:normal;-moz-opacity:.7;-webkit-opacity:.7;opacity:.7}.navigation li a i.icon,.navigation li a span.icon-wrap,.navigation li a img.icon{display:inline-block;vertical-align:middle}.navigation li a i.icon{width:auto;height:auto;font-size:1.2em;line-height:1;padding:0 !important}.navigation li a i.before,.navigation li a i.after{margin-top:-0.265em}.navigation li a i.before{margin-right:6px}.navigation li a i.after{margin-left:6px}.navigation li a i.elusive{margin-top:-0.3em}.navigation li a span.icon-wrap{text-align:center}.navigation li a span.icon-wrap i.below,.navigation li a span.icon-wrap img{display:block;margin:0 0 8px}.navigation li a span.icon-wrap img{margin:0 auto 8px auto}.navigation li a span.icon-wrap span.menu-text{display:block;line-height:1}.navigation li a img.before{margin-right:6px}.navigation li a img.after{margin-left:6px}.navigation li a .svg{width:1em}.navigation li a .hidden{display:none !important}.after-header-content{float:right;height:100%;display:table}.after-header-content .after-header-content-inner{display:table-cell;vertical-align:middle;height:74px}.after-header-content .after-header-content-inner>a,.after-header-content .after-header-content-inner>div>a{display:inline-block;line-height:74px}.after-header-content .elementor{display:inline-block}.oceanwp-mobile-menu-icon{display:none;position:relative}.oceanwp-mobile-menu-icon.mobile-right{float:right}.oceanwp-mobile-menu-icon.mobile-left{float:left}.oceanwp-mobile-menu-icon a{font-size:13px;line-height:74px;color:#555;padding-left:15px;letter-spacing:0.6px;cursor:pointer}.oceanwp-mobile-menu-icon a:first-child{padding-left:0}.oceanwp-mobile-menu-icon a:hover{color:#13aff0}.oceanwp-mobile-menu-icon a:focus{outline:1px dashed #e3e3e3}.oceanwp-mobile-menu-icon a.mobile-menu .oceanwp-text,.oceanwp-mobile-menu-icon a.mobile-menu .oceanwp-close-text{padding-left:6px}.oceanwp-mobile-menu-icon a.mobile-menu .oceanwp-close-text,.oceanwp-mobile-menu-icon a.mobile-menu.opened .oceanwp-text{display:none}.oceanwp-mobile-menu-icon a.mobile-menu.opened .oceanwp-close-text{display:inline-block}.oceanwp-social-menu{float:right;position:relative;z-index:10}.oceanwp-social-menu.simple-social{right:-8px}.oceanwp-social-menu.social-with-style{right:-2px}.oceanwp-social-menu .social-menu-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;height:74px}.oceanwp-social-menu ul{margin:0;padding:0;list-style:none}.oceanwp-social-menu ul li{float:left;position:relative}.oceanwp-social-menu ul li a{display:inline-block;background-color:transparent;color:#929292;padding:0 8px;line-height:1;text-align:center;letter-spacing:0}.oceanwp-social-menu ul li a span{width:1em;height:1em;text-align:center}.oceanwp-social-menu ul li a:hover{background-color:transparent}.oceanwp-social-menu ul li:first-child a{margin-left:0}.oceanwp-social-menu ul li:last-child a{margin-right:0}.oceanwp-social-menu ul li.oceanwp-twitter a:hover{color:#46d4fe}.oceanwp-social-menu ul li.oceanwp-facebook a:hover{color:#37589b}.oceanwp-social-menu ul li.oceanwp-googleplus a:hover{color:#de5a49}.oceanwp-social-menu ul li.oceanwp-pinterest a:hover{color:#cb2027}.oceanwp-social-menu ul li.oceanwp-dribbble a:hover{color:#ea4c89}.oceanwp-social-menu ul li.oceanwp-vk a:hover{color:#597BA5}.oceanwp-social-menu ul li.oceanwp-instagram a:hover{color:#3F729B}.oceanwp-social-menu ul li.oceanwp-linkedin a:hover{color:#3399CC}.oceanwp-social-menu ul li.oceanwp-tumblr a:hover{color:#2C4762}.oceanwp-social-menu ul li.oceanwp-github a:hover{color:#60b044}.oceanwp-social-menu ul li.oceanwp-flickr a:hover{color:#fa4086}.oceanwp-social-menu ul li.oceanwp-skype a:hover{color:#00AFF0}.oceanwp-social-menu ul li.oceanwp-youtube a:hover{color:#C4302B}.oceanwp-social-menu ul li.oceanwp-vimeo a:hover{color:#1ab7ea}.oceanwp-social-menu ul li.oceanwp-vine a:hover{color:#00bf8f}.oceanwp-social-menu ul li.oceanwp-xing a:hover{color:#006464}.oceanwp-social-menu ul li.oceanwp-yelp a:hover{color:#C41200}.oceanwp-social-menu ul li.oceanwp-tripadvisor a:hover{color:#589442}.oceanwp-social-menu ul li.oceanwp-rss a:hover{color:#ff7900}.oceanwp-social-menu ul li.oceanwp-email a:hover{color:#13aff0}.oceanwp-social-menu ul li.oceanwp-tiktok a:hover{color:#000000}.oceanwp-social-menu ul li.oceanwp-medium a:hover{color:#00ab6c}.oceanwp-social-menu ul li.oceanwp-telegram a:hover{color:#0088cc}.oceanwp-social-menu ul li.oceanwp-twitch a:hover{color:#6441a5}.oceanwp-social-menu ul li.oceanwp-line a:hover{color:#00c300}.oceanwp-social-menu ul li.oceanwp-qq a:hover{color:#febf1b}.oceanwp-social-menu .colored ul li a{position:relative;display:inline-block;font-size:12px;color:#fff;line-height:1;padding:1em;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;vertical-align:middle;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.oceanwp-social-menu .colored ul li a:hover{color:#fff}.oceanwp-social-menu .colored ul li a .owp-icon use{stroke:#fff}.oceanwp-social-menu .colored ul li.oceanwp-twitter a{background-color:#46d4fe}.oceanwp-social-menu .colored ul li.oceanwp-twitter a:hover{background-color:#39b4d8}.oceanwp-social-menu .colored ul li.oceanwp-facebook a{background-color:#37589b}.oceanwp-social-menu .colored ul li.oceanwp-facebook a:hover{background-color:#2d477c}.oceanwp-social-menu .colored ul li.oceanwp-googleplus a{background-color:#de5a49}.oceanwp-social-menu .colored ul li.oceanwp-googleplus a:hover{background-color:#bb4c3e}.oceanwp-social-menu .colored ul li.oceanwp-pinterest a{background-color:#cb2027}.oceanwp-social-menu .colored ul li.oceanwp-pinterest a:hover{background-color:#a91d23}.oceanwp-social-menu .colored ul li.oceanwp-dribbble a{background-color:#ea4c89}.oceanwp-social-menu .colored ul li.oceanwp-dribbble a:hover{background-color:#c64174}.oceanwp-social-menu .colored ul li.oceanwp-vk a{background-color:#597BA5}.oceanwp-social-menu .colored ul li.oceanwp-vk a:hover{background-color:#486384}.oceanwp-social-menu .colored ul li.oceanwp-instagram a{background-color:#3F729B}.oceanwp-social-menu .colored ul li.oceanwp-instagram a:hover{background-color:#315a7c}.oceanwp-social-menu .colored ul li.oceanwp-linkedin a{background-color:#3399CC}.oceanwp-social-menu .colored ul li.oceanwp-linkedin a:hover{background-color:#2678a1}.oceanwp-social-menu .colored ul li.oceanwp-tumblr a{background-color:#2C4762}.oceanwp-social-menu .colored ul li.oceanwp-tumblr a:hover{background-color:#1d3042}.oceanwp-social-menu .colored ul li.oceanwp-github a{background-color:#60b044}.oceanwp-social-menu .colored ul li.oceanwp-github a:hover{background-color:#4f9237}.oceanwp-social-menu .colored ul li.oceanwp-flickr a{background-color:#fa4086}.oceanwp-social-menu .colored ul li.oceanwp-flickr a:hover{background-color:#c63169}.oceanwp-social-menu .colored ul li.oceanwp-skype a{background-color:#00AFF0}.oceanwp-social-menu .colored ul li.oceanwp-skype a:hover{background-color:#0291c6}.oceanwp-social-menu .colored ul li.oceanwp-youtube a{background-color:#C4302B}.oceanwp-social-menu .colored ul li.oceanwp-youtube a:hover{background-color:#982420}.oceanwp-social-menu .colored ul li.oceanwp-vimeo a{background-color:#1ab7ea}.oceanwp-social-menu .colored ul li.oceanwp-vimeo a:hover{background-color:#1494bd}.oceanwp-social-menu .colored ul li.oceanwp-vine a{background-color:#00bf8f}.oceanwp-social-menu .colored ul li.oceanwp-vine a:hover{background-color:#01906c}.oceanwp-social-menu .colored ul li.oceanwp-xing a{background-color:#006464}.oceanwp-social-menu .colored ul li.oceanwp-xing a:hover{background-color:#014646}.oceanwp-social-menu .colored ul li.oceanwp-yelp a{background-color:#C41200}.oceanwp-social-menu .colored ul li.oceanwp-yelp a:hover{background-color:#940f01}.oceanwp-social-menu .colored ul li.oceanwp-tripadvisor a{background-color:#589442}.oceanwp-social-menu .colored ul li.oceanwp-tripadvisor a:hover{background-color:#426f32}.oceanwp-social-menu .colored ul li.oceanwp-rss a{background-color:#ff7900}.oceanwp-social-menu .colored ul li.oceanwp-rss a:hover{background-color:#d46603}.oceanwp-social-menu .colored ul li.oceanwp-email a{background-color:#13aff0}.oceanwp-social-menu .colored ul li.oceanwp-email a:hover{background-color:#0f8dc2}.oceanwp-social-menu .colored ul li.oceanwp-tiktok a{background-color:#000000}.oceanwp-social-menu .colored ul li.oceanwp-tiktok a:hover{background-color:#141414}.oceanwp-social-menu .colored ul li.oceanwp-medium a{background-color:#00ab6c}.oceanwp-social-menu .colored ul li.oceanwp-medium a:hover{background-color:#03945f}.oceanwp-social-menu .colored ul li.oceanwp-telegram a{background-color:#0088cc}.oceanwp-social-menu .colored ul li.oceanwp-telegram a:hover{background-color:#0da4f0}.oceanwp-social-menu .colored ul li.oceanwp-twitch a{background-color:#6441a5}.oceanwp-social-menu .colored ul li.oceanwp-twitch a:hover{background-color:#702cee}.oceanwp-social-menu .colored ul li.oceanwp-line a{background-color:#00c300}.oceanwp-social-menu .colored ul li.oceanwp-line a:hover{background-color:#09f309}.oceanwp-social-menu .colored ul li.oceanwp-qq a{background-color:#febf1b}.oceanwp-social-menu .colored ul li.oceanwp-qq a:hover{background-color:#db9f07}.oceanwp-social-menu .minimal ul li a{position:relative;display:inline-block;font-size:12px;background-color:transparent;color:#bbb;border:1px solid #ccc;line-height:1;padding:1em;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;vertical-align:middle;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.oceanwp-social-menu .minimal ul li a:hover{background-color:transparent}.oceanwp-social-menu .minimal ul li.oceanwp-twitter a:hover{color:#46d4fe;border-color:#46d4fe}.oceanwp-social-menu .minimal ul li.oceanwp-facebook a:hover{color:#37589b;border-color:#37589b}.oceanwp-social-menu .minimal ul li.oceanwp-googleplus a:hover{color:#de5a49;border-color:#de5a49}.oceanwp-social-menu .minimal ul li.oceanwp-pinterest a:hover{color:#cb2027;border-color:#cb2027}.oceanwp-social-menu .minimal ul li.oceanwp-dribbble a:hover{color:#ea4c89;border-color:#ea4c89}.oceanwp-social-menu .minimal ul li.oceanwp-vk a:hover{color:#597BA5;border-color:#597BA5}.oceanwp-social-menu .minimal ul li.oceanwp-instagram a:hover{color:#3F729B;border-color:#3F729B}.oceanwp-social-menu .minimal ul li.oceanwp-linkedin a:hover{color:#3399CC;border-color:#3399CC}.oceanwp-social-menu .minimal ul li.oceanwp-tumblr a:hover{color:#2C4762;border-color:#2C4762}.oceanwp-social-menu .minimal ul li.oceanwp-github a:hover{color:#60b044;border-color:#60b044}.oceanwp-social-menu .minimal ul li.oceanwp-flickr a:hover{color:#fa4086;border-color:#fa4086}.oceanwp-social-menu .minimal ul li.oceanwp-skype a:hover{color:#00AFF0;border-color:#00AFF0}.oceanwp-social-menu .minimal ul li.oceanwp-youtube a:hover{color:#C4302B;border-color:#C4302B}.oceanwp-social-menu .minimal ul li.oceanwp-vimeo a:hover{color:#1ab7ea;border-color:#1ab7ea}.oceanwp-social-menu .minimal ul li.oceanwp-vine a:hover{color:#00bf8f;border-color:#00bf8f}.oceanwp-social-menu .minimal ul li.oceanwp-xing a:hover{color:#006464;border-color:#006464}.oceanwp-social-menu .minimal ul li.oceanwp-yelp a:hover{color:#C41200;border-color:#C41200}.oceanwp-social-menu .minimal ul li.oceanwp-tripadvisor a:hover{color:#589442;border-color:#589442}.oceanwp-social-menu .minimal ul li.oceanwp-rss a:hover{color:#ff7900;border-color:#ff7900}.oceanwp-social-menu .minimal ul li.oceanwp-email a:hover{color:#13aff0;border-color:#13aff0}.oceanwp-social-menu .minimal ul li.oceanwp-tiktok a:hover{color:#000000;border-color:#000000}.oceanwp-social-menu .minimal ul li.oceanwp-medium a:hover{color:#00ab6c;border-color:#00ab6c}.oceanwp-social-menu .minimal ul li.oceanwp-telegram a:hover{color:#0088cc;border-color:#0088cc}.oceanwp-social-menu .minimal ul li.oceanwp-twitch a:hover{color:#702cee;border-color:#702cee}.oceanwp-social-menu .minimal ul li.oceanwp-line a:hover{color:#00c300;border-color:#00c300}.oceanwp-social-menu .minimal ul li.oceanwp-qq a:hover{color:#febf1b;border-color:#febf1b}.oceanwp-social-menu .dark ul li a{position:relative;display:inline-block;font-size:12px;background-color:#333;color:#fff;line-height:1;padding:1em;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;vertical-align:middle;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.oceanwp-social-menu .dark ul li a:hover{background-color:#000;color:#fff}.oceanwp-social-menu .dark ul li a .owp-icon use{stroke:#fff}.effect-one #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-one #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{display:block;background-color:#13aff0;position:absolute;bottom:-30%;left:0;content:'';width:100%;height:2px;visibility:hidden;-moz-transform:scaleX(0);-webkit-transform:scaleX(0);transform:scaleX(0);transform-origin:bottom left;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out}.effect-one #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{visibility:visible;-moz-transform:scaleX(1);-webkit-transform:scaleX(1);transform:scaleX(1)}.effect-one #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{visibility:visible;-moz-transform:scaleX(1);-webkit-transform:scaleX(1);transform:scaleX(1)}.effect-two #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-two #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;bottom:-30%;left:0;width:100%;height:3px;background-color:rgba(0,0,0,0.1);content:'';opacity:0;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-ms-transform:translateY(10px);-o-transform:translateY(10px);transform:translateY(10px)}.effect-two #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.effect-two #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.effect-three #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-three #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;bottom:-30%;left:0;width:100%;height:1px;background-color:#13aff0;content:'';opacity:0;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;-webkit-transform:translateY(-10px);-moz-transform:translateY(-10px);-ms-transform:translateY(-10px);-o-transform:translateY(-10px);transform:translateY(-10px)}.effect-three #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{height:2px;opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.effect-three #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{height:2px;opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before,.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{display:inline-block;color:#13aff0;opacity:0;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out}.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before{margin-right:6px;content:'[';-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{margin-left:6px;content:']';-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before,.effect-four #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.effect-four #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before,.effect-four #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before,.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;top:130%;left:0;width:100%;height:2px;background-color:#13aff0;content:'';-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;-webkit-transform:scale(0.85);-moz-transform:scale(0.85);-ms-transform:scale(0.85);-o-transform:scale(0.85);transform:scale(0.85)}.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{opacity:0;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out}.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before,.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.effect-five #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{top:-30%;opacity:1}.effect-five #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before,.effect-five #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.effect-five #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{top:-30%;opacity:1}.effect-six #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-six #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before,.effect-six #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;top:50%;left:50%;width:50px;height:50px;border:2px solid rgba(0,0,0,0.1);border-radius:50%;content:'';opacity:0;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;-webkit-transform:translateX(-50%) translateY(-50%) scale(0.2);-moz-transform:translateX(-50%) translateY(-50%) scale(0.2);-ms-transform:translateX(-50%) translateY(-50%) scale(0.2);-o-transform:translateX(-50%) translateY(-50%) scale(0.2);transform:translateX(-50%) translateY(-50%) scale(0.2)}.effect-six #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{width:40px;height:40px;border-width:4px;-webkit-transform:translateX(-50%) translateY(-50%) scale(0.8);-moz-transform:translateX(-50%) translateY(-50%) scale(0.8);-ms-transform:translateX(-50%) translateY(-50%) scale(0.8);-o-transform:translateX(-50%) translateY(-50%) scale(0.8);transform:translateX(-50%) translateY(-50%) scale(0.8)}.effect-six #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before,.effect-six #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{opacity:1;-webkit-transform:translateX(-50%) translateY(-50%) scale(1);-moz-transform:translateX(-50%) translateY(-50%) scale(1);-ms-transform:translateX(-50%) translateY(-50%) scale(1);-o-transform:translateX(-50%) translateY(-50%) scale(1);transform:translateX(-50%) translateY(-50%) scale(1)}.effect-six #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before,.effect-six #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{opacity:1;-webkit-transform:translateX(-50%) translateY(-50%) scale(1);-moz-transform:translateX(-50%) translateY(-50%) scale(1);-ms-transform:translateX(-50%) translateY(-50%) scale(1);-o-transform:translateX(-50%) translateY(-50%) scale(1);transform:translateX(-50%) translateY(-50%) scale(1)}.effect-seven #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-seven #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;bottom:-80%;left:50%;color:transparent;content:'•';text-shadow:0 0 transparent;font-size:1.2em;line-height:1;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);pointer-events:none}.effect-seven #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{color:#13aff0;text-shadow:10px 0 #13aff0, -10px 0 #13aff0}.effect-seven #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{color:#13aff0;text-shadow:10px 0 #13aff0, -10px 0 #13aff0}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative;padding:0 8px}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before,.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;width:100%;top:50%;left:0;height:2px;margin-top:-1px;background-color:rgba(0,0,0,0.1);content:'';z-index:-1;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;pointer-events:none}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before{-webkit-transform:translateY(-13px);-moz-transform:translateY(-13px);-ms-transform:translateY(-13px);-o-transform:translateY(-13px);transform:translateY(-13px)}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{-webkit-transform:translateY(15px);-moz-transform:translateY(15px);-ms-transform:translateY(15px);-o-transform:translateY(15px);transform:translateY(15px)}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before,.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{opacity:0.8}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.effect-eight #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.effect-eight #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before,.effect-eight #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{opacity:0.8}.effect-eight #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.effect-eight #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{position:relative}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before,.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{position:absolute;left:0;width:100%;height:2px;background-color:#13aff0;content:'';opacity:0;-webkit-transition:all 0.25s ease-out;-moz-transition:all 0.25s ease-out;-ms-transition:all 0.25s ease-out;-o-transition:all 0.25s ease-out;transition:all 0.25s ease-out;-webkit-transform:translateY(-10px);-moz-transform:translateY(-10px);-ms-transform:translateY(-10px);-o-transform:translateY(-10px);transform:translateY(-10px)}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:before{top:0;-webkit-transform:translateY(-10px);-moz-transform:translateY(-10px);-ms-transform:translateY(-10px);-o-transform:translateY(-10px);transform:translateY(-10px)}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link>span:after{bottom:0;-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-ms-transform:translateY(10px);-o-transform:translateY(10px);transform:translateY(10px)}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before,.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{opacity:1}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:before{-webkit-transform:translateY(-3px);-moz-transform:translateY(-3px);-ms-transform:translateY(-3px);-o-transform:translateY(-3px);transform:translateY(-3px)}.effect-nine #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span:after{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-ms-transform:translateY(5px);-o-transform:translateY(5px);transform:translateY(5px)}.effect-nine #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before,.effect-nine #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{opacity:1}.effect-nine #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:before{-webkit-transform:translateY(-3px);-moz-transform:translateY(-3px);-ms-transform:translateY(-3px);-o-transform:translateY(-3px);transform:translateY(-3px)}.effect-nine #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span:after{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-ms-transform:translateY(5px);-o-transform:translateY(5px);transform:translateY(5px)}.effect-ten #site-navigation-wrap .dropdown-menu>li>a.menu-link>span{padding:8px;-webkit-transition:box-shadow 0.25s ease-out;-moz-transition:box-shadow 0.25s ease-out;-ms-transition:box-shadow 0.25s ease-out;-o-transition:box-shadow 0.25s ease-out;transition:box-shadow 0.25s ease-out}.effect-ten #site-navigation-wrap .dropdown-menu>li>a.menu-link:hover>span{-webkit-box-shadow:0 0 10px 4px rgba(0,0,0,0.1);-moz-box-shadow:0 0 10px 4px rgba(0,0,0,0.1);box-shadow:0 0 10px 4px rgba(0,0,0,0.1)}.effect-ten #site-navigation-wrap .dropdown-menu>li.sfHover>a.menu-link>span{-webkit-box-shadow:0 0 10px 4px rgba(0,0,0,0.1);-moz-box-shadow:0 0 10px 4px rgba(0,0,0,0.1);box-shadow:0 0 10px 4px rgba(0,0,0,0.1)}.navigation .megamenu a .nav-arrow{display:none}.navigation .megamenu>li>a.menu-link{font-size:13px;font-weight:600}.navigation .megamenu li ul.sub-menu{border-top:1px solid #f1f1f1}.navigation .megamenu li a.menu-link{padding:12px 20px}.navigation .megamenu .sidebar-box{padding:20px;margin-bottom:0;line-height:1.8;white-space:normal}.navigation>ul>li>ul.megamenu.sub-menu>li{float:left;border-bottom:0;border-left-width:1px;border-style:solid;border-color:#f1f1f1}.navigation>ul>li>ul.megamenu.sub-menu>li:first-child{border-left:none}.navigation li.megamenu-li.hide-headings>.megamenu>li>a,.navigation li.megamenu-li>.megamenu>li.hide-heading>a{display:none}.navigation .megamenu .sub-menu{display:block !important;-moz-opacity:1 !important;-webkit-opacity:1 !important;opacity:1 !important;min-width:100%;position:static;background:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.navigation li.megamenu-li .megamenu.col-1>li{width:100%}.navigation li.megamenu-li .megamenu.col-2>li{width:50%}.navigation li.megamenu-li .megamenu.col-3>li{width:33.33333333%}.navigation li.megamenu-li .megamenu.col-4>li{width:25%}.navigation li.megamenu-li .megamenu.col-5>li{width:20%}.navigation li.megamenu-li .megamenu.col-6>li{width:16.66666667%}@media only screen and (min-width: 959px){.navigation li.megamenu-li.auto-mega .megamenu.col-1{width:320px}.navigation li.megamenu-li.auto-mega .megamenu.col-2{width:440px}.navigation li.megamenu-li.auto-mega .megamenu.col-3{width:660px}.navigation li.megamenu-li.auto-mega .megamenu.col-4{width:780px}.navigation li.megamenu-li.auto-mega .megamenu.col-5{width:980px}.navigation li.megamenu-li.auto-mega .megamenu.col-6{width:1080px}}.navigation>ul>li>ul.megamenu.sub-menu>li .elementor{white-space:normal;line-height:initial}.navigation li.mega-cat .megamenu{padding:30px 20px}.navigation li.mega-cat .mega-cat-title{position:relative;font-size:14px;line-height:1;font-weight:400;background-color:#f8f8f8;color:#222;letter-spacing:2px;margin:0 -20px 30px;padding:15px 35px;text-transform:uppercase}.navigation li.mega-cat>ul>li{padding:0 15px}.navigation li.mega-cat ul li a{padding:0}.navigation li.mega-cat ul li a.mega-post-link{display:block;position:relative;background-color:#000}.navigation li.mega-cat ul li a.mega-post-link img{display:block;width:100%}.navigation li.mega-cat ul li a.mega-post-link .overlay{position:absolute;bottom:0;left:0;right:0;width:100%;height:100%;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;background-color:rgba(0,0,0,0.2);-moz-opacity:0;-webkit-opacity:0;opacity:0;text-align:center;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.navigation li.mega-cat ul li a.mega-post-link:hover .overlay{-moz-opacity:1;-webkit-opacity:1;opacity:1}.navigation li.mega-cat ul li .mega-post-title{display:block;margin:15px 0 8px;white-space:initial}.navigation li.mega-cat ul li .mega-post-title a{color:#555;font-size:14px;font-weight:400;line-height:1.3;letter-spacing:0.6px;text-transform:none}.navigation li.mega-cat ul li .mega-post-title a:hover{background-color:transparent;color:#333}.navigation li.mega-cat ul li .mega-post-date{display:block;font-size:10px;color:#bbb;text-transform:uppercase}.navigation li.mega-cat ul li .mega-post-date i{font-size:9px;padding-right:5px}.navigation li.mega-cat ul li .mega-post-date svg.owp-icon{width:16px;height:16px;margin-right:0.7rem}.navigation>ul>li.mega-cat>ul.megamenu.sub-menu>li.first{border-left:0}@media only screen and (min-width: 768px) and (max-width: 1280px){.navigation li.megamenu.auto-width.col-6>.sub-menu{width:980px}}#searchform-dropdown,#icon-searchform-dropdown{position:absolute;right:0;background-color:#fff;border-top:3px solid #13aff0;top:100%;padding:15px;width:260px;-webkit-box-shadow:0 2px 7px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 7px rgba(0,0,0,0.1);box-shadow:0 2px 7px rgba(0,0,0,0.1);visibility:hidden;-moz-opacity:0;-webkit-opacity:0;opacity:0;transition:all 0.25s ease-in-out;z-index:10000}#searchform-dropdown input,#icon-searchform-dropdown input{display:block;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;border-radius:0;margin:0}.no-top-border #searchform-dropdown,.no-top-border #icon-searchform-dropdown{border:none}#searchform-dropdown.show,#icon-searchform-dropdown.show{visibility:visible;-moz-opacity:1;-webkit-opacity:1;opacity:1}#icon-searchform-dropdown{width:100%}#site-header.header-replace #site-navigation .dropdown-menu{-webkit-transition:opacity 0.25s ease-in-out;-moz-transition:opacity 0.25s ease-in-out;-ms-transition:opacity 0.25s ease-in-out;-o-transition:opacity 0.25s ease-in-out;transition:opacity 0.25s ease-in-out}#site-header.header-replace #site-navigation.hide .dropdown-menu{visibility:hidden;-moz-opacity:0;-webkit-opacity:0;opacity:0}#searchform-header-replace{position:absolute;top:0;right:0;height:100%;width:100%;min-width:370px;visibility:hidden;-moz-opacity:0;-webkit-opacity:0;opacity:0;-webkit-transition:opacity 0.25s ease-in-out;-moz-transition:opacity 0.25s ease-in-out;-ms-transition:opacity 0.25s ease-in-out;-o-transition:opacity 0.25s ease-in-out;transition:opacity 0.25s ease-in-out}#searchform-header-replace form{height:100%;width:100%}#searchform-header-replace input{height:100%;width:94%;font-size:22px;background-color:transparent;color:#bbb;padding:0;outline:0;border:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;border-radius:0}#searchform-header-replace-close{position:absolute;right:8px;top:50%;margin-top:-20px;height:40px;line-height:40px;font-size:26px;color:#bbb;cursor:pointer;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}#searchform-header-replace-close:hover{color:#222}#searchform-header-replace.show{visibility:visible;-moz-opacity:1;-webkit-opacity:1;opacity:1}#searchform-overlay,#icon-searchform-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.9);z-index:9999}#searchform-overlay .container,#icon-searchform-overlay .container{position:relative;width:100%;height:100%}#searchform-overlay a.search-overlay-close,#icon-searchform-overlay a.search-overlay-close{position:absolute;top:-50px;left:50%;margin-left:-20px;width:40px;height:40px;background-color:rgba(255,255,255,0.2);text-align:center;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;border-radius:2px}#searchform-overlay a.search-overlay-close:hover,#icon-searchform-overlay a.search-overlay-close:hover{background-color:rgba(255,255,255,0.3)}#searchform-overlay a.search-overlay-close span,#icon-searchform-overlay a.search-overlay-close span{position:relative;display:inline-block;width:24px;height:24px}#searchform-overlay a.search-overlay-close span:before,#searchform-overlay a.search-overlay-close span:after,#icon-searchform-overlay a.search-overlay-close span:before,#icon-searchform-overlay a.search-overlay-close span:after{content:'';position:absolute;top:50%;left:0;height:2px;width:100%;margin-top:6px;background-color:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px}#searchform-overlay a.search-overlay-close span:before,#icon-searchform-overlay a.search-overlay-close span:before{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}#searchform-overlay a.search-overlay-close span:after,#icon-searchform-overlay a.search-overlay-close span:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}#searchform-overlay form,#icon-searchform-overlay form{position:absolute;top:50%;left:0;margin-top:-33px;width:100%;text-align:center}#searchform-overlay form input,#searchform-overlay form label,#icon-searchform-overlay form input,#icon-searchform-overlay form label{font-size:22px;line-height:1.3;padding:18px 0;margin:0;min-height:50px;color:#fff;letter-spacing:1px;text-transform:uppercase;text-align:center}#searchform-overlay form input,#icon-searchform-overlay form input{position:relative;border:0;background-color:transparent;border-bottom:1px solid #444;z-index:2;-webkit-transition:border-color 0.3s ease;-moz-transition:border-color 0.3s ease;-ms-transition:border-color 0.3s ease;-o-transition:border-color 0.3s ease;transition:border-color 0.3s ease}#searchform-overlay form input:hover,#icon-searchform-overlay form input:hover{border-color:#777}#searchform-overlay form input:focus,#icon-searchform-overlay form input:focus{border-color:#fff}#searchform-overlay form label,#icon-searchform-overlay form label{display:block;position:absolute;top:0;bottom:0;left:0;right:0;cursor:text;-moz-opacity:.5;-webkit-opacity:.5;opacity:.5;z-index:1}#searchform-overlay form label i,#icon-searchform-overlay form label i{display:inline-block;background-color:#fff;width:3px;height:3px;margin-left:3px;-webkit-animation:blink 1s linear infinite;-moz-animation:blink 1s linear infinite;-ms-animation:blink 1s linear infinite;-o-animation:blink 1s linear infinite;animation:blink 1s linear infinite}#searchform-overlay form label i+i,#icon-searchform-overlay form label i+i{-ms-animation-delay:.2s;-webkit-animation-delay:.2s;-o-animation-delay:.2s;-moz-animation-delay:.2s;animation-delay:.2s}#searchform-overlay form label i+i+i,#icon-searchform-overlay form label i+i+i{-ms-animation-delay:.4s;-webkit-animation-delay:.4s;-o-animation-delay:.4s;-moz-animation-delay:.4s;animation-delay:.4s}#searchform-overlay form.search-filled label,#icon-searchform-overlay form.search-filled label{-moz-opacity:0;-webkit-opacity:0;opacity:0;-webkit-transition-duration:150ms;-moz-transition-duration:150ms;-ms-transition-duration:150ms;-o-transition-duration:150ms;transition-duration:150ms}#searchform-overlay .container{max-width:550px}#icon-searchform-overlay form label,#icon-searchform-overlay form input{font-size:16px}#icon-searchform-overlay .search-overlay-close{line-height:inherit}@media only screen and (max-width: 959px){#searchform-overlay{display:none !important}}#mobile-dropdown{display:none;position:absolute;top:100%;left:0;width:100%;background-color:#fff;max-height:400px;overflow-y:auto;-webkit-box-shadow:0 2px 6px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 6px rgba(0,0,0,0.1);box-shadow:0 2px 6px rgba(0,0,0,0.1)}#mobile-dropdown ul{margin:0;list-style:none}#mobile-dropdown ul li{border-bottom:1px solid rgba(0,0,0,0.035)}#mobile-dropdown ul li a{display:block;position:relative;padding:12px 40px;text-align:left}#mobile-dropdown ul li a:focus{outline:1px dashed #e3e3e3}#mobile-dropdown ul li a i,#mobile-dropdown ul li a img{margin-right:10px}#mobile-dropdown ul li a i.after{margin-right:0;margin-left:10px}#mobile-dropdown ul li a .dropdown-toggle{position:absolute;right:0;top:0;height:100%;width:60px;cursor:pointer;color:#555;padding-right:40px;text-align:center;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}#mobile-dropdown ul li a .dropdown-toggle:focus{outline:1px dashed rgba(0,0,0,0.4)}#mobile-dropdown ul li a .dropdown-toggle:before{content:"+";font-size:20px;position:absolute;top:50%;left:50%;line-height:30px;margin-top:-15px;margin-left:-15px}#mobile-dropdown ul li.active>a>.dropdown-toggle:before{content:"-"}#mobile-dropdown ul li ul{display:none;border-top:1px solid rgba(0,0,0,0.035);margin-left:0;background-color:rgba(0,0,0,0.02)}#mobile-dropdown ul li.woo-menu-icon,#mobile-dropdown ul li.search-toggle-li,#mobile-dropdown ul li.side-panel-li,#mobile-dropdown ul li a .nav-arrow,#mobile-dropdown ul .sidebar-box,#mobile-dropdown ul .widget{display:none}#mobile-dropdown .oceanwp-social-menu{display:block !important;float:none;width:100%;right:auto !important;left:auto !important;padding:0 40px !important;margin:10px 0 !important}#mobile-dropdown .oceanwp-social-menu .social-menu-inner{height:auto}#mobile-dropdown .oceanwp-social-menu li{display:inline-block;float:none;border:0}#mobile-dropdown .oceanwp-social-menu li a{display:block;padding:12px 10px}#mobile-dropdown #mobile-menu-search{display:block;padding:20px 40px}#mobile-dropdown #mobile-menu-search form{position:relative}#mobile-dropdown #mobile-menu-search form input{padding:6px 45px 6px 12px !important;margin-top:0 !important;-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}#mobile-dropdown #mobile-menu-search form button{display:block;position:absolute;right:10px;height:30px;line-height:30px;width:30px;padding:0;text-align:center;top:50%;margin-top:-15px;background-color:transparent !important;color:#555;border:0;-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}#mobile-dropdown #mobile-menu-search form button:hover{color:#222}#mobile-dropdown .has-social #mobile-menu-search{padding-top:0}#mobile-fullscreen{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.9);overflow-y:scroll;z-index:100000}#mobile-fullscreen #mobile-fullscreen-inner{display:table;width:100%;height:100%;padding:0 40px}#mobile-fullscreen a.close{position:absolute;top:14px;right:14px}#mobile-fullscreen a.close .close-icon-wrap{display:inline-block;position:relative;width:40px;height:40px;line-height:33px;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}#mobile-fullscreen a.close .close-icon-wrap:hover{opacity:0.7}#mobile-fullscreen a.close .close-icon-inner,#mobile-fullscreen a.close .close-icon-inner::after{display:inline-block;width:40px;height:3px;background-color:#fff;border-radius:3px}#mobile-fullscreen a.close .close-icon-inner{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}#mobile-fullscreen a.close .close-icon-inner::after{content:"";display:block;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}#mobile-fullscreen nav{display:table-cell;vertical-align:middle;padding:50px 0;text-align:center}#mobile-fullscreen ul{list-style:none;margin:0}#mobile-fullscreen ul li a{display:block;position:relative;color:#fff;letter-spacing:1px;text-transform:uppercase;text-align:center}#mobile-fullscreen ul li a:focus{outline:1px dashed rgba(255,255,255,0.6)}#mobile-fullscreen ul li a:hover{color:#929292}#mobile-fullscreen ul li a i,#mobile-fullscreen ul li a img{margin-right:10px}#mobile-fullscreen ul li a i.after{margin-right:0;margin-left:10px}#mobile-fullscreen ul li .dropdown-toggle{display:inline-block;width:26px;padding-left:5px;text-align:center}#mobile-fullscreen ul li .dropdown-toggle:before{font-family:"Font Awesome 5 Free";font-weight:600;content:"+"}#mobile-fullscreen ul li .dropdown-toggle:focus{outline:1px dashed rgba(255,255,255,0.6)}#mobile-fullscreen ul li.open-sub>a>.dropdown-toggle:before{content:"-"}#mobile-fullscreen ul ul.sub-menu{display:none;list-style:none;margin:0;padding:0}#mobile-fullscreen ul ul.sub-menu li a{font-size:13px;padding:3px 0}#mobile-fullscreen ul>li{display:block}#mobile-fullscreen ul>li>a{font-size:18px;line-height:1.2;padding:12px 0}#mobile-fullscreen ul .woo-menu-icon,#mobile-fullscreen ul .search-toggle-li,#mobile-fullscreen ul .side-panel-li,#mobile-fullscreen ul .sidebar-box{display:none}#mobile-fullscreen #mobile-search{max-width:220px;margin:10px auto 0}#mobile-fullscreen #mobile-search form{position:relative}#mobile-fullscreen #mobile-search input,#mobile-fullscreen #mobile-search label{font-size:20px;padding:4px 0;color:#fff;margin:0;text-align:center;text-transform:uppercase}#mobile-fullscreen #mobile-search input{position:relative;border:0;background-color:transparent;border-bottom:1px solid #666;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;border-radius:0;z-index:2}#mobile-fullscreen #mobile-search input:hover,#mobile-fullscreen #mobile-search input:focus{border-color:#fff}#mobile-fullscreen #mobile-search label{display:block;position:absolute;top:0;bottom:0;left:0;right:0;cursor:text;-moz-opacity:.5;-webkit-opacity:.5;opacity:.5;z-index:1}#mobile-fullscreen #mobile-search label i{display:inline-block;background-color:#fff;width:3px;height:3px;margin-left:3px;-webkit-animation:blink 1s linear infinite;-moz-animation:blink 1s linear infinite;-ms-animation:blink 1s linear infinite;-o-animation:blink 1s linear infinite;animation:blink 1s linear infinite}#mobile-fullscreen #mobile-search label i+i{-ms-animation-delay:.2s;-webkit-animation-delay:.2s;-o-animation-delay:.2s;-moz-animation-delay:.2s;animation-delay:.2s}#mobile-fullscreen #mobile-search label i+i+i{-ms-animation-delay:.4s;-webkit-animation-delay:.4s;-o-animation-delay:.4s;-moz-animation-delay:.4s;animation-delay:.4s}#mobile-fullscreen #mobile-search form.search-filled label{-moz-opacity:0;-webkit-opacity:0;opacity:0;-webkit-transition-duration:150ms;-moz-transition-duration:150ms;-ms-transition-duration:150ms;-o-transition-duration:150ms;transition-duration:150ms}#mobile-fullscreen .oceanwp-social-menu{display:block;float:none;margin-top:30px;text-align:center;right:auto}#mobile-fullscreen .oceanwp-social-menu .social-menu-inner{display:block;height:auto !important}#mobile-fullscreen .oceanwp-social-menu ul li{float:none;display:inline-block}#mobile-fullscreen .oceanwp-social-menu.simple-social ul li a{color:#fff;font-size:24px;padding:0 16px;margin:0;background-color:transparent !important}#mobile-fullscreen .oceanwp-social-menu.simple-social ul li a:hover{color:#929292}#mobile-fullscreen .oceanwp-social-menu .colored ul li a,#mobile-fullscreen .oceanwp-social-menu .minimal ul li a,#mobile-fullscreen .oceanwp-social-menu .dark ul li a{padding:0 4px}#mobile-fullscreen .oceanwp-social-menu .colored ul li a span,#mobile-fullscreen .oceanwp-social-menu .minimal ul li a span,#mobile-fullscreen .oceanwp-social-menu .dark ul li a span{font-size:16px;width:60px;height:60px;line-height:60px}@-webkit-keyframes blink{0%{-webkit-opacity:1}50%{-webkit-opacity:0}100%{-webkit-opacity:1}}@-moz-keyframes blink{0%{-moz-opacity:1}50%{-moz-opacity:0}100%{-moz-opacity:1}}@-o-keyframes blink{0%{-o-opacity:1}50%{-o-opacity:0}100%{-o-opacity:1}}@keyframes blink{0%{opacity:1}50%{opacity:0}100%{opacity:1}}.page-header{position:relative;background-color:#f5f5f5;padding:34px 0}.page-header .container{position:relative}.has-transparent-header .page-header{padding:120px 0 36px 0}body.home .page-header-inner{text-align:center}.page-header-title{display:block;font-size:24px;line-height:1.4em;font-weight:400;margin:0;color:#333}body.breadcrumbs-position-default .page-header-title{max-width:70%}.page-subheading{font-size:15px;margin:0}.page-subheading p:last-child{margin:0}.centered-page-header .page-header-title,.centered-minimal-page-header .page-header-title{max-width:100% !important}.centered-page-header{text-align:center}.centered-page-header .page-header-title{font-size:32px}.centered-page-header .page-subheading{font-size:18px;font-weight:300}.centered-minimal-page-header{background-color:#fff;border-bottom:1px solid #f1f1f1;text-align:center}.centered-minimal-page-header .page-header-title{font-size:32px}.centered-minimal-page-header .page-subheading{font-size:18px;font-weight:300}.solid-color-page-header .page-header-title{color:#fff !important}.solid-color-page-header .site-breadcrumbs,.solid-color-page-header .site-breadcrumbs a{color:#fff !important}.solid-color-page-header .page-subheading{color:#fff}.background-image-page-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;width:100%;background-color:#000;height:400px;background-position:50% 0;background-repeat:no-repeat;background-size:cover}.background-image-page-header .page-header-inner{text-align:center}.background-image-page-header .page-subheading{position:relative;color:#fff;font-size:24px;font-weight:300;z-index:2}.page-header.background-image-page-header .page-header-title{position:relative;color:#fff;font-size:44px;font-weight:400;max-width:100%;z-index:2}.background-image-page-header-overlay{display:block;position:absolute;top:0;left:0;height:100%;width:100%;background-color:#000;z-index:1;-moz-opacity:.5;-webkit-opacity:.5;opacity:.5}.site-breadcrumbs{position:absolute;right:0;top:50%;max-width:50%;height:32px;line-height:32px;margin-top:-16px;font-size:13px;color:#c6c6c6;font-weight:normal;white-space:nowrap;overflow:hidden}.site-breadcrumbs ol{margin:0;padding:0;list-style:none}.site-breadcrumbs ol li{display:inline-block}.site-breadcrumbs ol li .breadcrumb-sep{margin:0 6px}.site-breadcrumbs .icon-home.has-text,.site-breadcrumbs .breadcrumb-home.has-icon{display:none}.site-breadcrumbs .breadcrumb-title{margin-right:5px}.site-breadcrumbs .owp-icon{vertical-align:text-top}.site-breadcrumbs.position-under-title,.centered-page-header .site-breadcrumbs,.centered-minimal-page-header .site-breadcrumbs{position:inherit;top:auto;right:auto;margin-top:0;max-width:100%}.oceanwp-breadcrumb .site-breadcrumbs{position:relative;top:auto;left:auto;right:auto;max-width:100%;margin-top:0}.background-image-page-header .site-breadcrumbs{display:block;position:inherit;max-width:100%;margin-top:20px;top:auto;right:auto;color:#fff;text-align:center;z-index:2}.background-image-page-header .site-breadcrumbs a{color:#fff}.background-image-page-header .site-breadcrumbs a:hover{color:#ddd}.site-breadcrumbs nav,.site-breadcrumbs ol{margin:0}@media only screen and (max-width: 959px){body.has-breadcrumbs .page-header-title{max-width:100%;width:100%}}@media only screen and (max-width: 959px){.site-breadcrumbs{position:inherit;top:auto;left:auto;right:auto;max-width:100%;margin-top:0}}@media only screen and (max-width: 767px){.page-header{background-attachment:initial !important}.page-header-with-background .page-header-title{font-size:36px}.centered-page-header .page-header-title,.centered-minimal-page-header .page-header-title,.page-header.background-image-page-header .page-header-title{font-size:24px}.centered-page-header .page-subheading,.centered-minimal-page-header .page-header-subheading,.page-header.background-image-page-header .page-subheading{font-size:14px}.background-image-page-header{height:auto !important}body.has-breadcrumbs .page-header-title{max-width:100%;width:100%}}#blog-entries{padding-bottom:0}.blog-entry.post{position:relative}.blog-entry.post .thumbnail{position:relative}.blog-entry.post .thumbnail a{display:inline-block;position:relative;width:100%}.blog-entry.post .thumbnail .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.2);-moz-opacity:0;-webkit-opacity:0;opacity:0;text-align:center;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.blog-entry.post .thumbnail:hover .overlay{-moz-opacity:1;-webkit-opacity:1;opacity:1}.blog-entry.post .thumbnail img{width:100%}.blog-entry.post ul.meta{margin:0 0 12px}.blog-entry.post .blog-entry-header{margin-bottom:20px}.blog-entry.post .blog-entry-header .entry-title{font-size:24px;margin:0}.blog-entry.post .blog-entry-header .entry-title a{font-weight:600;letter-spacing:0.6px}.blog-entry.post .blog-entry-summary{margin-bottom:20px}.blog-entry.post .blog-entry-summary p:last-child{margin-bottom:0}.thumbnail-caption{font-size:13px;margin-top:0.5em;text-align:center}.blog-entry.large-entry{border-bottom:1px solid #f1f1f1;margin-bottom:30px;padding-bottom:30px}.blog-entry.large-entry .thumbnail{margin-bottom:20px}.blog-entry.large-entry .blog-entry-readmore a{display:inline-block;font-size:11px;line-height:1;border:1px solid #ddd;padding:10px 16px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;border-radius:2px;text-transform:capitalize;letter-spacing:1px}.blog-entry.large-entry .blog-entry-readmore a:hover{color:#13aff0;border-color:#13aff0}.blog-entry.large-entry .blog-entry-readmore a i{margin-left:8px}.blog-entry.large-entry .blog-entry-readmore a svg.owp-icon{margin-left:0.7rem}.has-blog-grid .blog-grid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin:0 auto;height:auto !important}.blog-entry.grid-entry{justify-content:flex-start}.blog-entry.grid-entry .blog-entry-inner{padding:0 1.25rem 1.25rem;border:1px solid #e9e9e9}.blog-entry.grid-entry .thumbnail{margin:0 -1.25rem}.blog-entry.grid-entry .blog-entry-header{margin:1rem 0 1rem}.blog-entry.grid-entry .blog-entry-header .entry-title{font-size:18px}.blog-entry.grid-entry .blog-entry-summary{line-height:1.6;margin-top:0.625rem}.blog-entry.grid-entry .blog-entry-readmore{margin-top:1rem}.blog-entry.grid-entry .blog-entry-readmore a{display:inline-block;font-size:12px;line-height:1.2;padding-bottom:0.19rem;border-bottom:1px solid;text-transform:capitalize}.blog-entry.grid-entry .blog-entry-readmore a i{margin-left:0.5rem}.blog-entry.grid-entry .blog-entry-readmore a svg.owp-icon{margin-left:0.7rem}.blog-entry.thumbnail-entry{border-bottom:1px solid #f1f1f1;margin-bottom:30px;padding-bottom:30px}.blog-entry.thumbnail-entry .blog-entry-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;flex-direction:row}.blog-entry.thumbnail-entry .thumbnail,.blog-entry.thumbnail-entry .blog-entry-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;flex-direction:column}.blog-entry.thumbnail-entry .center .thumbnail,.blog-entry.thumbnail-entry .center .blog-entry-content{-webkit-justify-content:center;justify-content:center}.blog-entry.thumbnail-entry .bottom .thumbnail,.blog-entry.thumbnail-entry .bottom .blog-entry-content{-webkit-justify-content:flex-end;justify-content:flex-end}.blog-entry.thumbnail-entry .thumbnail{width:45%}.blog-entry.thumbnail-entry .thumbnail a{position:relative}.blog-entry.thumbnail-entry .thumbnail .link-entry{position:absolute;top:0}.blog-entry.thumbnail-entry .thumbnail .left-position .link-entry{right:0}.blog-entry.thumbnail-entry .thumbnail .right-position .link-entry{left:0}.blog-entry.thumbnail-entry .blog-entry-content{width:55%}.blog-entry.thumbnail-entry .blog-entry-content{padding:6px 0}.blog-entry.thumbnail-entry .left-position .blog-entry-content{padding-left:3em}.blog-entry.thumbnail-entry .right-position .blog-entry-content{padding-right:3em}.blog-entry.thumbnail-entry .blog-entry-category{display:block;font-size:12px;font-weight:600;letter-spacing:0.6px;line-height:1.2em;text-transform:uppercase;margin-bottom:10px}.blog-entry.thumbnail-entry .blog-entry-category a{color:#13aff0}.blog-entry.thumbnail-entry .blog-entry-category a:hover{color:#333}.blog-entry.thumbnail-entry .blog-entry-summary{margin-bottom:15px}.blog-entry.thumbnail-entry .blog-entry-bottom{display:block;border-top:1px solid #e9e9e9;padding-top:15px;font-size:11px;font-weight:600;letter-spacing:0.6px;line-height:1.2em;text-transform:uppercase}.blog-entry.thumbnail-entry .blog-entry-comments,.blog-entry.thumbnail-entry .blog-entry-comments a,.blog-entry.thumbnail-entry .blog-entry-date{color:#ababab}.blog-entry.thumbnail-entry .blog-entry-comments{float:left}.blog-entry.thumbnail-entry .blog-entry-comments i{padding-right:6px}.blog-entry.thumbnail-entry .blog-entry-comments a:hover{color:#333}.blog-entry.thumbnail-entry .blog-entry-comments svg.owp-icon{width:17px;height:17px;margin-right:0.7rem}.blog-entry.thumbnail-entry .blog-entry-date{float:right}.blog-entry.thumbnail-entry.no-featured-image .blog-entry-content{width:100%}.blog-entry.thumbnail-entry.no-featured-image .left-position .blog-entry-content{padding-left:0}.blog-entry.thumbnail-entry.no-featured-image .right-position .blog-entry-content{padding-right:0}@media only screen and (max-width: 767px){.blog-entry.thumbnail-entry .blog-entry-inner{-webkit-flex-direction:column;flex-direction:column}.blog-entry.thumbnail-entry .thumbnail,.blog-entry.thumbnail-entry .blog-entry-content{width:100%}.blog-entry.thumbnail-entry .blog-entry-content{margin-top:15px;padding:0 !important}}ul.meta{display:flex;flex-wrap:wrap;justify-content:flex-start;color:#4a4a4a;font-size:14px;line-height:1.3;margin:0 0 20px;padding:0 0 10px;list-style:none}ul.meta li{line-height:1.5;align-self:flex-end;flex-wrap:nowrap;padding-bottom:5px}ul.meta li:after{padding:0 6px;font-weight:bold}ul.meta li:last-child:after{display:none;padding:0}ul.meta li a{color:#4a4a4a}ul.meta li a:hover{color:#13aff0}ul.meta li i{padding-right:6px;font-size:17px}ul.meta li .owp-icon{margin-right:8px}ul.meta li svg.owp-icon{width:18px;height:18px}ul.meta li .owp-sep{padding:0 5px}ul.obem-default li:after{content:'-'}ul.obem-modern li:after{content:'|'}ul.obem-none li:after{content:'';margin:0 5px}.single-post ul.meta{font-size:14.5px;border-bottom:1px solid #f1f1f1;padding-bottom:15px}.single-post ul.meta li:after{padding:0 8px}.single-post ul.meta li i{padding-right:9px}.single-post ul.meta li .owp-icon{margin-right:8px}.single-post ul.meta li svg.owp-icon{width:20px;height:20px}.single-post ul.ospm-default li:after{content:'-'}.single-post ul.ospm-modern li:after{content:'|'}.single-post ul.ospm-none li:after{content:'';margin:0 10px}.gallery-format{opacity:0;visibility:hidden;height:0}.gallery-format img,.gallery-format a.gallery-lightbox{display:block;position:relative;width:100%;margin-bottom:0}.gallery-format .flickity-button{top:calc(100% - 18px);width:30px;height:36px;border-radius:0;background-color:rgba(0,0,0,0.6);display:flex;justify-content:center;align-items:center}.gallery-format .flickity-button:hover{background-color:rgba(0,0,0,0.8)}.gallery-format .flickity-button:disabled{pointer-events:unset}.gallery-format .flickity-button.next{right:0}.gallery-format .flickity-button.previous{left:auto;right:30px}.gallery-format .flickity-button svg{fill:#fff;width:12px;height:auto;position:static}.wp-video{width:100% !important}.link-entry{position:absolute;top:20px;right:20px}.link-entry i{display:inline-block;width:60px;height:60px;font-size:22px;line-height:60px;background-color:#333;color:#fff;text-align:center;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.thumbnail:hover i{background-color:#13aff0}.link-post-svg-icon{width:60px;height:60px;border-radius:50%;background-color:#333;text-align:center;padding-top:18px}.link-post-svg-icon .owp-icon{width:22px;height:22px}.link-post-svg-icon .owp-icon use{stroke:#fff}.post-quote-content,.post-quote-author{position:relative;background-color:#13aff0;color:#fff;font-size:20px;padding:20px 30px;line-height:1.6;z-index:1}.post-quote-icon{position:absolute;right:20px;bottom:10px;font-size:48px;-moz-opacity:.2;-webkit-opacity:.2;opacity:.2;z-index:-1}.post-quote-icon svg.owp-icon{width:45px;height:45px}.post-quote-author{background-color:#0b7cac;font-size:12px;font-weight:600;padding:10px 30px;margin-top:1px;text-transform:uppercase;letter-spacing:0.6px}.single-post .post-quote-wrap{margin-bottom:30px}.single .thumbnail{position:relative;margin-bottom:20px}.single .thumbnail img{width:100%}.single .entry-title{font-size:34px;padding:0 0 20px;margin:0 0 15px;border-bottom:1px solid #f1f1f1;letter-spacing:0.6px}.single-post.content-max-width #main #content-wrap{width:100%;max-width:100%}.single-post.content-max-width .thumbnail,.single-post.content-max-width .entry-header,.single-post.content-max-width ul.meta,.single-post.content-max-width .entry-content h1,.single-post.content-max-width .entry-content h2,.single-post.content-max-width .entry-content h3,.single-post.content-max-width .entry-content h4,.single-post.content-max-width .entry-content h5,.single-post.content-max-width .entry-content h6,.single-post.content-max-width .entry-content blockquote,.single-post.content-max-width .entry-content p,.single-post.content-max-width .post-tags,.single-post.content-max-width .entry-share,.single-post.content-max-width nav.post-navigation,.single-post.content-max-width #author-bio,.single-post.content-max-width #related-posts,.single-post.content-max-width .comments-area{padding-left:20px;padding-right:20px}.single-post.content-max-width .entry-header,.single-post.content-max-width ul.meta,.single-post.content-max-width .entry-content h1,.single-post.content-max-width .entry-content h2,.single-post.content-max-width .entry-content h3,.single-post.content-max-width .entry-content h4,.single-post.content-max-width .entry-content h5,.single-post.content-max-width .entry-content h6,.single-post.content-max-width .entry-content blockquote,.single-post.content-max-width .entry-content p,.single-post.content-max-width .wp-block-image,.single-post.content-max-width .wp-block-buttons,.single-post.content-max-width .wp-block-gallery,.single-post.content-max-width .wp-block-video,.single-post.content-max-width .wp-block-quote,.single-post.content-max-width .wp-block-text-columns,.single-post.content-max-width .wp-block-code,.single-post.content-max-width .entry-content ul,.single-post.content-max-width .entry-content ol,.single-post.content-max-width .wp-block-cover-text,.single-post.content-max-width .wp-block-cover,.single-post.content-max-width .wp-block-columns,.single-post.content-max-width .post-tags,.single-post.content-max-width .comments-area{margin:1.5em auto;max-width:700px}.single-post.content-max-width .wp-block-columns.alignfull h1,.single-post.content-max-width .wp-block-columns.alignfull h2,.single-post.content-max-width .wp-block-columns.alignfull h3,.single-post.content-max-width .wp-block-columns.alignfull h4,.single-post.content-max-width .wp-block-columns.alignfull h5,.single-post.content-max-width .wp-block-columns.alignfull h6,.single-post.content-max-width .wp-block-columns.alignfull blockquote,.single-post.content-max-width .wp-block-columns.alignfull p,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-image,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-buttons,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-gallery,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-video,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-quote,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-text-columns,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-code,.single-post.content-max-width .wp-block-columns.alignfull ul,.single-post.content-max-width .wp-block-columns.alignfull ol,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-cover-text,.single-post.content-max-width .wp-block-columns.alignfull .wp-block-cover,.single-post.content-max-width .wp-block-columns.alignwide h1,.single-post.content-max-width .wp-block-columns.alignwide h2,.single-post.content-max-width .wp-block-columns.alignwide h3,.single-post.content-max-width .wp-block-columns.alignwide h4,.single-post.content-max-width .wp-block-columns.alignwide h5,.single-post.content-max-width .wp-block-columns.alignwide h6,.single-post.content-max-width .wp-block-columns.alignwide blockquote,.single-post.content-max-width .wp-block-columns.alignwide p,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-image,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-buttons,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-gallery,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-video,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-quote,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-text-columns,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-code,.single-post.content-max-width .wp-block-columns.alignwide ul,.single-post.content-max-width .wp-block-columns.alignwide ol,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-cover-text,.single-post.content-max-width .wp-block-columns.alignwide .wp-block-cover{max-width:100%}.single-post.content-max-width .entry-content ul,.single-post.content-max-width .entry-content ol{padding-left:40px;padding-right:40px}.single-post.content-max-width .thumbnail{margin-top:0}.single-post.content-max-width .entry-header{margin-bottom:0;text-align:center}.single-post.content-max-width ul.meta{display:flex;flex-wrap:wrap;justify-content:center;color:#4a4a4a;font-size:14px;line-height:1.3;margin-bottom:20px;margin-top:20px;padding:0 0 10px;list-style:none}.single-post.content-max-width .wp-block-quote p{padding:0}.single-post.content-max-width .entry-content blockquote p{max-width:100%;margin:0;padding:0}.single-post.content-max-width .thumbnail,.single-post.content-max-width .wp-block-cover-text.alignwide,.single-post.content-max-width .wp-block-image.alignwide,.single-post.content-max-width .wp-block-gallery.alignwide,.single-post.content-max-width .wp-block-text-columns.alignwide,.single-post.content-max-width .entry-share,.single-post.content-max-width nav.post-navigation,.single-post.content-max-width #author-bio,.single-post.content-max-width #related-posts{margin:1.5em auto;max-width:1100px}.single-post.content-max-width .wp-block-cover-text.alignfull,.single-post.content-max-width .wp-block-image.alignfull,.single-post.content-max-width .wp-block-gallery.alignfull,.single-post.content-max-width .wp-block-text-columns.alignfull{margin:1.5em 0;max-width:100%}.single-post.content-max-width .wp-block-image.alignfull img{width:100%}.single-post.content-max-width .wp-block-image.alignleft,.single-post.content-max-width .wp-block-image.alignright{max-width:350px;margin-top:0;margin-bottom:0}.single-post.content-max-width .wp-block-image.alignleft{margin-left:calc( 50% - 350px);padding:14px 36px 14px 0}.single-post.content-max-width .wp-block-image.alignright{margin-right:calc( 50% - 350px);padding:14px 0 14px 36px}.single-post.content-max-width figure img{margin:0 auto}.single-post.content-max-width .entry-content ul.alignfull,.single-post.content-max-width .entry-content ol.alignfull{padding-left:0;padding-right:0}.single-post.content-max-width .entry-content ul.alignwide,.single-post.content-max-width .entry-content ol.alignwide{padding-left:0;padding-right:0}.wp-block-cover-image,.wp-block-image{margin-bottom:20px}.wp-block-quote.blocks-quote-style-2{border:0}.wp-block-pullquote{border-left-width:0;margin:0}.wp-block-separator{margin:30px auto}.wp-block-separator.is-style-wide{max-width:700px}@media only screen and (max-width: 480px){.single-post.media-above-content .thumbnail{margin-bottom:20px}.single-post .entry-title{font-size:26px}}.single .entry-content{margin-bottom:20px}.dropcap{float:left;color:#13aff0;font-size:120px;line-height:80px;margin-top:6px;margin-right:10px}.entry-footer{display:inline-block;width:100%}.single .post-tags{font-size:11px;font-weight:600;margin:30px 0 0;text-transform:uppercase}.single nav.post-navigation{margin-top:30px;padding-top:30px;border-top:1px solid #f1f1f1}.single nav.post-navigation:after{content:'';display:block;visibility:hidden;clear:both;zoom:1;height:0}.single nav.post-navigation .nav-links .title{display:block;color:#13aff0;line-height:20px}.single nav.post-navigation .nav-links a{display:block}.single nav.post-navigation .nav-links i{font-size:20px;line-height:20px}.single nav.post-navigation .nav-links .post-title{display:block;font-size:16px;margin:5px 0 0}.single nav.post-navigation .nav-previous{float:left;width:50%;text-align:left;border-right-width:1px;border-style:solid;border-color:#f1f1f1;padding-right:20px}.single nav.post-navigation .nav-previous i,.single nav.post-navigation .nav-previous .owp-icon{float:left;margin-right:20px}.single nav.post-navigation .nav-previous .owp-icon{margin-top:4px}.single nav.post-navigation .nav-next{float:right;width:50%;text-align:right;padding-left:20px}.single nav.post-navigation .nav-next i,.single nav.post-navigation .nav-next .owp-icon{float:right;margin-left:20px}.single nav.post-navigation .nav-next .owp-icon{margin-top:4px}@media only screen and (max-width: 480px){.single nav.post-navigation .nav-links .nav-previous,.single nav.post-navigation .nav-links .nav-next{float:none;width:100%;padding:0}.single nav.post-navigation .nav-links .nav-previous{border-right-width:0;border-left-width:0}}#author-bio{position:relative;margin-top:30px;padding-top:30px;border-top-width:1px;border-style:solid;border-color:#f1f1f1}#author-bio #author-bio-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}#author-bio .author-bio-avatar,#author-bio .author-bio-avatar img{-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%}#author-bio .author-bio-avatar{min-width:80px;margin-right:30px}#author-bio .author-bio-avatar img{width:80px;height:80px;border:3px solid #e9e9e9}#author-bio .author-bio-content{position:relative}#author-bio .author-bio-title{display:inline-block;font-size:18px;margin:0 0 10px;text-transform:capitalize}#author-bio .author-bio-description p:last-child{margin:0}.author #author-bio{margin:0 0 30px;padding-bottom:30px;border-bottom-width:1px}@media only screen and (max-width: 480px){#author-bio .author-bio-avatar{display:none}}#related-posts{margin-top:30px;padding-top:30px;border-top:1px solid #f1f1f1}#related-posts .title-wrap{display:block;color:#333;font-size:20px;font-weight:600;letter-spacing:0.6px;margin-bottom:18px}#related-posts ul{padding:0;list-style:none}#related-posts .col{float:left;position:relative;min-height:100px;margin:0;text-align:center}#related-posts .span_1_of_3{width:33.3333333333%}.related-thumb{display:block;background-color:#222}.related-thumb img{display:block;width:100%;-webkit-transition:opacity 0.3s;-moz-transition:opacity 0.3s;-ms-transition:opacity 0.3s;-o-transition:opacity 0.3s;transition:opacity 0.3s}.related-thumb:hover img{-moz-opacity:.7;-webkit-opacity:.7;opacity:.7}.related-post-title{font-size:16px;font-weight:600;margin:12px 12px 3px 12px}.related-post-title a{display:block}time.published{font-size:12px}time.published i{padding-right:5px}time.published svg.owp-icon{width:17px;height:17px;margin-right:0.7rem}@media only screen and (max-width: 767px){#related-posts .col{float:none;width:100%;margin-bottom:30px}#related-posts .col:last-child{margin-bottom:0}}.widget-area{font-size:13px}.sidebar-box{margin-bottom:40px}.sidebar-box ul{margin:0;padding:0;list-style:none}.widget-title{display:block;line-height:1;font-size:13px;font-weight:400;color:#333;border-width:0 0 0 3px;border-style:solid;border-color:#13aff0;letter-spacing:1px;padding-left:15px;margin:0 0 20px;text-transform:capitalize}.oceanwp-widget-recent-posts-li,.widget_categories li,.widget_recent_entries li,.widget_archive li,.widget_recent_comments li,.widget-recent-posts-icons li,.site-footer .widget_nav_menu li{padding:6px 0;border-bottom:1px solid #e9e9e9}.oceanwp-widget-recent-posts-li:first-child,.widget_categories li:first-child,.widget_recent_entries li:first-child,.widget_archive li:first-child,.widget_recent_comments li:first-child,.widget-recent-posts-icons li:first-child,.site-footer .widget_nav_menu li:first-child{border-top:1px solid #e9e9e9}@media only screen and (max-width: 767px){#main .widget_nav_menu li a:before{display:none}}.hasCustomSelect{width:100%;z-index:2}.theme-select{position:relative;border:1px solid #ddd;color:#555;height:34px;line-height:32px;padding:0 45px 0 15px;width:100%;z-index:1;overflow:hidden}.theme-select:after{font-family:'Font Awesome 5 Free';content:'\f107';position:absolute;right:0;top:0;display:block;height:32px;width:32px;font-size:11px;font-weight:600;color:#929292;border-left:1px solid #ddd;text-align:center}ul.page-numbers{display:inline-block;width:100%;margin:0;padding:10px 0 0;list-style:none;text-align:right;clear:both}ul.page-numbers li{display:inline-block}ul.page-numbers li .owp-icon{vertical-align:inherit}.page-links{text-align:center;margin:15px 0}.page-numbers a,.page-numbers span:not(.elementor-screen-only),.page-links span{position:relative;display:inline-block;min-width:38px;min-width:38px;line-height:38px;margin:0 8px 0 0;text-align:center;color:#555;border:1px solid #e9e9e9;font-size:18px;cursor:pointer;white-space:nowrap;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;border-radius:2px;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.page-numbers a .owp-icon use{stroke:#555}.page-numbers a span:not(.elementor-screen-only){padding:0}.page-numbers a:hover,.page-links a:hover span,.page-numbers.current,.page-numbers.current:hover,.page-links>span{background-color:#f8f8f8;color:#333}.page-numbers a:hover .owp-icon use{stroke:#555}.elementor-pagination .page-numbers.current,.elementor-pagination .page-numbers.current:hover{background-color:transparent}.pagination-center .oceanwp-pagination ul.page-numbers,.pagination-center .oceanwp-pagination .page-links,.pagination-center .woocommerce-pagination ul.page-numbers,.pagination-center .woocommerce-pagination .page-links{text-align:center}.pagination-left .oceanwp-pagination ul.page-numbers,.pagination-left .oceanwp-pagination .page-links,.pagination-left .woocommerce-pagination ul.page-numbers,.pagination-left .woocommerce-pagination .page-links{text-align:left}.page-jump a{display:inline-block;font-size:12px;line-height:1.2;padding-bottom:3px;border-bottom:1px solid;text-transform:uppercase}.scroller-status,.infinite-scroll-last,.infinite-scroll-error{display:none}.scroller-status{margin-top:20px;text-align:center;clear:both}.scroller-status p{margin:0}.loader-ellips{font-size:12px;position:relative;width:3.5em;height:1em;margin:0 auto}.loader-ellips__dot{display:block;width:1em;height:1em;border-radius:0.5em;background-color:#333;position:absolute;animation-duration:0.5s;animation-timing-function:ease;animation-iteration-count:infinite}.loader-ellips__dot:nth-child(1),.loader-ellips__dot:nth-child(2){left:0}.loader-ellips__dot:nth-child(3){left:1.3em}.loader-ellips__dot:nth-child(4){left:2.6em}.loader-ellips__dot:nth-child(1){animation-name:reveal}.loader-ellips__dot:nth-child(2),.loader-ellips__dot:nth-child(3){animation-name:slide}.loader-ellips__dot:nth-child(4){animation-name:reveal;animation-direction:reverse}@keyframes reveal{from{transform:scale(0.001)}to{transform:scale(1)}}@keyframes slide{to{transform:translateX(1.3em)}}.infinite-scroll-nav{display:none}#respond{margin-bottom:20px}#respond form{display:inline-block;width:100%}#respond .comment-textarea,#respond .comment-form-author,#respond .comment-form-email,#respond .comment-form-url{margin-bottom:20px}#respond .comment-form-author,#respond .comment-form-email,#respond .comment-form-url{float:left;width:33.33%}#respond .comment-form-author{padding-right:10px}#respond .comment-form-email{padding:0 10px}#respond .comment-form-url{padding-left:10px}#respond input[type="text"]{width:100%}#respond .form-submit{float:right;margin-bottom:0}#comments{margin-top:30px;padding-top:30px;border-top:1px solid #f1f1f1}#comments ol{margin:0;list-style:none}#comments ol.children{margin-left:30px}#comments.empty-closed-comments{display:none}.comment-body{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:30px;padding-bottom:30px;border-bottom:1px solid #f1f1f1}.comment-body img.avatar{width:80px;height:80px;margin-right:30px;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%}.comment-body .comment-content{position:relative;width:100%}.comment-author{display:inline-block;width:100%}.comment-author .comment-link,.comment-author .comment-meta{font-weight:600;margin:5px 0 8px}.comment-author .comment-link{float:left;font-size:18px}.comment-author .comment-meta{float:right;text-align:right;font-size:10px;line-height:2.5;text-transform:uppercase;letter-spacing:0.1em}.comment-author .comment-meta .comment-reply-link,.comment-author .comment-meta .comment-edit-link{margin-left:15px}.comment-author .comment-meta .comment-reply-link{color:#13aff0}.comment-author .comment-meta .comment-reply-link:hover{color:#333}#respond #cancel-comment-reply-link{font-size:10px;color:#929292;float:right;border:2px solid #f1f1f1;padding:3px 10px;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;text-transform:uppercase;letter-spacing:0.1em}#respond #cancel-comment-reply-link:hover{color:#13aff0;border-color:#13aff0}span.required{position:relative;top:-4px;font-size:10px;margin-left:3px;color:#F00}.comment-body p{margin:0}.no-comments{text-align:right}.no-comments i{margin-right:8px}.comment-navigation{display:inline-block;width:100%}.comment-navigation .nav-links a{display:inline-block;font-size:12px;line-height:1.2;padding-bottom:3px;border-bottom:1px solid;text-transform:uppercase}.comment-navigation .nav-links .nav-previous{float:left;margin-right:1.5em}.comment-navigation .nav-links .nav-previous i{margin-right:5px}.comment-navigation .nav-links .nav-next{float:right;margin-left:1.5em}.comment-navigation .nav-links .nav-next i{margin-left:5px}@media only screen and (max-width: 767px){#comments ol.children{margin-left:0;margin-right:0}#respond .comment-form-author,#respond .comment-form-email,#respond .comment-form-url{float:none;width:100%;padding-right:0;padding:0;padding-left:0}}@media only screen and (max-width: 480px){.comment-body img{display:none}.comment-author{margin-bottom:16px}.comment-author .comment-link,.comment-author .comment-meta{float:none}}.search-results article{position:relative;width:100%;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid #e9e9e9}.search-results article .search-entry-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center}.search-results article .thumbnail{min-width:120px;margin-right:20px}.search-results article .thumbnail img{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3)}.search-results article .search-entry-title{font-size:24px;margin:0 0 6px}.search-results article .search-entry-summary p:last-child{margin-bottom:0}.search-results article .search-entry-readmore a{display:inline-block;font-size:12px;font-weight:600;line-height:1;padding-bottom:3px;border-bottom:1px solid;text-transform:uppercase;letter-spacing:0.6px}.search-results article ul{list-style:none}@media only screen and (max-width: 480px){.search-results article .thumbnail{display:none}}.site-footer{position:relative}#footer-widgets{background-color:#222;padding:30px 0;margin:0}#footer-widgets .footer-box{padding:0 15px;margin:0}#footer-widgets .footer-box .footer-widget{margin-bottom:20px}#footer-widgets .footer-box .footer-widget:last-child{margin-bottom:0}#footer-widgets .footer-box .footer-widget ul{margin:0;padding:0;list-style:none}#footer-widgets .footer-box .widget-title{color:#fff}#footer-widgets .footer-box a{color:#fff}#footer-widgets .footer-box a:hover{color:#13aff0}#footer-widgets #wp-calendar caption,#footer-widgets #wp-calendar th,#footer-widgets #wp-calendar tbody,#footer-widgets .contact-info-widget i,#footer-widgets .contact-info-widget .owp-icon,#footer-widgets .mailchimp-widget input[type="email"],#footer-widgets .posts-thumbnails-widget li,#footer-widgets .social-widget li a{border-color:#555}#footer-widgets .mailchimp-widget input[type="email"]:focus{border-color:#13aff0}#footer-widgets .tagcloud a{background-color:#222;border-color:#333}#footer-widgets .tagcloud a:hover{background-color:#444;color:#fff;border-color:#555}.parallax-footer{position:fixed;bottom:0;left:0;right:0;z-index:0}.has-parallax-footer #main{z-index:1}.has-parallax-footer:not(.boxed-layout) #main{-webkit-box-shadow:0 0 40px 0 rgba(0,0,0,0.1);-moz-box-shadow:0 0 40px 0 rgba(0,0,0,0.1);box-shadow:0 0 40px 0 rgba(0,0,0,0.1)}.has-parallax-footer:not(.separate-layout) #main{background-color:#fff}.has-parallax-footer.separate-layout #main{background-color:#f1f1f1}.boxed-layout .parallax-footer{width:1280px;left:auto;right:auto}@media only screen and (max-width: 959px){#footer-widgets .col{margin-bottom:30px}.has-parallax-footer #main{margin-bottom:0 !important}.parallax-footer{position:relative}}@media only screen and (min-width: 481px) and (max-width: 768px){#footer-widgets.tablet-1-col .footer-box{width:100%}#footer-widgets.tablet-2-col .footer-box{width:50% !important}#footer-widgets.tablet-2-col .footer-box:nth-child(3n){clear:left}#footer-widgets.tablet-3-col .footer-box{width:33.33% !important;clear:none}#footer-widgets.tablet-3-col .footer-box:nth-child(4n){clear:left}#footer-widgets.tablet-4-col .footer-box{width:25% !important}#footer-widgets.tablet-4-col .footer-box:nth-child(5n){clear:left}}@media only screen and (max-width: 480px){#footer-widgets.mobile-1-col .footer-box{width:100%}#footer-widgets.mobile-2-col .footer-box{width:50% !important}#footer-widgets.mobile-2-col .footer-box:nth-child(3n){clear:left}#footer-widgets.mobile-3-col .footer-box{width:33.33% !important;clear:none}#footer-widgets.mobile-3-col .footer-box:nth-child(4n){clear:left}#footer-widgets.mobile-4-col .footer-box{width:25% !important}#footer-widgets.mobile-4-col .footer-box:nth-child(5n){clear:left}}#footer-bottom{background-color:#1B1B1B;padding:15px 0;font-size:12px;line-height:1}#footer-bottom #footer-bottom-menu,#footer-bottom #copyright{width:50%}#footer-bottom #footer-bottom-menu{float:right;text-align:right;padding-left:15px}#footer-bottom #footer-bottom-menu ul{display:inline-block;margin:0;list-style:none;margin:0;padding:0}#footer-bottom #footer-bottom-menu li{float:left}#footer-bottom #footer-bottom-menu li:after{content:'|';margin-left:5px;margin-right:5px}#footer-bottom #footer-bottom-menu li:last-child:after{content:'';margin-left:0;margin-right:0}#footer-bottom #footer-bottom-menu a{color:#fff}#footer-bottom #footer-bottom-menu a:hover{color:#13aff0}#footer-bottom.no-footer-nav #copyright{float:none;width:100%;text-align:center;padding-left:0 !important;padding-right:0 !important}#footer-bottom #copyright{float:left;text-align:left;padding-right:15px}#footer-bottom a{color:#fff}#footer-bottom a:hover{color:#13aff0}@media only screen and (max-width: 959px){#footer-bottom #copyright,#footer-bottom #footer-bottom-menu{float:none;width:100%;padding-right:0;padding-left:0;text-align:center}#footer-bottom #footer-bottom-menu{margin-bottom:15px}#footer-bottom #footer-bottom-menu li{float:none;display:inline-block}}@media only screen and (max-width: 480px){#footer-bottom #footer-bottom-menu li{margin-bottom:8px}}#scroll-top{display:none;opacity:0;position:fixed;right:20px;bottom:20px;width:40px;height:40px;line-height:40px;background-color:rgba(0,0,0,0.4);color:#fff;font-size:18px;cursor:pointer;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;border-radius:2px;text-align:center;z-index:100;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#scroll-top>span{line-height:inherit;vertical-align:top}#scroll-top:hover{background-color:rgba(0,0,0,0.8)}#scroll-top.scroll-top-left{left:20px;right:auto}#scroll-top .owp-icon{vertical-align:initial}#scroll-top .owp-icon use{stroke:#fff}@media only screen and (max-width: 480px){#scroll-top{right:10px;bottom:10px;width:26px;height:26px;line-height:24px;font-size:14px}}.error404-content{position:relative;margin:0 auto;text-align:center}.error404-content .error-title{font-size:46px;margin:0 0 25px}.error404-content .error-text{font-size:18px;font-weight:300;margin-bottom:35px}.error404-content .searchform{max-width:390px;margin:0 auto}.error404-content .error-btn{font-size:13px;padding:14px 26px;margin-top:60px}.error404-content .error-btn:hover{color:#fff}@media only screen and (max-width: 480px){.error404-content .searchform{width:100%}.error404-content .error-btn{margin-top:40px}}.fl-builder-edit #site-header,.fl-builder-edit.has-transparent-header #site-header,.elementor-editor-active #site-header{z-index:1}.fl-builder-edit #main,.elementor-editor-active #main{z-index:inherit !important}#site-header .elementor-section-wrap{height:auto !important}.elementor-widget-image .elementor-image img{display:inline-block}.elementor-slick-slider .slick-prev,.elementor-slick-slider .slick-next{height:auto}.pswp__button:hover{background-color:transparent}div.motopress-bootstrap-dropdown .dropdown-menu{display:block !important;position:static !important}.pac-container{z-index:100003}.no-height .elementor-column{min-height:0}body .elementor-element.elementor-wc-products ul.products li.product .onsale{padding:8px 12px}body .elementor-element.elementor-wc-products ul.products li.product.circle-sale .onsale{padding:0}@media only screen and (max-width: 959px){.elementor-element.elementor-wc-products ul.products li.product{width:auto !important}}.elementor-editor-active .parallax-footer{z-index:-1}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input[type="checkbox"]{display:inline-block}#sidr-close,.sidebar-mobile #mobile-nav{display:none}#sidr{display:block;position:fixed;top:0;height:100%;z-index:999999;width:300px;max-width:100%;padding-bottom:30px;overflow-x:hidden;overflow-y:auto;font-size:15px;background-color:#fff;color:#555;-webkit-touch-callout:none;user-select:none;-webkit-overflow-scrolling:touch}#sidr ul{margin:0;list-style:none}.sidr.right{left:auto;right:-300px}.sidr.left{left:-300px;right:auto}.sidr a{color:#555}.sidr a:hover,.sidr-class-dropdown-toggle:hover,.sidr-class-menu-item-has-children.active>a,.sidr-class-menu-item-has-children.active>a>.sidr-class-dropdown-toggle{color:#13aff0}.sidr-class-clr:after{content:"";display:block;visibility:hidden;clear:both;zoom:1;height:0}a.sidr-class-toggle-sidr-close{display:block;background-color:#f8f8f8;color:#333;font-size:13px;font-weight:600;line-height:1;padding:20px;letter-spacing:0.6px;text-transform:uppercase}a.sidr-class-toggle-sidr-close i{display:inline-block;padding-right:8px;margin:0;width:auto;height:auto;line-height:1;vertical-align:bottom}a.sidr-class-toggle-sidr-close .owp-icon{margin-right:8px}.sidr-class-dropdown-menu ul,.sidr-class-fs-dropdown-menu ul{display:none;border-top:1px solid rgba(0,0,0,0.035);margin-left:0;background-color:rgba(0,0,0,0.02)}.sidr-class-dropdown-menu li,.sidr-class-fs-dropdown-menu li{border-bottom:1px solid rgba(0,0,0,0.035)}.sidr-class-dropdown-menu.sidr-class-left-menu li:last-child,.sidr-class-fs-dropdown-menu.sidr-class-left-menu li:last-child{border-bottom:none}.sidr-class-dropdown-menu>li:first-child,.sidr-class-fs-dropdown-menu>li:first-child{border-top:1px solid rgba(0,0,0,0.035)}.sidr-class-dropdown-menu li a,.sidr-class-fs-dropdown-menu li a{padding:12px 20px;display:block;position:relative}.sidr-class-dropdown-menu li a:focus,.sidr-class-fs-dropdown-menu li a:focus{outline:1px dashed rgba(0,0,0,0.3)}.sidr-class-dropdown-menu li a.sidr-class-sf-with-ul,.sidr-class-fs-dropdown-menu li a.sidr-class-sf-with-ul{padding-right:40px}.sidr-class-dropdown-menu ul li:last-child,.sidr-class-fs-dropdown-menu ul li:last-child{border:none}.sidr-class-top-bar-menu>li:first-child{border-top:none}.sidr-class-menu-item-has-children{position:relative}.sidr-class-dropdown-menu li.sidr-class-menu-item-has-children>a{padding-right:60px}.sidr-class-dropdown-toggle{font-size:11px;height:100%;width:60px;position:absolute;right:0;top:0;cursor:pointer;color:#555;text-align:right;padding-right:20px;text-align:center;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.sidr-class-dropdown-toggle:focus{outline:1px dashed rgba(0,0,0,0.3)}.sidr-class-dropdown-toggle:before{font-family:"Font Awesome 5 Free";content:"+";font-size:20px;position:absolute;top:50%;left:50%;width:30px;height:30px;line-height:30px;margin-top:-15px;margin-left:-15px}.sidr-class-dropdown-menu li.active>a>.sidr-class-dropdown-toggle:before{content:"-"}.sidr-class-dropdown-menu ul a:before{font-family:"Font Awesome 5 Free";content:"\f105";display:inline-block;margin:0 10px;font-weight:600}.sidr-class-dropdown-menu ul ul a:before{margin-left:20px}.sidr-class-dropdown-menu ul ul ul a:before{margin-left:40px}.sidr-class-middle-site-logo,.sidr #searchform-header-replace-close,.sidr #sidr-id-searchform-overlay,.sidr .sidr-class-nav-arrow,.sidr-class-sidebar-box,.sidr-class-mega-cat .sidr-class-dropdown-toggle,.sidr-class-mega-cat .sidr-class-megamenu,.sidr-class-elementor{display:none !important}.sidr-class-dropdown-menu li.sidr-class-menu-item-has-children.sidr-class-mega-cat>a{padding-right:20px}.sidr-class-dropdown-menu a i{font-size:inherit !important;vertical-align:initial !important;margin-right:10px}.sidr-class-dropdown-menu a i.after{margin-right:0;margin-left:10px}.sidr-class-wpml-ls-flag{margin-right:10px;vertical-align:baseline}.oceanwp-sidr-overlay{position:fixed;top:0;left:0;height:100%;width:100%;background:rgba(0,0,0,0.3);z-index:99}#mobile-menu-search,.sidr-class-woo-cart-link,.sidr-class-search-toggle-li,#sidr-id-searchform-dropdown,#sidr-id-searchform-header-replace{display:none}.sidr-class-mobile-searchform{position:relative;margin:30px 20px 0}.sidr-class-mobile-searchform input{padding:6px 45px 6px 12px !important;margin-top:0 !important;-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}.sidr-class-mobile-searchform button{display:block;position:absolute;right:10px;height:30px;line-height:30px;width:30px;padding:0;text-align:center;top:50%;margin-top:-15px;background-color:transparent !important;color:#555;border:0;-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}.sidr-class-mobile-searchform button:hover{color:#222}.sidr-class-social-menu-inner ul{display:table;width:100%;text-align:center;table-layout:fixed}.sidr-class-social-menu-inner ul li{display:table-cell}.sidr-class-social-menu-inner ul li a{display:block;padding:12px 10px}.admin-bar #sidr,.admin-bar .oceanwp-sidr-overlay{top:32px;height:-webkit-calc(100% - 32px);height:calc(100% - 32px)}@media screen and (max-width: 782px){.admin-bar #sidr,.admin-bar .oceanwp-sidr-overlay{top:46px;height:-webkit-calc(100% - 46px);height:calc(100% - 46px)}}@media screen and (max-width: 600px){#wpadminbar{position:fixed}}.ps{overflow:hidden !important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear, opacity .2s linear;-webkit-transition:background-color .2s linear, opacity .2s linear;height:15px;bottom:0px;position:absolute}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear, opacity .2s linear;-webkit-transition:background-color .2s linear, opacity .2s linear;width:15px;right:0;position:absolute}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:0.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:#eee;opacity:0.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear, height .2s ease-in-out;-webkit-transition:background-color .2s linear, height .2s ease-in-out;height:6px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear, width .2s ease-in-out;-webkit-transition:background-color .2s linear, width .2s ease-in-out;width:6px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:11px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto !important}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.ps{overflow:auto !important}} .flickity-enabled{position:relative}.flickity-enabled:focus{outline:none}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-button{position:absolute;background:rgba(255,255,255,0.75);border:none;color:#333}.flickity-button:hover{background:white;cursor:pointer}.flickity-button:focus{outline:none;box-shadow:0 0 0 5px #19F}.flickity-button:active{opacity:0.6}.flickity-button:disabled{opacity:0.3;cursor:auto;pointer-events:none}.flickity-button-icon{fill:currentColor}.flickity-prev-next-button{top:50%;width:44px;height:44px;border-radius:50%;transform:translateY(-50%)}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button .flickity-button-icon{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-page-dots{position:absolute;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:10px;height:10px;margin:0 8px;background:#333;border-radius:50%;opacity:0.25;cursor:pointer}.flickity-page-dots .dot.is-selected{opacity:1}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:0.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial, Baskerville, monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:0.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:0.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-fade.mfp-bg{opacity:0;-webkit-transition:all 0.15s ease-out;-moz-transition:all 0.15s ease-out;transition:all 0.15s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:0.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;-webkit-transition:all 0.15s ease-out;-moz-transition:all 0.15s ease-out;transition:all 0.15s ease-out}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-with-zoom .mfp-container,.mfp-with-zoom.mfp-bg{opacity:0;-webkit-backface-visibility:hidden;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.mfp-with-zoom.mfp-ready .mfp-container{opacity:1}.mfp-with-zoom.mfp-ready.mfp-bg{opacity:0.8}.mfp-with-zoom.mfp-removing .mfp-container,.mfp-with-zoom.mfp-removing.mfp-bg{opacity:0}@media only screen and (max-width: 959px){body.default-breakpoint #site-logo.has-responsive-logo .custom-logo-link{display:none}body.default-breakpoint #site-logo.has-responsive-logo .responsive-logo-link{display:block}body.default-breakpoint .is-sticky #site-logo.has-responsive-logo .sticky-logo-link{display:block}body.default-breakpoint .is-sticky #site-logo.has-sticky-logo .responsive-logo-link{display:none}body.default-breakpoint #site-header.center-header #site-logo{display:block}body.default-breakpoint #top-bar-nav,body.default-breakpoint #site-navigation-wrap,body.default-breakpoint .oceanwp-social-menu,body.default-breakpoint .after-header-content{display:none}body.default-breakpoint .center-logo #site-logo{float:none;position:absolute;left:50%;padding:0;-webkit-transform:translateX(-50%);transform:translateX(-50%)}body.default-breakpoint .oceanwp-mobile-menu-icon{display:inline-flex}body.default-breakpoint #top-bar.has-no-content #top-bar-social{text-align:center}body.default-breakpoint #top-bar.has-no-content #top-bar-social.top-bar-left,body.default-breakpoint #top-bar.has-no-content #top-bar-social.top-bar-right{position:inherit;left:auto;right:auto;float:none;height:auto;line-height:1.5em;margin-top:0}body.default-breakpoint #top-bar.has-no-content #top-bar-social li{float:none;display:inline-block}body.default-breakpoint.vertical-header-style #outer-wrap{margin:0 !important}body.default-breakpoint #site-header.vertical-header{position:relative;width:100%;left:0 !important;right:0 !important}body.default-breakpoint #site-header.vertical-header .has-template>#site-logo{display:block}body.default-breakpoint #site-header.vertical-header #site-header-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;padding:0;max-width:90%}body.default-breakpoint #site-header.vertical-header #site-header-inner>*:not(.oceanwp-mobile-menu-icon){display:none}body.default-breakpoint #site-header.vertical-header #site-header-inner>*{padding:0 !important}body.default-breakpoint #site-header.vertical-header #site-header-inner #site-logo{display:block;margin:0;width:50%;text-align:left}body.default-breakpoint #site-header.vertical-header #site-header-inner .oceanwp-mobile-menu-icon{width:50%;text-align:right}body.default-breakpoint #site-header.vertical-header .vertical-toggle{display:none}body.default-breakpoint .is-sticky #site-header.vertical-header{position:fixed;height:auto}body.default-breakpoint.vh-closed .vertical-toggle{display:none}body.default-breakpoint .owp-cart-overlay{display:none !important}}@media only screen and (max-width: 767px){.hide-tablet-mobile{display:none !important}}@media only screen and (max-width: 480px){.hide-mobile{display:none !important}}@media only screen and (min-width: 481px) and (max-width: 767px){.hide-tablet{display:none !important}}