@keyframes bounce {
20%,
53%,
80%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1);
transform: translate3d(0, 0, 0)
}
40%,
43% {
animation-timing-function: cubic-bezier(.755, .050, .855, .060);
transform: translate3d(0, -30px, 0)
}
70% {
animation-timing-function: cubic-bezier(.755, .050, .855, .060);
transform: translate3d(0, -15px, 0)
}
90% {
transform: translate3d(0, -4px, 0)
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom
}
@keyframes flash {
50%,
from,
to {
opacity: 1
}
25%,
75% {
opacity: 0
}
}
.flash {
animation-name: flash
}
@keyframes pulse {
from,
to {
transform: scale3d(1, 1, 1)
}
50% {
transform: scale3d(1.05, 1.05, 1.05)
}
}
.pulse {
animation-name: pulse
}
@keyframes rubberBand {
from,
to {
transform: scale3d(1, 1, 1)
}
30% {
transform: scale3d(1.25, .75, 1)
}
40% {
transform: scale3d(.75, 1.25, 1)
}
50% {
transform: scale3d(1.15, .85, 1)
}
65% {
transform: scale3d(.95, 1.05, 1)
}
75% {
transform: scale3d(1.05, .95, 1)
}
}
.rubberBand {
animation-name: rubberBand
}
@keyframes shake {
from,
to {
transform: translate3d(0, 0, 0)
}
10%,
30%,
50%,
70%,
90% {
transform: translate3d(-10px, 0, 0)
}
20%,
40%,
60%,
80% {
transform: translate3d(10px, 0, 0)
}
}
.shake {
animation-name: shake
}
@keyframes headShake {
0% {
transform: translateX(0)
}
6.5% {
transform: translateX(-6px) rotateY(-9deg)
}
18.5% {
transform: translateX(5px) rotateY(7deg)
}
31.5% {
transform: translateX(-3px) rotateY(-5deg)
}
43.5% {
transform: translateX(2px) rotateY(3deg)
}
50% {
transform: translateX(0)
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg)
}
40% {
transform: rotate3d(0, 0, 1, -10deg)
}
60% {
transform: rotate3d(0, 0, 1, 5deg)
}
80% {
transform: rotate3d(0, 0, 1, -5deg)
}
to {
transform: rotate3d(0, 0, 1, 0deg)
}
}
.swing {
transform-origin: top center;
animation-name: swing
}
@keyframes tada {
from,
to {
transform: scale3d(1, 1, 1)
}
10%,
20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
}
30%,
50%,
70%,
90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%,
60%,
80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
}
.tada {
animation-name: tada
}
@keyframes wobble {
from,
to {
transform: none
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
}
.wobble {
animation-name: wobble
}
@keyframes jello {
11.1%,
from,
to {
transform: none
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
transform: skewX(-.78125deg) skewY(-.78125deg)
}
77.7% {
transform: skewX(.390625deg) skewY(.390625deg)
}
88.8% {
transform: skewX(-.1953125deg) skewY(-.1953125deg)
}
}
.jello {
animation-name: jello;
transform-origin: center
}
@keyframes bounceIn {
20%,
40%,
60%,
80%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3)
}
20% {
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
transform: scale3d(.9, .9, .9)
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03)
}
80% {
transform: scale3d(.97, .97, .97)
}
to {
opacity: 1;
transform: scale3d(1, 1, 1)
}
}
.bounceIn {
animation-name: bounceIn
}
@keyframes bounceInDown {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0)
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0)
}
75% {
transform: translate3d(0, -10px, 0)
}
90% {
transform: translate3d(0, 5px, 0)
}
to {
transform: none
}
}
.bounceInDown {
animation-name: bounceInDown
}
@keyframes bounceInLeft {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0)
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0)
}
75% {
transform: translate3d(-10px, 0, 0)
}
90% {
transform: translate3d(5px, 0, 0)
}
to {
transform: none
}
}
.bounceInLeft {
animation-name: bounceInLeft
}
@keyframes bounceInRight {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0)
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0)
}
75% {
transform: translate3d(10px, 0, 0)
}
90% {
transform: translate3d(-5px, 0, 0)
}
to {
transform: none
}
}
.bounceInRight {
animation-name: bounceInRight
}
@keyframes bounceInUp {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0)
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0)
}
75% {
transform: translate3d(0, 10px, 0)
}
90% {
transform: translate3d(0, -5px, 0)
}
to {
transform: translate3d(0, 0, 0)
}
}
.bounceInUp {
animation-name: bounceInUp
}
@keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
.fadeIn {
animation-name: fadeIn
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -30%, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInDown {
animation-name: fadeInDown
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-30%, 0, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInLeft {
animation-name: fadeInLeft
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(30%, 0, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInRight {
animation-name: fadeInRight
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 30%, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInUp {
animation-name: fadeInUp
}
@keyframes lightSpeedIn {
from {
transform: translate3d(30%, 0, 0) skewX(-30deg);
opacity: 0
}
60% {
transform: skewX(20deg);
opacity: 1
}
80% {
transform: skewX(-5deg);
opacity: 1
}
to {
transform: none;
opacity: 1
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0
}
to {
transform-origin: center;
transform: none;
opacity: 1
}
}
.rotateIn {
animation-name: rotateIn
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1
}
}
.rotateInDownRight {
animation-name: rotateInDownRight
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1
}
}
.rotateInUpRight {
animation-name: rotateInUpRight
}
@keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-30%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
to {
opacity: 1;
transform: none
}
}
.rollIn {
animation-name: rollIn
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
.zoomIn {
animation-name: zoomIn
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInDown {
animation-name: zoomInDown
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInLeft {
animation-name: zoomInLeft
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInRight {
animation-name: zoomInRight
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInUp {
animation-name: zoomInUp
}
@keyframes slideInDown {
from {
transform: translate3d(0, -30%, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInDown {
animation-name: slideInDown
}
@keyframes slideInLeft {
from {
transform: translate3d(-30%, 0, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInLeft {
animation-name: slideInLeft
}
@keyframes slideInRight {
from {
transform: translate3d(30%, 0, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInRight {
animation-name: slideInRight
}
@keyframes slideInUp {
from {
transform: translate3d(0, 30%, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInUp {
animation-name: slideInUp
}
.elementor-animation-grow {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-grow:active,
.elementor-animation-grow:focus,
.elementor-animation-grow:hover {
transform: scale(1.1)
}
.elementor-animation-shrink {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-shrink:active,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:hover {
transform: scale(0.9)
}
@keyframes elementor-animation-pulse {
25% {
transform: scale(1.1)
}
75% {
transform: scale(0.9)
}
}
.elementor-animation-pulse:active,
.elementor-animation-pulse:focus,
.elementor-animation-pulse:hover {
animation-name: elementor-animation-pulse;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite
}
@keyframes elementor-animation-pulse-grow {
to {
transform: scale(1.1)
}
}
.elementor-animation-pulse-grow:active,
.elementor-animation-pulse-grow:focus,
.elementor-animation-pulse-grow:hover {
animation-name: elementor-animation-pulse-grow;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate
}
@keyframes elementor-animation-pulse-shrink {
to {
transform: scale(0.9)
}
}
.elementor-animation-pulse-shrink:active,
.elementor-animation-pulse-shrink:focus,
.elementor-animation-pulse-shrink:hover {
animation-name: elementor-animation-pulse-shrink;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate
}
@keyframes elementor-animation-push {
50% {
transform: scale(0.8)
}
30% {
transform: scale(1)
}
}
.elementor-animation-push:active,
.elementor-animation-push:focus,
.elementor-animation-push:hover {
animation-name: elementor-animation-push;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: 1
}
@keyframes elementor-animation-pop {
50% {
transform: scale(1.2)
}
}
.elementor-animation-pop:active,
.elementor-animation-pop:focus,
.elementor-animation-pop:hover {
animation-name: elementor-animation-pop;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: 1
}
.elementor-animation-bounce-in {
transition-duration: .5s
}
.elementor-animation-bounce-in:active,
.elementor-animation-bounce-in:focus,
.elementor-animation-bounce-in:hover {
transform: scale(1.2);
transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36)
}
.elementor-animation-bounce-out {
transition-duration: .5s
}
.elementor-animation-bounce-out:active,
.elementor-animation-bounce-out:focus,
.elementor-animation-bounce-out:hover {
transform: scale(0.8);
transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36)
}
.elementor-animation-rotate {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-rotate:active,
.elementor-animation-rotate:focus,
.elementor-animation-rotate:hover {
transform: rotate(4deg)
}
.elementor-animation-grow-rotate {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-grow-rotate:active,
.elementor-animation-grow-rotate:focus,
.elementor-animation-grow-rotate:hover {
transform: scale(1.1) rotate(4deg)
}
.elementor-animation-float {
transition-duration: .3s;
transition-property: transform;
transition-timing-function: ease-out
}
.elementor-animation-float:active,
.elementor-animation-float:focus,
.elementor-animation-float:hover {
transform: translateY(-8px)
}
.elementor-animation-sink {
transition-duration: .3s;
transition-property: transform;
transition-timing-function: ease-out
}
.elementor-animation-sink:active,
.elementor-animation-sink:focus,
.elementor-animation-sink:hover {
transform: translateY(8px)
}
@keyframes elementor-animation-bob {
0% {
transform: translateY(-8px)
}
50% {
transform: translateY(-4px)
}
30% {
transform: translateY(-8px)
}
}
@keyframes elementor-animation-bob-float {
30% {
transform: translateY(-8px)
}
}
.elementor-animation-bob:active,
.elementor-animation-bob:focus,
.elementor-animation-bob:hover {
animation-name: elementor-animation-bob-float, elementor-animation-bob;
animation-duration: .3s, 1.5s;
animation-delay: 0s, .3s;
animation-timing-function: ease-out, ease-in-out;
animation-iteration-count: 1, infinite;
animation-fill-mode: forwards;
animation-direction: normal, alternate
}
@keyframes elementor-animation-hang {
0% {
transform: translateY(8px)
}
50% {
transform: translateY(4px)
}
30% {
transform: translateY(8px)
}
}
@keyframes elementor-animation-hang-sink {
30% {
transform: translateY(8px)
}
}
.elementor-animation-hang:active,
.elementor-animation-hang:focus,
.elementor-animation-hang:hover {
animation-name: elementor-animation-hang-sink, elementor-animation-hang;
animation-duration: .3s, 1.5s;
animation-delay: 0s, .3s;
animation-timing-function: ease-out, ease-in-out;
animation-iteration-count: 1, infinite;
animation-fill-mode: forwards;
animation-direction: normal, alternate
}
.elementor-animation-skew {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-skew:active,
.elementor-animation-skew:focus,
.elementor-animation-skew:hover {
transform: skew(-10deg)
}
.elementor-animation-skew-forward {
transition-duration: .3s;
transition-property: transform;
transform-origin: 0 30%
}
.elementor-animation-skew-forward:active,
.elementor-animation-skew-forward:focus,
.elementor-animation-skew-forward:hover {
transform: skew(-10deg)
}
.elementor-animation-skew-backward {
transition-duration: .3s;
transition-property: transform;
transform-origin: 0 30%
}
.elementor-animation-skew-backward:active,
.elementor-animation-skew-backward:focus,
.elementor-animation-skew-backward:hover {
transform: skew(10deg)
}
@keyframes elementor-animation-wobble-vertical {
16.65% {
transform: translateY(8px)
}
33.3% {
transform: translateY(-6px)
}
49.95% {
transform: translateY(4px)
}
66.6% {
transform: translateY(-2px)
}
83.25% {
transform: translateY(1px)
}
30% {
transform: translateY(0)
}
}
.elementor-animation-wobble-vertical:active,
.elementor-animation-wobble-vertical:focus,
.elementor-animation-wobble-vertical:hover {
animation-name: elementor-animation-wobble-vertical;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-horizontal {
16.65% {
transform: translateX(8px)
}
33.3% {
transform: translateX(-6px)
}
49.95% {
transform: translateX(4px)
}
66.6% {
transform: translateX(-2px)
}
83.25% {
transform: translateX(1px)
}
30% {
transform: translateX(0)
}
}
.elementor-animation-wobble-horizontal:active,
.elementor-animation-wobble-horizontal:focus,
.elementor-animation-wobble-horizontal:hover {
animation-name: elementor-animation-wobble-horizontal;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-to-bottom-right {
16.65% {
transform: translate(8px, 8px)
}
33.3% {
transform: translate(-6px, -6px)
}
49.95% {
transform: translate(4px, 4px)
}
66.6% {
transform: translate(-2px, -2px)
}
83.25% {
transform: translate(1px, 1px)
}
30% {
transform: translate(0, 0)
}
}
.elementor-animation-wobble-to-bottom-right:active,
.elementor-animation-wobble-to-bottom-right:focus,
.elementor-animation-wobble-to-bottom-right:hover {
animation-name: elementor-animation-wobble-to-bottom-right;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-to-top-right {
16.65% {
transform: translate(8px, -8px)
}
33.3% {
transform: translate(-6px, 6px)
}
49.95% {
transform: translate(4px, -4px)
}
66.6% {
transform: translate(-2px, 2px)
}
83.25% {
transform: translate(1px, -1px)
}
30% {
transform: translate(0, 0)
}
}
.elementor-animation-wobble-to-top-right:active,
.elementor-animation-wobble-to-top-right:focus,
.elementor-animation-wobble-to-top-right:hover {
animation-name: elementor-animation-wobble-to-top-right;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-top {
16.65% {
transform: skew(-12deg)
}
33.3% {
transform: skew(10deg)
}
49.95% {
transform: skew(-6deg)
}
66.6% {
transform: skew(4deg)
}
83.25% {
transform: skew(-2deg)
}
30% {
transform: skew(0)
}
}
.elementor-animation-wobble-top {
transform-origin: 0 30%
}
.elementor-animation-wobble-top:active,
.elementor-animation-wobble-top:focus,
.elementor-animation-wobble-top:hover {
animation-name: elementor-animation-wobble-top;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-bottom {
16.65% {
transform: skew(-12deg)
}
33.3% {
transform: skew(10deg)
}
49.95% {
transform: skew(-6deg)
}
66.6% {
transform: skew(4deg)
}
83.25% {
transform: skew(-2deg)
}
30% {
transform: skew(0)
}
}
.elementor-animation-wobble-bottom {
transform-origin: 30% 0
}
.elementor-animation-wobble-bottom:active,
.elementor-animation-wobble-bottom:focus,
.elementor-animation-wobble-bottom:hover {
animation-name: elementor-animation-wobble-bottom;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-skew {
16.65% {
transform: skew(-12deg)
}
33.3% {
transform: skew(10deg)
}
49.95% {
transform: skew(-6deg)
}
66.6% {
transform: skew(4deg)
}
83.25% {
transform: skew(-2deg)
}
30% {
transform: skew(0)
}
}
.elementor-animation-wobble-skew:active,
.elementor-animation-wobble-skew:focus,
.elementor-animation-wobble-skew:hover {
animation-name: elementor-animation-wobble-skew;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-buzz {
50% {
transform: translateX(3px) rotate(2deg)
}
30% {
transform: translateX(-3px) rotate(-2deg)
}
}
.elementor-animation-buzz:active,
.elementor-animation-buzz:focus,
.elementor-animation-buzz:hover {
animation-name: elementor-animation-buzz;
animation-duration: .15s;
animation-timing-function: linear;
animation-iteration-count: infinite
}
@keyframes elementor-animation-buzz-out {
10% {
transform: translateX(3px) rotate(2deg)
}
20% {
transform: translateX(-3px) rotate(-2deg)
}
30% {
transform: translateX(3px) rotate(2deg)
}
40% {
transform: translateX(-3px) rotate(-2deg)
}
50% {
transform: translateX(2px) rotate(1deg)
}
60% {
transform: translateX(-2px) rotate(-1deg)
}
70% {
transform: translateX(2px) rotate(1deg)
}
80% {
transform: translateX(-2px) rotate(-1deg)
}
90% {
transform: translateX(1px) rotate(0)
}
30% {
transform: translateX(-1px) rotate(0)
}
}
.elementor-animation-buzz-out:active,
.elementor-animation-buzz-out:focus,
.elementor-animation-buzz-out:hover {
animation-name: elementor-animation-buzz-out;
animation-duration: .75s;
animation-timing-function: linear;
animation-iteration-count: 1
}.slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after {
display: table;
content: "";
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}  .slick-prev,
.slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
width: 20px;
height: 20px;
padding: 0;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
color: transparent;
outline: none;
background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
font-family: "slick";
font-size: 20px;
line-height: 1;
opacity: 0.75;
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
left: -25px;
}
[dir="rtl"] .slick-prev {
right: -25px;
left: auto;
}
.slick-prev:before {
content: "←";
}
[dir="rtl"] .slick-prev:before {
content: "→";
}
.slick-next {
right: -25px;
}
[dir="rtl"] .slick-next {
right: auto;
left: -25px;
}
.slick-next:before {
content: "→";
}
[dir="rtl"] .slick-next:before {
content: "←";
} .slick-dotted.slick-slider {
margin-bottom: 30px;
}
.slick-dots {
position: absolute;
bottom: -25px;
display: block;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
.slick-dots li {
position: relative;
display: inline-block;
width: 20px;
height: 20px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 20px;
height: 20px;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
opacity: 1;
}
.slick-dots li button:before {
font-family: "slick";
font-size: 6px;
line-height: 20px;
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
content: "•";
text-align: center;
opacity: 0.25;
color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
opacity: 0.75;
color: black;
}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//novosite.distrim.pt/wp-content/plugins/rr-addons/assets/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.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; } }.elementor-wrapper.elementor-open-lightbox {
position: relative;
}
.elementor-wrapper.elementor-open-lightbox:after {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000;
content: "";
border-radius: 10px;
z-index: 1;
opacity: 0.2;
}
.elementor-custom-embed-play {
z-index: 2;
}
.elementor-widget-text-editor .elementor-drop-cap {
line-height: 0;
}
.elementor-social-icon {
display: inline-flex !important;
} ul.rr-addons-breadcrumbs {
display: block;
margin: 0;
padding: 0;
list-style: none;
}
ul.rr-addons-breadcrumbs li {
display: inline-block;
margin-right: 15px;
}
ul.rr-addons-breadcrumbs li:last-child {
margin: 0;
}
ul.rr-addons-breadcrumbs li a,
ul.rr-addons-breadcrumbs li span.rr-addons-breadcrumbs-text,
ul.rr-addons-breadcrumbs li span.rr-addons-breadcrumbs-separator-icon {
display: block;
}
ul.rr-addons-breadcrumbs li span.rr-addons-breadcrumbs-text {
-webkit-transition: all .4s;
transition: all .4s;
}
span.rr-addons-breadcrumbs-home-icon {
margin-right: 10px;
} .rr-addons-main-menu-wrap.menu-align-end {
justify-content: flex-end;
}
.rr-addons-main-menu-wrap.menu-align-center {
justify-content: center;
}
.rr-addons-main-menu-wrap.menu-align-start {
justify-content: flex-start;
} span.content {
margin-top: 4px;
}
span.icon-after.btn-icon {
margin-top: 5px;
}
a.rr-addons-btn,
.rr-addons-btn {
background: var(--accent-color);
line-height: 25px;
font-size: 17px;
padding-bottom: 5px;
position: relative;
display: inline-flex;
cursor: pointer;
justify-content: center;
color: #fff;
padding: 15px 45px;
border-radius: 5px;
-webkit-transition-duration: 0.50s;
transition-duration: 0.50s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
a.rr-addons-btn.btn-type-boxed {
background-color: var(--accent-color);
color: #fff;
letter-spacing: -0.53px;
font-weight: 500;
line-height: 24px;
padding: 20px 40px 15px;
border-radius: 0px;
display: inline-flex;
border-color: transparent;
align-items: center;
} .rr-addons-btn-style1-bottom,
.rr-addons-btn-style1-top,
.rr-addons-btn-style1-right,
.rr-addons-btn-style1-left,
.rr-addons-btn-style2-shutouthor,
.rr-addons-btn-style2-shutoutver,
.rr-addons-btn-style2-shutinhor,
.rr-addons-btn-style2-shutinver,
.rr-addons-btn-style2-scshutouthor,
.rr-addons-btn-style2-scshutoutver,
.rr-addons-btn-style2-dshutinhor,
.rr-addons-btn-style2-dshutinver,
.rr-addons-btn-style3-radialin,
.rr-addons-btn-style3-radialout,
.rr-addons-btn-style3-rectin,
.rr-addons-btn-style3-rectout {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition: all 0.3s ease-in-out !important;
-moz-transition: all 0.3s ease-in-out !important;
-ms-transition: all 0.3s ease-in-out !important;
-o-transition: all 0.3s ease-in-out !important;
transition: all 0.3s ease-in-out !important;
}
.rr-addons-btn-style1-bottom:before,
.rr-addons-btn-style1-top:before,
.rr-addons-btn-style1-right:before,
.rr-addons-btn-style1-left:before,
.rr-addons-btn-style2-shutinhor:before,
.rr-addons-btn-style2-shutinver:before,
.rr-addons-btn-style2-shutouthor:before,
.rr-addons-btn-style2-shutoutver:before,
.rr-addons-btn-style2-scshutouthor:before,
.rr-addons-btn-style2-scshutoutver:before,
.rr-addons-btn-style2-dshutinhor:before,
.rr-addons-btn-style2-dshutinver:before,
.rr-addons-btn-style3-radialin:before,
.rr-addons-btn-style3-radialout:before,
.rr-addons-btn-style3-rectin:before,
.rr-addons-btn-style3-rectout:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
-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.50s;
transition-duration: 0.50s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.rr-addons-btn-style3-radialin:before,
.rr-addons-btn-style3-radialout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
}
.rr-addons-btn-style3-radialin:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.rr-addons-btn-style3-rectin:before,
.rr-addons-btn-style3-rectout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transform: scale(1);
transform: scale(1);
}
.rr-addons-btn-style3-rectout:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.rr-addons-btn-style3-rectout:hover:before {
-webkit-transform: scale(1);
transform: scale(1);
}
.rr-addons-btn-style3-rectin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.rr-addons-btn-style3-radialout:hover:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.rr-addons-btn-style3-radialin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.rr-addons-btn-style1-top:before {
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
.rr-addons-btn-style1-right:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
}
.rr-addons-btn-style1-left:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.rr-addons-btn-style2-shutouthor:before,
.rr-addons-btn-style2-scshutoutver:before {
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.rr-addons-btn-style2-shutoutver:before,
.rr-addons-btn-style2-scshutouthor:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.rr-addons-btn-style2-shutinhor:before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.rr-addons-btn-style2-shutinver:before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.rr-addons-btn-style1-bottom:hover:before,
.rr-addons-btn-style1-top:hover:before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.rr-addons-btn-style1-left:hover:before,
.rr-addons-btn-style1-right:hover:before,
.rr-addons-btn-style2-shutouthor:hover:before,
.rr-addons-btn-style2-shutoutver:hover:before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.rr-addons-btn-style2-shutinhor:hover:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.rr-addons-btn-style2-shutinver:hover:before {
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.rr-addons-btn-style2-scshutouthor:hover:before {
-webkit-transform: scaleX(0.9);
transform: scaleX(0.9);
}
.rr-addons-btn-style2-scshutoutver:hover:before {
-webkit-transform: scaleY(0.8);
transform: scaleY(0.8);
} .rr-addons-btn-style2-dshutinhor:before,
.rr-addons-btn-style2-dshutinver:before {
top: 50%;
left: 50%;
width: 120%;
height: 0%;
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: all;
transition-property: all;
}
.rr-addons-btn-style2-dshutinver:before {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.rr-addons-btn-style2-dshutinhor:hover:before,
.rr-addons-btn-style2-dshutinver:hover:before {
height: 220%;
} .rr-addons-btn.style-one {
display: inline-block;
overflow: hidden;
transition: all 0.2s linear 0s;
}
.rr-addons-btn.style-one:before {
content: "\f061";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 15px;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 0;
opacity: 0;
height: 100%;
width: 40px;
transform: translateX(100%);
transition: all 0.2s linear 0s;
}
.rr-addons-btn.style-one:hover {
text-indent: -20px;
}
.rr-addons-btn.style-one:hover:before {
opacity: 1;
text-indent: 0px;
transform: translateX(-25%);
} .rr-addons-btn.style-two {
display: inline-block;
position: relative;
cursor: pointer;
}
.rr-addons-btn.style-two .content {
display: block;
}
.rr-addons-btn.style-two::before,
.rr-addons-btn.style-two::after {
content: "";
width: 0;
height: 2px;
position: absolute;
transition: all 0.2s linear;
background: #5454D4;
}
.rr-addons-btn.style-two .content::before,
.rr-addons-btn.style-two .content::after {
content: "";
width: 2px;
height: 0;
position: absolute;
transition: all 0.2s linear;
background: #5454D4;
}
.rr-addons-btn.style-two::before {
right: 0;
top: 0;
}
.rr-addons-btn.style-two::after {
left: 0;
bottom: 0;
}
.rr-addons-btn.style-two:hover::before,
.rr-addons-btn.style-two:hover::after {
width: 100%;
}
.rr-addons-btn.style-two:hover .content::before,
.rr-addons-btn.style-two:hover ::after {
height: 100%;
}
.rr-addons-btn.style-two::before,
.rr-addons-btn.style-two::after {
transition-delay: 0.2s;
}
.rr-addons-btn.style-two span::before,
.rr-addons-btn.style-two span::after {
transition-delay: 0s;
}
.rr-addons-btn.style-two span::before {
left: 0;
top: 0;
}
.rr-addons-btn.style-two span::after {
right: 0;
bottom: 0;
}
.rr-addons-btn.style-two:hover::before,
.rr-addons-btn.style-two:hover::after {
transition-delay: 0s;
}
.rr-addons-btn.style-two:hover span::before,
.rr-addons-btn.style-two:hover span::after {
transition-delay: 0.2s;
} .rr-addons-btn.style-three:before {
content: "";
position: absolute;
z-index: -1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 90px;
height: 90px;
background: #fff;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
} .all-side span.hover-animation {
position: absolute;
display: block;
width: 0;
background-color: red;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
height: 0px;
z-index: -1;
border-radius: 50%;
}
.all-side:hover span.hover-animation {
width: 350px;
height: 350px;
} .elementor-image-box-img {
transition: .4s;
}
.elementor-widget-rr-addons-form .rr-addons-contact-from button[type=submit],
.rr-addons-btn {
position: relative;
z-index: 1;
}
.elementor-widget-rr-addons-form .rr-addons-contact-from button[type=submit]:hover:after {
visibility: visible;
opacity: 0;
height: 474%;
left: -90px;
top: -83px;
}
.btn-icon svg * {
transition: .3s;
}
.elementor-widget-rr-addons-form .rr-addons-contact-from button[type=submit] svg {  }
.wpcf7-form-control.wpcf7-acceptance span {
display: inline;
}
.row.contact-form-home-02 input {
text-align: center;
}
.row.contact-form-home-02 .wpcf7-form-control-wrap:after {
position: absolute;
content: "\f0e0";
font-family: "Font Awesome 5 Free";
font-weight: 900;
top: 50%;
left: 20px;
height: 30px;
width: 30px;
font-size: 20px;
color: #CDCCD9;
transform: translateY(-50%);
} .rr-addons-feature-box-item {
transition: .4s;
}
.rr-addons-feature-box-item .icon-background-yes .rr-addons-feature-icon {
width: 70px;
height: 70px;
display: flex;
text-align: center;
line-height: 70px;
font-size: 30px;
background-color: var(--accent-color);
border-radius: 0px;
color: #fff;
align-items: center;
justify-content: center;
}
.rr-addons-feature-box-item .icon-background-yes .rr-addons-feature-icon svg {
width: 35px;
}
span.rr-addons-feature-icon.icon-type-image img {
object-fit: cover;
}
.rr-addons-feature-icon-wrap {
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
}
.rr-addons-feature-title {
margin-bottom: 18px;
font-size: 20px;
}
.rr-addons-feature-content p {
margin-bottom: 0;
}
.rr-addons-feature-box-item.rr-addons-icon-position-left {
display: inline-flex;
text-align: left;
}
.rr-addons-feature-box-item.rr-addons-icon-position-right {
display: flex;
text-align: right;
flex-direction: row-reverse;
}
.rr-addons-feature-box-item.rr-addons-feature-icon-center {
text-align: center;
}
.rr-addons-feature-box-item.rr-addons-feature-icon-left {
text-align: left;
}
.rr-addons-feature-box-item.rr-addons-feature-icon-left .rr-addons-feature-icon-wrap {
justify-content: flex-start;
}
.rr-addons-feature-box-item.rr-addons-feature-icon-right .rr-addons-feature-icon-wrap {
justify-content: flex-end;
}
.rr-addons-feature-box-item.rr-addons-feature-icon-right {
text-align: right;
}
.rr-addons-feature-icon-wrap i,
.rr-addons-feature-icon-wrap svg,
.rr-addons-feature-icon {
transition: .3s ease-in-out;
;
}
.rr-addons-feature-box-item .icon-background-no .rr-addons-feature-icon svg {
MAX-HEIGHT: 118PX;
}
.rr-addons-feature-box-item .rr-addons-feature-icon i {
font-size: 25px;
}
.rr-addons-feature-box-number {
font-size: 22px;
letter-spacing: -0.73px;
font-weight: 700;
color: #ffffff;
}
.rr-addons-feature-box-number span {
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, .16);
}  .rr-addons-pricing-list-wrapper.border_bottom .rr-addons-pricing-list-item:last-child {
border-bottom: none !important;
}
.rr-addons-pricing-list-item.yes {
display: flex;
}
.rr-addons-pricing-list-item-thumbnail {
overflow: hidden;
}
.rr-addons-pricing-list-item-thumbnail img {
height: 100% !important;
width: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.rr-addons-pricing-title {
display: flex;
align-items: center;
}
.rr-addons-pricing-title .rr-addons-pricing-list-item-price {
margin-left: auto;
}
.rr-addons-pricing-list-item-content-title {
display: flex;
font-size: 20px;
font-weight: bold;
}
.rr-addons-pricing-list-item-content-description {
margin: 0;
}
.rr-addons-pricing-list-item-price span {
display: block;
font-size: 20px;
line-height: 20px;
}
.rr-addons-pricing-list-item-content-action {
display: inline-block;
transition: all .3s ease;
}
.rr-addons-pricing-list-item-content-conntector {
border-bottom: 1px dashed;
height: 1px;
flex-grow: 1;
align-self: center;
margin: 0 15px;
}  .left {
text-align: left;
}
.left .rr-addons-pricing-table-features li {
justify-content: flex-start;
}
.left .price-box {
margin-right: auto;
}
.center {
text-align: center;
}
.center.rr-addons-pricing-table-features li {
justify-content: center;
}
.center .price-box {
margin: 0 auto;
}
.right {
text-align: right;
}
.right .rr-addons-pricing-table-features li {
justify-content: flex-end;
}
.right .price-box {
margin-left: auto;
}
.rr-addons-pricing-table-header {
position: relative;
z-index: -1;
}
.rr-addons-pricing-table-header .rr-addons-pricing-table-header-curved svg {
position: absolute;
left: 0;
bottom: 0;
z-index: 1;
width: 100%;
}
.rr-addons-pricing-table-title {
margin: 0 0 16px 0;
font-size: 20px;
font-weight: 400;
}
.rr-addons-pricing-table-subtitle {
margin: 0 0 10px 0;
}
.price-box {
position: relative;
}
.rr-addons-pricing-table-price {
position: relative;
}
.rr-addons-pricing-table-price.rr-addons-discount-price-yes {
display: inline-flex;
align-items: flex-end;
}
.rr-addons-pricing-table-price.rr-addons-discount-price-yes .rr-addons-pricing-table-regular-price {
text-decoration: line-through;
font-size: 20px;
color: #e5e5e5;
line-height: 2.1em;
}
.rr-addons-pricing-table-price svg {
position: absolute;
}
.rr-addons-pricing-table-wrapper .rr-addons-pricing-table-price p.rr-addons-pricing-table-new-price {
font-size: 48px;
font-weight: 600;
letter-spacing: -3.2px;
}
.rr-addons-pricing-table-wrapper .rr-addons-pricing-table-price span.rr-addons-price-period {
font-size: 20px;
font-weight: 600;
letter-spacing: 0px;
}
.rr-addons-pricing-table-price p {
margin: 0;
}
.price-box p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
width: 100%;
}
.rr-addons-pricing-table-features {
margin: 0;
padding: 0;
}
.rr-addons-pricing-table-features li {
list-style: none;
display: flex;
align-items: center;
justify-content: center;
margin-left: 0px;
}
.list-border-bottom li:not(:last-child) {
border-bottom: 1px solid #ff5985;
}
.rr-addons-pricing-table-features li .rr-addons-pricing-li-icon {
margin-right: 7px;
}
.rr-addons-pricing-table-action {
text-decoration: none;
-webkit-transition: all .3s ease;
transition: all .3s ease;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
}
.rr-addons-pricing-table-badge-wrapper {
position: relative;
overflow: hidden;
z-index: 1;
transition: all .3s ease;
}
.rr-addons-pricing-table-wrapper {
transition: all .3s ease;
}
.rr-addons-pricing-table-wrapper.transition_top {
transition: all .3s ease;
transform: translateY(0);
-webkit-transform: translateY(0);
}
.rr-addons-pricing-table-wrapper.transition_top:hover {
transform: translateY(-10px);
-webkit-transform: translateY(-10px);
}
.rr-addons-pricing-table-wrapper.transition_bottom {
transition: all .3s ease;
transform: translateY(0);
-webkit-transform: translateY(0);
}
.rr-addons-pricing-table-wrapper.transition_bottom:hover {
transform: translateY(10px);
-webkit-transform: translateY(10px);
}
.rr-addons-pricing-table-wrapper.transition_zoom {
transition: all .3s ease;
transform: scale(1);
-webkit-transform: scale(1);
}
.rr-addons-pricing-table-wrapper.transition_zoom:hover {
transform: scale(1.02);
-webkit-transform: scale(1.02);
}
.rr-addons-pricing-table-wrapper .text-badge {
position: absolute;
top: 0;
right: 0;
background: #13c83a;
padding: 13px 50px;
width: 160px;
text-align: center;
-webkit-transform: rotate(45deg) translate(40px, -22px);
transform: rotate(45deg) translate(40px, -22px);
color: #ffffff;
font-size: 12px;
font-weight: bold;
z-index: 2;
}
.rr-addons-pricing-table-wrapper .icon-badge {
position: absolute;
padding: 15px 10px;
border-radius: 0 0 40px 40px;
background: #13c83a;
right: 30px;
top: 0;
z-index: 2;
}
.rr-addons-pricing-table-promo-label {
display: block;
}
.rr-addons-pricing-table-currency {
position: relative;
}
.rr-addons-pricing-table-price-subtitle {
display: block;
}
.rr-addons-pricing-area .rr-addons-pricing-item ul {
list-style: none;
padding: 0;
margin: 0;
}
a.rr-addons-btn.yearly-btn {
display: none;
}
[data-value-active="yearly"] a.rr-addons-btn.yearly-btn {
display: inline-flex;
}
[data-value-active="yearly"] a.rr-addons-btn.monthly-btn {
display: none;
} .rr-addons-pricing-area .rr-addons-pricing-item {
border: 1px solid #e7e9ed;
color: var(--text-color);
padding: 35px 50px 35px;
background-color: #ffffff;
border-radius: 10px;
position: relative;
}
.rr-addons-pricing-area .rr-addons-pricing-title {
display: block;
font-size: 13px;
font-weight: 700;
letter-spacing: 1.63px;
color: var(--accent-color);
text-transform: uppercase;
margin-bottom: 24px;
}
div#pricing-dynamic-deck--head {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.rr-addons-pricing-area .rr-addons-pricing-features {
margin-bottom: 30px;
color: var(--text-color);  font-size: 17px;
font-weight: 300;
letter-spacing: -0.2px;
line-height: 29px;
}
.rr-addons-pricing-features img {
margin-right: 6px;
}
.rr-addons-pricing-area .rr-addons-pricing-features p {
margin-bottom: 15px;
}
.rr-addons-pricing-area .rr-addons-pricing-item .rr-addons-price h2 {
font-size: 60px;
color: var(--heading-color);
font-weight: 700;
letter-spacing: -2px;
display: inline-block;
}
.rr-addons-pricing-area .rr-addons-pricing-item .rr-addons-price {
font-weight: 400;
}
.rr-addons-pricing-area .rr-addons-price.rr-addons-price-yearly {
display: none;
} .rr-addons-pricing-item span.price-currency {
font-size: 24px;
letter-spacing: -0.8px;
}
.rr-addons-pricing-item a.rr-addons-btn.btn-type-boxed {
background-color: rgb(71 59 240 / 0.08); color: var(--accent-color);
font-size: 17px;
font-weight: 700;
letter-spacing: -0.6px;
padding: 19.5px 20px;
line-height: 1;
border-radius: 8px;
}
.rr-addons-pricing-item a.rr-addons-btn.btn-type-boxed i {
margin-left: 40px;
}
.rr-addons-pricing-item a.rr-addons-btn.btn-type-boxed:hover {
-webkit-transform: translatey(-8px);
transform: translatey(-8px);
}  .rr-addons-pricing-item.focused {
z-index: 1;
}
.rr-addons-price-wrap span.price-subtitle.dynamic-value { color: var(--text-color);
font-size: 15px;
font-weight: 400;
letter-spacing: -0.1px;
line-height: 26px;
display: block;
}
.rr-addons-pricing-area .rr-addons-pricing-tabs {
color: var(--heading-color);
font-size: 19px;
letter-spacing: -0.2px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 55px;
}
span.rr-addons-price-offer {
font-size: 13px;
color: var(--accent-color);
font-weight: 700;
letter-spacing: 1.63px;
line-height: inherit;
background-color: rgb(71 59 240 / .1);
padding: 0.5px 13px;
border-radius: 30px;
margin-left: 15px;
text-transform: uppercase;
}
#pricing-dynamic-deck--head .btn-toggle.active {
background-color: rgb(22 28 45 / .15);
}
#pricing-dynamic-deck--head .btn-toggle {
width: 70px;
height: 33px;
border-radius: 17px;
background-color: var(--accent-color);
position: relative;
display: inline-block;
margin: 0;
}
#pricing-dynamic-deck--head .btn-toggle.active span {
right: calc(100% - 27px);
}
#pricing-dynamic-deck--head .btn-toggle span {
width: 20px;
height: 20px;
background-color: #ffffff;
position: absolute;
right: 7px;
margin-left: 6px;
top: 50%;
-webkit-transform: translatey(-50%);
transform: translatey(-50%);
-webkit-transition: .4s ease-in-out;
transition: .4s ease-in-out;
border-radius: 500px;
pointer-events: none;
}
.rr-addons-pricing-duration {
color: var(--heading-color);
font-size: 17px;
letter-spacing: -0.09px;
line-height: 29px;
}
.rr-addons-pricing-item .rr-addons-btn-wrapper {
margin-bottom: 12px;
}
.rr-addons-pricing-area .rr-addons-pricing-features strong {
color: #161c2d;
} .rr-addons-pricing-tabs.style-2 .rr-addons-pricing-tab { border-radius: 22px;
border: 1px solid #e5e5e5;
background-color: #ffffff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.rr-addons-pricing-tabs.style-2 .rr-addons-pricing-tab a { color: #666666;
font-family: Karla;
font-size: 13px;
border-radius: 17px;
font-weight: 700;
font-style: normal;
letter-spacing: normal;
line-height: normal;
text-align: center;
text-transform: uppercase;
padding: 9px 27px;
margin: 4px;
-webkit-transition: .4s;
transition: .4s;
}
.rr-addons-pricing-tabs.style-2 .rr-addons-pricing-tab a.active {
background-color: var(--accent-color);
color: #fff;
-webkit-transition: .4s;
transition: .4s;
}
.rr-addons-pricing-tabs.style-2 {
position: relative;
} [data-pricing-dynamic][data-value-active="yearly"] .dynamic-value:after {
display: inline-block;
content: attr(data-yearly);
}
[data-pricing-dynamic][data-value-active="monthly"] .dynamic-value:after {
display: inline;
content: attr(data-monthly);
}
.dynamic-value:after {
display: inline-block;
content: attr(data-active);
}
.static-value:before {
display: inline-block;
content: attr(data-active);
} .rr-addons-feature-box-item {
width: auto;
}
.rr-addons-feature-box-item .rr-addons-feature-title {
display: inline-block;
}
.rr-addons-inline-icon-item {
display: flex;
}
.rr-addons-inline-icon-box-wrap .rr-addons-inline-icon-box-icon {
width: 57px;
height: 57px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.rr-addons-inline-icon-box-wrap {
margin-right: 20px;
margin-top: 4px;
}
h4.rr-addons-inline-icon-box-title {
font-size: 20px;
font-weight: 700;
line-height: 30px;
color: var(--heading-color);
margin-bottom: 10px;
}
span.rr-addons-inline-icon-box-icon,
span.rr-addons-inline-icon-box-icon svg,
span.rr-addons-inline-icon-box-icon i {
transition: .3s ease-in-out;
}
.rr-addons-inline-icon-box-content p {
margin-bottom: 0;
} .rr-addons-team-item .member-image img {
object-fit: cover;
width: 100%;
height: 333px;
border-radius: 6px;
}
.rr-addons-team-item .member-name {
font-size: 21px;
letter-spacing: -0.5px;
margin-bottom: 7px;
color: var(--heading-color);
}
.rr-addons-team-item span.team-position {
color: var(--text-color);
letter-spacing: -0.2px;
}
.team-apply-card {
height: 333px;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 25px;
}
.team-apply-card h4 {
font-size: 24px;
line-height: 1.4em;
letter-spacing: -0.5px;
margin-bottom: 30px;
font-weight: 700;
}
.team-apply-card a {
font-size: 21px;
letter-spacing: -1.2px;
color: var(--accent-color);
border-style: solid;
border-width: 0px 0px 0px 0px;
font-weight: 700;
}
.team-apply-card a i {
margin-left: 15px;
}
.rr-addons-team-item {
margin-bottom: 61px;
}
.rr-addons-team-item {
display: block;
}
.team-style-2 a.rr-addons-team-item {
display: flex;
} .rr-addons-fun-factor-content-number-wrap {
position: relative;
}
span.rr-addons-fun-factor-content-number-suffix {
position: absolute;
right: 0;
top: 0;
display: inline-block;
}
.rr-addons-fun-factor-content .rr-addons-fun-factor-content-number-wrap {
line-height: 1;
margin-top: 0;
margin-bottom: 15px;
font-size: 24px;
}
.rr-addons-fun-factor-content .rr-addons-fun-factor-content-text {
margin-top: 0;
margin-bottom: 15px;
font-size: 24px;
}
.rr-addons-fun-factor-content .rr-addons-fun-factor-content-number,
.rr-addons-fun-factor-content .rr-addons-fun-factor-content-number-prefix,
.rr-addons-fun-factor-content .rr-addons-fun-factor-content-number-suffix {
font-size: 24px;
}
.rr-addons-ff-icon--left .rr-addons-fun-factor-content {
padding-left: 20px;
}
.rr-addons-ff-icon--right .rr-addons-fun-factor-content {
padding-right: 20px;
}
.rr-addons-fun-factor-divider {
display: inline-block;
margin-bottom: 15px;
height: 1px;
background-color: #ccc;
}
.rr-addons-ff-icon--top .rr-addons-fun-factor-media {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
}
.rr-addons-ff-icon--top .rr-addons-fun-factor-media--image {
width: 200px;
}
.rr-addons-fun-factor-media--image img {
width: 100%;
height: 100%;
vertical-align: bottom;
-o-object-fit: cover;
object-fit: cover;
}
.rr-addons-fun-factor-media--icon i,
.rr-addons-fun-factor-media--icon svg {
fill: currentColor;
}
.rr-addons-fun-factor-wrap {
word-wrap: break-word;
overflow-wrap: break-word;
}
.rr-addons-ff-icon--left>.elementor-widget-container .rr-addons-fun-factor-wrap,
.rr-addons-ff-icon--right>.elementor-widget-container .rr-addons-fun-factor-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
}
.rr-addons-ff-icon--left>.elementor-widget-container .rr-addons-fun-factor-wrap {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.rr-addons-ff-icon--right>.elementor-widget-container .rr-addons-fun-factor-wrap {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
text-align: right;
}
.rr-addons-ff-icon--top>.elementor-widget-container .rr-addons-fun-factor-wrap .rr-addons-fun-factor-divider {
width: 100px;
}
.rr-addons-ff-icon--left>.elementor-widget-container .rr-addons-fun-factor-divider,
.rr-addons-ff-icon--right>.elementor-widget-container.rr-addons-fun-factor-wrap .rr-addons-fun-factor-divider {
width: 100% !important;
}
.rr-addons-fun-factor-wrap.rr-addons-fun-factor-right {
display: flex;
flex-direction: row-reverse;
}
.rr-addons-fun-factor-wrap {
text-align: center;
}
.rr-addons-fun-factor-wrap.rr-addons-fun-factor-left {
display: inline-flex;
} .rr-addons-list-group-wrapper {
margin: 0;
padding: 0;
list-style: none;
}
.rr-addons-list-group .rr-addons-list-group-wrapper.layout_1 {
display: flex;
flex-direction: column;
}
.rr-addons-list-group .rr-addons-list-group-wrapper.layout_2 {
display: flex;
flex-direction: row;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item,
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item a {
position: relative;
line-height: 1;
display: flex;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item.rr-addons-icon-center,
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item.rr-addons-icon-center a {
flex-direction: column;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item.rr-addons-icon-right .rr-addons-list-group-icon {
order: 2;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon .rr-addons-list-group-icon-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon .rr-addons-list-group-icon-image {
display: flex;
}
.rr-addons-list-group .rr-addons-list-group-wrapper.layout_1 .rr-addons-list-group-item:after {
position: absolute;
bottom: 0;
width: 100%;
content: "";
left: 0;
}
.rr-addons-list-group .rr-addons-list-group-wrapper.layout_2 .rr-addons-list-group-item:after {
position: absolute;
right: 0;
height: 100%;
content: "";
top: 50%;
transform: translateY(-50%);
}
.rr-addons-list-group-item:first-child{
padding-left: 0!important;
}
.rr-addons-list-group-item:last-child{
padding-right: 0!important;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon.yes {
position: relative;
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon.yes i,
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon.yes .rr-addons-list-group-icon-image,
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon.yes .rr-addons-list-group-icon-number {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.rr-addons-list-group .rr-addons-list-group-wrapper .rr-addons-list-group-item .rr-addons-list-group-icon.yes .rr-addons-list-group-icon-number {
line-height: 0;
}  .fsd-css-transform-yes {
-webkit-transition-duration: var(--fsd-tfx-transition-duration, 0.2s);
transition-duration: var(--fsd-tfx-transition-duration, 0.2s);
-webkit-transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transform: translate(var(--fsd-tfx-translate-x, 0),
var(--fsd-tfx-translate-y, 0)) scale(var(--fsd-tfx-scale-x, 1), var(--fsd-tfx-scale-y, 1)) skew(var(--fsd-tfx-skew-x, 0), var(--fsd-tfx-skew-y, 0)) rotateX(var(--fsd-tfx-rotate-x, 0)) rotateY(var(--fsd-tfx-rotate-y, 0)) rotateZ(var(--fsd-tfx-rotate-z, 0));
transform: translate(var(--fsd-tfx-translate-x, 0),
var(--fsd-tfx-translate-y, 0)) scale(var(--fsd-tfx-scale-x, 1), var(--fsd-tfx-scale-y, 1)) skew(var(--fsd-tfx-skew-x, 0), var(--fsd-tfx-skew-y, 0)) rotateX(var(--fsd-tfx-rotate-x, 0)) rotateY(var(--fsd-tfx-rotate-y, 0)) rotateZ(var(--fsd-tfx-rotate-z, 0));
}
.fsd-css-transform-yes:hover {
-webkit-transform: translate(var(--fsd-tfx-translate-x-hover, var(--fsd-tfx-translate-x, 0)),
var(--fsd-tfx-translate-y-hover, var(--fsd-tfx-translate-y, 0))) scale(var(--fsd-tfx-scale-x-hover, var(--fsd-tfx-scale-x, 1)),
var(--fsd-tfx-scale-y-hover, var(--fsd-tfx-scale-y, 1))) skew(var(--fsd-tfx-skew-x-hover, var(--fsd-tfx-skew-x, 0)),
var(--fsd-tfx-skew-y-hover, var(--fsd-tfx-skew-y, 0))) rotateX(var(--fsd-tfx-rotate-x-hover, var(--fsd-tfx-rotate-x, 0))) rotateY(var(--fsd-tfx-rotate-y-hover, var(--fsd-tfx-rotate-y, 0))) rotateZ(var(--fsd-tfx-rotate-z-hover, var(--fsd-tfx-rotate-z, 0)));
transform: translate(var(--fsd-tfx-translate-x-hover, var(--fsd-tfx-translate-x, 0)),
var(--fsd-tfx-translate-y-hover, var(--fsd-tfx-translate-y, 0))) scale(var(--fsd-tfx-scale-x-hover, var(--fsd-tfx-scale-x, 1)),
var(--fsd-tfx-scale-y-hover, var(--fsd-tfx-scale-y, 1))) skew(var(--fsd-tfx-skew-x-hover, var(--fsd-tfx-skew-x, 0)),
var(--fsd-tfx-skew-y-hover, var(--fsd-tfx-skew-y, 0))) rotateX(var(--fsd-tfx-rotate-x-hover, var(--fsd-tfx-rotate-x, 0))) rotateY(var(--fsd-tfx-rotate-y-hover, var(--fsd-tfx-rotate-y, 0))) rotateZ(var(--fsd-tfx-rotate-z-hover, var(--fsd-tfx-rotate-z, 0)));
} .ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover .ui-icon,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next-hover .ui-icon {
color: var(--accent-color) !important;
}
.ui-datepicker .ui-datepicker-header .ui-icon {
font-size: 14px !important;
transition: .4s;
top: 50%;
transform: translatey(-4px);
}
div#ui-datepicker-div {
border: blanchedalmond;
width: 239px;
border-radius: 0px;
overflow: hidden;
padding: 0 10px;
}
.ui-datepicker-header.ui-widget-header {
background-color: #EFF0F4 !important;
border-bottom: none !important;
}
td.ui-datepicker-days-cell-over.ui-datepicker-today,
td.ui-datepicker-days-cell-over.ui-datepicker-today a {
background-color: #EFF0F4 !important;
}
td.ui-datepicker-days-cell-over.ui-datepicker-today a.ui-state-highlight {
border: none;
}
td a.ui-state-default {
font-size: 11px;
}
a.ui-state-default.ui-state-hover {
background-color: transparent !important;
}
.ui-datepicker-calendar tbody td:hover {
background: #EFF0F4;
}
.ui-datepicker th {
font-size: 12px;
}
.ui-datepicker .ui-datepicker-title {
font-size: 12px;
}
.ui-datepicker .ui-datepicker-header .ui-icon:before {
margin-bottom: 6px;
display: block;
}
.ui-datepicker table {
margin-bottom: 0 !important;
border-top: none !important;
}
.ui-datepicker .ui-datepicker-header {
border-radius: 0px !important;
overflow: hidden;
border: 0px !important;
}
table.ui-datepicker-calendar tr:first-child {
border-top: none !important;
}
.ui-widget-content tr {
height: 35px !important;
}
.elementor-counter .elementor-counter-number-prefix,
.elementor-counter .elementor-counter-number-suffix {
flex-grow: unset;
}
.subscribe-form.rr-addons-home-8-subscribe.btn-red button[type=submit] {
background-color: #f74d4d;
} .content-align-right {
text-align: right;
}
.content-align-center {
text-align: center;
}
.content-align-left {
text-align: left;
}
.content-align-justify .rr-addons-btn {
width: 100%;
;
}
.rr-addons-service-widget-item .service-thumbnail span.image-shape {
width: 51px;
height: 50px;
background-color: #fee444;
border-radius: 50%;
position: absolute;
left: 15px;
top: 13px;
z-index: -1;
}
.rr-addons-service-widget-item .service-thumbnail img {
z-index: 1;
position: relative;
}
.rr-addons-service-widget-item .service-thumbnail {
position: relative;
z-index: 1;
}
.rr-addons-service-widget-item .service-thumbnail-wrapper *,
.rr-addons-service-widget-item .service-content * {
transition: .3s;
}
.rr-addons-service-widget-item {
position: relative;
z-index: 1;
overflow: hidden;
height: 100%;
}
.rr-addons-service-widget-item:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
z-index: -1;
transform: translate(-96%, 2%);
border-radius: 50%;
transition: .4s linear;
visibility: hidden;
opacity: 0;
}
.rr-addons-service-widget-item:hover:after {
border-radius: 0;
transform: translate(-22%, -19%);
visibility: visible;
opacity: 1;
}
.rr-addons-service-widget-item h3.service-title {
display: flex;
align-items: center;
justify-content: space-between;
}
.rr-addons-service-widget-item .service-top-title a {
display: block;
} .rr-addons-heading-title.show-line-yes:after {
content: "";
width: 100%;
background-color: #fee444;
position: absolute;
bottom: 0;
left: 0;
height: 7px;
z-index: -1;
}
.rr-addons-heading-title.show-line-yes {
position: relative;
display: inline-block;
z-index: 1;
} .rr-addons-dual-heading .rr-addons-dual-heading-wrapper {
padding: 5px;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-description {
line-height: 26px;
margin: 30px 0 0 0;
padding: 10px;
font-weight: 400;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-icon {
display: inline-block;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-icon i {
font-size: 36px;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-title {
font-size: 36px;
margin-top: 10px;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-title {
font-size: 30px;
color: #132c47;
text-transform: uppercase;
font-weight: bold;
text-decoration: none;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-title .first-heading,
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-title .second-heading {
padding: 15px 10px;
}
.rr-addons-dual-heading .rr-addons-dual-heading-wrapper .rr-addons-dual-heading-title span {
color: #132c47;
}  .rr-addons-post-widget-item {
transition: 0.4s;
}
.rr-addons-post-widget-item .post-thumbnail {
display: block;
}
.rr-addons-post-widget-item .post-thumbnail img {
object-fit: cover;
height: 261px;
border-radius: 0;
width: 100%;
}
.rr-addons-post-widget-item a.post-link {
display: block;
}
.rr-addons-post-widget-item.post-style-style-one .post-content-wrap {
padding: 40px 0 40px;
}
.rr-addons-post-widget-item.post-style-style-one {
position: relative;
}
.rr-addons-post-widget-item.post-style-style-one:after {
position: absolute;
content: '';
background: #FFBE00;
height: 5px;
width: 0%;
top: 0;
left: 0;
transition: all 0.4s ease-in-out;
}
.rr-addons-post-widget-item.post-style-style-one:hover:after {
width: 100%;
}
.post-top-meta {
font-size: 13px;
line-height: 1.692em;
color: var(--heading-color);
margin-bottom: 15px;
}
.rr-addons-post-widget-item.post-style-style-one .category-list {
padding-right: 45px;
}
.rr-addons-post-widget-item.post-style-style-one .post-date {
position: relative;
color: rgba(2, 12, 23, 0.65);
}
.rr-addons-post-widget-item.post-style-style-one .post-date:before {
position: absolute;
content: "\f111";
font-family: "Font Awesome 5 Free";
font-weight: 900;
top: 0;
left: -25px;
font-size: 8px;
color: rgba(2, 12, 23, 0.4);
}
h3.post-title {
font-size: 21px;
line-height: 32px;
margin-bottom: 10px;
letter-spacing: -0.5px;
}
.post-meta-bottom a {
color: var(--text-color);
}
.post-meta-bottom>span {
margin-right: 10px;
}
.rr-addons-post-widget-item p {
line-height: 29px;
letter-spacing: -0.2px;
font-size: 15px;
color: var(--text-color);
margin-bottom: 0;
}
.rr-addons-post-widget-item.post-style-style-one .rr-addons-post-widget-item:hover {
box-shadow: 0px 34px 33px 0px rgb(22 28 45 / 13%);
}
.rr-addons-post-widget-item.post-style-style-one .rr-addons-post-widget-item {
margin-bottom: 30px;
box-shadow: 0px 14px 120px -2px rgba(0, 0, 0, 0.06);
background-color: var(--white-color);
overflow: hidden;
transition: .4s;
} .rr-addons-post-widget-item.post-style-style-two .post-btn .icon-after {
text-indent: -10px;
transition: all 0.4s ease-in-out;
}
.rr-addons-post-widget-item.post-style-style-two .category-list {
padding: 5px 18px;
background-color: #FCDC00;
border-radius: 50px;
color: #262729;
font-size: 13px;
font-weight: 500;
font-family: 'Rubik';
line-height: 1.818em;
margin-right: 13px;
}
.rr-addons-post-widget-item.post-style-style-two .post-date span {
font-weight: bold;
font-size: 16px;
line-height: 24px;
color: rgba(2, 12, 23, 0.7);
}
.rr-addons-post-widget-item.post-style-style-two .comment-count span {
font-weight: normal;
font-size: 16px;
line-height: 24px;
color: rgba(2, 12, 23, 0.6);
}
.rr-addons-post-widget-item.post-style-style-two .post-meta-bottom {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.rr-addons-post-widget-item.post-style-style-two .post-content {
margin: 32px 13px 36px 5px;
overflow: hidden;
}
.rr-addons-post-widget-item.post-style-style-two .post-content .post-btn-wrap {
overflow: hidden;
}
.rr-addons-post-widget-item.post-style-style-two .category a {
font-weight: bold;
font-size: 16px;
line-height: 24px;
color: #057689;
}
.rr-addons-post-widget-item.post-style-style-two .separator i {
font-size: 5px;
color: rgba(2, 12, 23, 0.3);
margin-left: 8px;
margin-right: 8px !important;
margin-top: 0;
display: inherit;
}
.rr-addons-post-widget-item.post-style-style-two .post-title {
font-size: 18px;
line-height: 1.388em;
margin: 15px 0px 20px 0px;
color: #020C17;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
-ms-transition: .4s;
-o-transition: .4s;
}
.rr-addons-post-widget-item.post-style-style-two .post-meta-bottom .rr-addons-comment:not(:first-child) {
margin-bottom: 0px;
position: relative;
margin-left: 3px;
padding-left: 17px;
}
.rr-addons-post-widget-item.post-style-style-two .post-meta-bottom .rr-addons-comment:before {
position: absolute;
left: 0;
width: 1px;
height: 80%;
background-color: #fff;
content: "";
top: 10%;
}
.rr-addons-post-widget-item.post-style-style-three .post-top-date {
margin-right: 20px;
display: flex;
align-items: center;
}
.rr-addons-post-widget-item.post-style-style-three .top-category-list {
display: flex;
align-items: center;
}
.post-content {
transition: all 0.4s ease 0s;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s; }
.rr-addons-post-widget-item.post-style-style-one .post-content {
margin: 0px 40px 30px 40px;
}
.rr-addons-post-widget-item.post-style-style-two {
position: relative;
overflow: hidden;
}
.rr-addons-post-widget-item.post-style-style-two .post-title:hover {
color: rgb(255, 87, 34);
}
.rr-addons-post-widget-item.post-style-style-two .post-link {
display: block;
}
.post-thumbnail-wrapper.post-style-style-two {
position: relative;
}
.rr-addons-post-widget-item.post-style-style-two .post-thumbnail-wrapper img {
width: 100%;
object-fit: cover;
height: 100%;
}
.rr-addons-post-widget-item.post-style-style-two .post-thumbnail .image-icon {
position: absolute;
bottom: 10px;
right: 10px;
width: 50px;
height: 50px;
background-color: var(--accent-color-2);
color: var(--heading-color);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: .4s;
}
.rr-addons-post-widget-item.post-style-style-two:hover .post-thumbnail .image-icon {
transform: scale(1.4);
}
.rr-addons-post-widget-item.post-style-list {
display: flex;
position: relative;
margin-bottom: 30px;
}
.rr-addons-post-widget-item.post-style-list .post-thumbnail-wrapper .post-link {
height: 100%;
}
.rr-addons-post-widget-item.post-style-list .post-thumbnail-wrapper .post-thumbnail {
height: 100%;
}
.rr-addons-post-widget-item.post-style-list .post-thumbnail-wrapper img {
height: 100%;
object-fit: cover;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
}
.rr-addons-post-widget-item.post-style-list .post-thumbnail-wrapper {
width: 57%;
padding-right: 30px;
}
.rr-addons-post-widget-item.post-style-list .post-content-wrap {
padding-top: 0;
} .blog-slider-arrow .slick-prev:before,
.blog-slider-arrow .slick-next:before {
display: none;
}
.blog-slider-arrow.slick-active {
color: #1d263a;
}
.blog-slider-arrow .prev {
position: relative;
}
.blog-slider-arrow .next {
position: relative;
}
.blog-slider-arrow .slick-active {
background: #2c4bff;
color: #fff;
}
.blog-slider-arrow button {
transition: all 0.4s ease-in-out;
font-size: 18px;
}
.blog-slider-arrow button:hover {
background-color: #1d263a;
color: #fff;
}
.blog-slider-arrow {
background: rgba(2, 12, 23, 0.4);
position: absolute;
right: 0;
top: -130px;
padding: 7px 15px;
border-radius: 5px;
}
.blog-slider-arrow .slick-prev {
left: 0px !important;
display: inline-block;
width: initial;
height: initial;
transform: initial;
margin-right: 15px;
}
.blog-slider-arrow .slick-next {
left: 0px !important;
display: inline-block;
width: initial;
height: initial;
transform: initial;
margin-left: 15px;
} .rr-addons-pagination a,
.rr-addons-pagination span.current {
width: 36px;
height: 36px;
text-align: center;
line-height: 36px;
color: #262729;
font-size: 18px;
font-weight: 500;
border: 1px solid rgba(38, 39, 41, 0.1);
margin: 0px 5px;
transition: .4s;
}
.rr-addons-pagination {
margin-top: 30px;
}
.rr-addons-pagination span.current {
color: #fff;
background-color: #5034FC;
}
.rr-addons-pagination {
margin-left: -5px;
}
.rr-addons-pagination a:hover {
color: #fff;
background-color: #5034FC;
}
.rr-addons-post-widget-item.post-style-style-one .post-btn-wrap {
margin: 40px 0px 0px 40px;
color: #fff;
overflow: hidden;
transition: 0.4s;
}
.post-meta-bottom i,
.post-meta-bottom svg {
margin-right: 12px;
} .post-thumbnail img {
transition: all 0.4s ease-in-out;
}
.rr-addons-post-widget-wrap.hover-one:hover .post-thumbnail img {
transform: scale(1.1);
}
.rr-addons-post-widget-wrap.hover-one .post-thumbnail {
overflow: hidden;
}
.rr-addons-post-widget-item.post-style-style-two:hover .rr-addons-post-widget-item .post-content-wrap {
opacity: 1;
border: 0;
z-index: 999;
}
.rr-addons-post-widget-item.post-style-style-two:hover .post-content-wrap {
opacity: 1;
visibility: visible;
bottom: 0;
}
@media (max-width: 768px) {
.rr-addons-post-widget-item.post-style-style-two .post-content-wrap {
opacity: 1;
bottom: 0;
visibility: visible;
}
}  .advis-blog-cat {
position: relative;
}
.advis-cat-contnt {
position: absolute;
display: inline-block;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: .4s;
}
.advis-blog-cat-title {
background-color: #020C17;
font-size: 18px;
color: #fff;
padding: 13px 25px;
line-height: 1.5em;
text-align: center;
margin-bottom: 0px;
border-radius: 5px;
transition: .4s;
}
.advis-blog-cat:hover .advis-blog-cat-title {
background-color: #FFBE00;
color: #020C17;
}
.advis-cat-image img {
height: 250px;
width: 100%;
object-fit: cover;
object-position: center top;
border-radius: 5px;
}
.rr-addons-addon-post-navigation .nav-links a { color: var(--heading-color);
font-family: Manrope;
font-size: 15px;
font-weight: 500;
font-style: normal;
text-align: center;
text-transform: uppercase;
border: 1px solid var(--heading-color);
padding: 24px 31px;
transition: .4s;
position: relative;
z-index: 1;
line-height: 1;
}
.rr-addons-addon-post-navigation .nav-links a:hover {
border-color: #5034FC;
}
.rr-addons-addon-post-navigation .nav-links a:hover:after {
transform: scale(1);
}
.rr-addons-addon-post-navigation .nav-links a .nav-icon svg {
width: 17px;
}
.rr-addons-addon-post-navigation .nav-links a .nav-icon i {
font-size: 17px;
}
.rr-addons-addon-post-navigation .nav-links .nav-previous a .nav-icon {
margin-right: 14px;
}
.rr-addons-addon-post-navigation .nav-links .nav-next a .nav-icon {
margin-left: 14px;
} .rr-addons-back-to-top-wraper .rr-addons-icon {
display: flex;
align-items: center;
justify-content: center;
right: 0;
bottom: 0;
cursor: pointer;
position: fixed;
transition: all .4s;
opacity: 0;
transform: translatey(20px);
}
.rr-addons-back-to-top-wraper .rr-addons-icon.sticky-active {
opacity: 1;
visibility: visible;
transition: all .4s linear;
z-index: 111;
transform: translatey(0);
}
.elementor-editor-active .rr-addons-back-to-top-wraper .rr-addons-icon {
opacity: 1;
visibility: visible;
} .rr-addons-portfolio-item {
position: relative;
overflow: hidden;
}
.rr-addons-portfolio-item img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
width: 100%;
object-fit: cover; margin-bottom: 0 !important;
}
a.rr-addons-portfolio-content.content-postion-on-image {
position: absolute;
bottom: 15px;
background-color: rgba(255, 255, 255, 0.85);
left: 15px;
right: 15px;
padding: 20px 30px;
border-radius: 8px;
color: #161c2d;
transition: .4s;
transform: translatex(-10%);
opacity: 0;
}
a.rr-addons-portfolio-content .rr-addons-pf-category {
font-size: 13px;
font-weight: 700;
letter-spacing: 1.63px;
text-transform: uppercase;
margin-bottom: 7px;
color: rgba(22, 28, 45, .5);
}
h3.rr-addons-portfolio-title {
font-size: 21px;
font-weight: 700;
letter-spacing: -0.5px;
line-height: 32px;
margin-bottom: 0;
display: flex;
justify-content: space-between;
}
.rr-addons-portfolio-item:hover a.rr-addons-portfolio-content.content-postion-on-image {
opacity: 1;
transform: translate(0);
}
ul.pf-isotope-nav {
list-style: none;
padding: 0;
margin: 0;
margin-bottom: 60px;
}
ul.pf-isotope-nav li { color: #6f727b;
font-size: 13px;
font-weight: 700;
letter-spacing: 1.63px;
text-transform: uppercase;
display: inline-block;
margin-right: 55px;
cursor: pointer;
transition: .3s;
}
ul.pf-isotope-nav li.active,
ul.pf-isotope-nav li:hover {
color: var(--accent-color);
}
a.rr-addons-portfolio-content.content-postion-below-image {
display: block;
position: relative;
padding: 40px 30px;
}
.rr-addons-pf-loadmore-btn {
cursor: pointer;
font-size: 13px;
color: #030303;
font-weight: 700;
text-transform: uppercase;
border: 1px solid;
letter-spacing: 1.63px;
border: 1px solid rgba(3, 3, 3, 0.3);
}
.rr-addons-hover-rotate .rr-addons-portfolio-item:hover img {
transform: scale(0.8) rotate(-6deg);
border-radius: 20px;
box-shadow: 0 32px 74px rgba(68, 77, 136, 0.2);
}
.rr-addons-hover-rotate .rr-addons-portfolio-item img {
transition: .4s;
}
a.rr-addons-portfolio-content.content-postion-disabled {
display: none;
} .rr-addons-post-widget-item .post-thumbnail {
overflow: hidden;
}
.rr-addons-post-widget-item .post-thumbnail:hover img {
transform: scale(1.1);
}
.rr-addons--blog-thumb {
position: relative;
}
.rr-addons-icon-videobox {
bottom: 37px;
background: #FEE444;
width: 115px;
height: 115px;
text-align: center;
position: absolute;
left: 21px;
display: flex;
align-items: center;
justify-content: center;
}
.rr-addons--blog-thumb img {
width: 100%;
height: 100%;
display: inline-block;
}
.rr-addons--blog-thumb .owl-carousel .owl-item img {
height: 100% !important;
}
.rr-addons--tc p {
font-size: 28px;
line-height: 46px;
}
.t--name {
font-size: 21px;
font-weight: 700;
line-height: 30px;
margin-bottom: 4px;
}
.t-postion {
opacity: 0.7;
font-family: Manrope;
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.rr-addons--blog .owl-nav {
position: absolute;
right: 0;
bottom: -40px;
}
.business-subs-form-01 button i {
margin-left: 0px;
}
.rr-addons--blog .owl-nav i {
color: #FFFFFF;
font-size: 24px;
}
.rr-addons--blog .owl-nav .owl-prev {
margin-right: 60px;
}
.rr-addons--blog .owl-nav i:hover {
color: #FEE444;
}
.fIngo--tn-single.style-five .fIngo--tn-icon {
position: static;
} .rr-addons-vertical-menu-wrap ul {
padding: 0;
margin: 0;
list-style: none;
}
.rr-addons-vertical-menu a { color: #171b24;
font-family: Manrope;
font-size: 21px;
font-weight: 700;
text-align: left; font-style: normal;
letter-spacing: normal;
padding: 14px 0;
transition: .3s;
display: block;
}
.rr-addons-vertical-menu a:hover,
.rr-addons-vertical-menu li.current-menu-item>a {
color: var(--accent-color);
} .rr-addons-rev-btn:hover img {
margin-left: 15px;
}
.rr-addons-rev-btn img {
transition: .4s;
margin-left: 7px;
;
} .sticky-wrapper {
width: 100%;
}
.sticky-wrapper.is-sticky>.rr-addons-sticky-yes {
position: absolute;
opacity: 0;
transform: translateY(-50%);
}
.sticky-wrapper.is-sticky>.rr-addons-sticky-yes.reveal-sticky {
position: fixed;
width: 100%;
left: 0;
opacity: 1;
transform: translate(0px);
transition: all 0.3s;
} .main-navigation ul.navbar-nav .menu-item-has-children .sub-menu.rr-addons-megamenu-builder-content-wrap {
padding: 0 !important;
border: none;
} .rr-addons-countdown .rr-addons-countdown__count {
font-size: 120px;
letter-spacing: -3.96px;
font-weight: 700;
color: var(--heading-color);
line-height: 1.3;
}
.rr-addons-countdown li {
text-align: center;
display: inline-block;
}
.rr-addons-countdown .text {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.2px;
color: var(--heading-color);
font-weight: 700;
}
ul.rr-addons-countdown {
margin: 0;
padding: 0;
list-style: none;
}
.rr-addons-countdown-item.show-no {
display: none;
}
li.rr-addons-countdown-item.count-down-block .text {
display: block;
}
li.rr-addons-countdown-item.count-down-inline .text {
display: inline-block;
}
.rr-addons-countdown-wrapper .divider {
position: relative;
} .rr-addons--contactform-wraper.absolute {
position: relative;
}
.rr-addons--contactform-wraper.absolute input[type=submit],
.rr-addons--contactform-wraper.absolute button[type=submit] {
position: absolute;
top: 0;
right: 0;
}
.rr_addons--contact-form- p:empty:before {
display: none;
}
.rr-addons--contactform-wraper p:empty:before {
display: none;
}
.rr-addons--contactform-wraper input:not([type=checkbox]) {
height: 70px;
padding: 20px;
border-radius: 10px;
max-width: 100%;
}
.rr-addons--contactform-wraper input[type=submit],
.rr-addons--contactform-wraper button[type=submit] {
background-color: #6A26DA;
color: #fff;
font-weight: 600;
height: 70px;
width: 172px;
padding: 0px;
}
form.wpcf7-form {
display: inline-block;
}
.rr-addons--contact-icon-before {
position: relative;
}
.rr-addons--contact-icon-before:before {
position: absolute;
left: 38px;
top: 22px;
color: #6001D3;
z-index: 10;
font-family: 'Font Awesome 5 Free';
content: "\f0e0";
font-size: 20px;
}
form.wpcf7-form input {
width: 100%;
;
}
.rr-addons--contact-icon-before:before {
left: 25px;
}
div.wpcf7 .ajax-loader:before {
display: none;
}
.wpcf7 form.submitting .ajax-loader {
display: none;
}
.wpcf7 form.submitting input.wpcf7-form-control.wpcf7-submit {
opacity: .4;
cursor: alias;
cursor: progress;
}
.rr-addons--contactform-wraper.rr-addons-contact-from {
position: relative;
}
.techex-addons-btn {
transition: 0.4s;
} .form-field label {
display: block;
}
.form-field label,
.form-field input {
width: 100%;
}
.log-remember span.checkmark {
display: flex;
align-items: center;
}
.form-field input {
margin-bottom: 20px;
} #rememberme input[type="checkbox"],
.reg-remember input[type="checkbox"] {
height: 20px !important;
width: 20px !important;
margin-right: 11px !important;
cursor: pointer;
margin-bottom: 0px !important;
}
.rr-addons-login-form-wrapper form .log-remember label,
.rr-addons-register-form form .reg-remember label {
display: flex;
align-items: center;
}
.rr-addons-register-wrapper form .reg-remember label a {
margin-left: 3px;
} .rr-addons-form .rr-addons-input {
height: 56px;
width: 100%;
padding: 20px;
border-radius: 40px;
} .rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title {
position: relative;
display: flex;
overflow: hidden;
align-items: center;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title h3 {
width: 100%;
font-size: 15px;
}
.rr-addons-accordion-single-item h3 {
font-weight: 600;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title:hover {
cursor: pointer;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-active-inactive-icon {
position: relative;
margin-left: 15px;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title span.rr-addons-tab-title-icon {
position: relative;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-active-icon i,
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-inactive-icon i,
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title span.rr-addons-tab-title-icon i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-active-icon svg,
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-inactive-icon svg,
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title span.rr-addons-tab-title-icon svg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title.active .rr-addons-inactive-icon,
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-active-icon {
display: none;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title.active .rr-addons-active-icon {
display: block;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content {
display: none;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-title .rr-addons-active-inactive-icon {
width: 70px;
margin-left: auto;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper {
display: flex;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper.has-image-yes .rr-addons-accordion-text {
width: 60%;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper.has-image-yes .rr-addons-accordion-image {
width: 40%;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper.has-image-yes.image-position-left .rr-addons-accordion-text {
order: 2;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper.has-image-yes.image-position-left .rr-addons-accordion-image {
order: 1;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper .rr-addons-accordion-button a {
display: inline-block;
}
@media only screen and (max-width: 767px) {
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper {
flex-direction: column;
}
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper.has-image-yes .rr-addons-accordion-text,
.rr-addons-accordion-items .rr-addons-accordion-single-item .rr-addons-accordion-content .rr-addons-accordion-content-wrapper.has-image-yes .rr-addons-accordion-image {
width: 100%;
}
} .ldBar {
position: relative;
}
.ldBar.label-center>.ldBar-label {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-shadow: 0 0 3px #ffffff;
}
.rr-addons-progress-bar .ldBar-label:after {
content: "%";
display: inline;
position: absolute;
}
.ldBar.no-percent .ldBar-label:after {
content: ""
}
[class*="rr-addons-progress-bar-"].line {
position: relative;
}
[class*="rr-addons-progress-bar-"].line .ldBar-label {
position: absolute;
top: -12px;
right: 0;
}
[class*="rr-addons-progress-bar-"].line-bubble {
position: relative;
}
[class*="rr-addons-progress-bar-"].line-bubble .ldBar-label {
position: absolute;
left: 0;
top: 0%;
width: 50px;
height: 50px;
-webkit-transform: translate(-50%, 25%);
transform: translate(-50%, 25%);
background-color: #ccc;
line-height: 27px;
}
[class*="rr-addons-progress-bar-"].circle {
position: relative;
}
[class*="rr-addons-progress-bar-"].circle .ldBar-label {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
[class*="rr-addons-progress-bar-"].circle h3 {
position: absolute;
bottom: -20px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
[class*="rr-addons-progress-bar-"].fan {
position: relative;
}
[class*="rr-addons-progress-bar-"].fan svg {
margin-top: -40%;
}
[class*="rr-addons-progress-bar-"].fan h3 {
position: absolute;
bottom: -20px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
[class*="rr-addons-progress-bar-"].fan .ldBar-label {
position: absolute;
left: 50%;
-webkit-transform: translate(-50%, -20%);
transform: translate(-50%, -20%);
font-size: 30px;
bottom: 7%;
}
[class*="rr-addons-progress-bar-"].fan .left-title {
position: absolute;
left: 0;
bottom: -10px;
}
[class*="rr-addons-progress-bar-"].fan .right-title {
position: absolute;
bottom: -10px;
right: 0;
}
.rr-addons-progress-bar svg:not(:root) {
overflow: hidden;
height: inherit;
}
.rr-addons-progress-bar-title {
font-size: 16px;
font-weight: 600;
} span.rr-addons-pricing-badge {
background-color: var(--accent-color);
position: absolute;
top: 0;
right: 0;
padding: 0 14px;
border-radius: 8px 8px 8px 8px;
}   .brand-logo-slider .slick-slide {
margin: 0 27px;
} .brand-logo-slider .slick-list {
margin: 0 -27px;
}
.brand-logo-slider-arrow {
position: relative;
}
.brand-logo-slider-arrow .slick-prev:before,
.brand-logo-slider-arrow .slick-next:before {
display: none;
}
.brand-logo-slider-arrow button button {
display: none;
}
.brand-logo-slider-arrow.slick-active {
color: #1d263a;
}
.brand-logo-slider-arrow button.prev {
position: absolute;
}
.brand-logo-slider-arrow button.next {
position: absolute;
}
.brand-logo-slider-arrow .slick-active {
background: #2c4bff;
color: #fff;
}
.brand-logo-slider-arrow button {
transition: all 0.4s ease-in-out;
font-size: 20px;
color: #1d263a;
cursor: pointer;
height: 60px;
width: 60px;
background: rgba(44, 71, 255, 0.6);
text-align: center;
display: inline-block;
}
.brand-logo-slider-arrow button:hover {
background-color: #1d263a;
color: #fff;
}
.brand-logo-dots .slick-dots {
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.brand-logo-dots .slick-dots li {
list-style: none;
display: inline-block;
margin: 0 5px;
width: 11px;
height: 11px;
border-radius: 50%;
transition: 0.4s;
}
.brand-logo-dots .slick-dots li button {
border: none;
list-style: none;
width: 11px;
height: 11px;
border-radius: 50%;
color: transparent;
opacity: 0.2;
}
.brand-logo-dots .slick-dots li button:focus {
outline: none;
box-shadow: none;
}
.brand-logo-dots .slick-dots li.slick-active {
background-color: #ffd166 !important;
}
@media only screen and (min-width: 768px) {
.brand-logo-slider .slick-slide img {
display: block;
margin: 0px auto;
}
.brand-logo-slider-arrow .prev {
left: 215px !important;
right: auto !important;
}
}
@media only screen and (min-width: 320px) {
.brand-logo-slider .slick-slide img {
display: block;
margin: 0px auto;
}
} .rr-addons-card-images {
position: relative;
}
.rr-addons-card-images img {
overflow: hidden;
width: 100%;
}
.rr-addons-card-number {
position: absolute;
top: 0;
width: 60px;
height: 60px;
background-color: #ED6341;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 30px;
margin-top: 30px;
opacity: 0;
visibility: hidden;
z-index: 2;
transition: 0.4s all ease-in-out;
}
.rr-addons-single-card:hover .rr-addons-card-number {
opacity: 1;
visibility: visible;
margin-left: 30px;
}
.rr-addons-card-content {
position: absolute;
bottom: 0;
padding-bottom: 30px;
padding-left: 30px;
background: linear-gradient(180deg, rgba(31, 40, 57, 0) 17.52%, #000000 100%);
width: 100%;
}
.rr-addons-card-images:after {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 50%;
content: "";
background: linear-gradient(180deg, rgba(31, 40, 57, 0) 17.52%, #000000 100%);
}
.rr-addons-card-title {
font-size: 22px;
color: #fff;
font-weight: 700;
margin-bottom: 5px;
line-height: 33px;
}
.rr-addons-card-discription {
color: rgba(255, 255, 255, 0.7);
font-size: 18px;
}
.rr-addons-single-card.hover-one:hover .rr-addons-card-images img {
transform: scale(1.1);
}
.rr-addons-single-card.hover-one .rr-addons-card-images {
overflow: hidden;
}
.rr-addons-card-images img {
transition: .7s;
} .rr-addons-tab-content-single {
display: none;
}
.rr-addons-tab-content-single.current {
display: block;
position: relative;
}
.rr-addons--tab-menu ul.tabs {
padding: 0;
margin: 0;
list-style: none;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: space-between;
width: 856px;
border-bottom: 2px solid rgb(0 28 128 / 20%);
flex-wrap: wrap;
}
.rr-addons--tab-menu ul.tabs>li {
display: inline-flex;
font-style: normal;
font-weight: 1.3;
font-size: 20px;
color: #2B59FF;
position: relative;
padding: 20px 0;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
transition: .3s;
cursor: pointer;
}
.rr-addons--tab-menu ul.tabs>li .rr-addons-tab-icon {
margin-right: 8px;
font-size: 18px;
width: 18px;
}
.rr-addons--tab-menu {
text-align: center;
}
.rr-addons--tab-menu ul.tabs>li.current {
border-color: #FD4C5C;
color: #FD4C5C;
}
.rr-addons-elm-edit-popup .mfp-content {
max-width: 80vw;
max-height: 80vh;
}
.rr-addons-elm-edit-wrap {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
border: 1px solid #ffa500d9;
transition: .3s;
}
a.rr-addons-elm-edit {
transform: translatey(-100%);
background: #ffa500d9;
color: #fff;
padding: 0 13px;
}  @media only screen and (min-width:1025px) and (max-width:1200px) {
.rr-addons-pricing-area .container-fluid {
padding: 0 100px;
}
.rr-addons-pricing-item-wrap {
margin-bottom: 30px;
}
.rr-addons-register-form form .reg-remember label {
display: block;
}
.reg-remember input[type="checkbox"] {
width: 15px !important;
}
}
@media only screen and (min-width:991px) and (max-width:1200px) {
.rr-addons-pricing-item-wrap {
margin-bottom: 30px;
}
}
@media only screen and (max-width:991px) {
.rr-addons-pricing-item-wrap {
margin-bottom: 30px;
}
.rr-addons-register-form form .reg-remember label {
display: block;
}
.reg-remember input[type="checkbox"] {
width: 15px !important;
}
}
@media only screen and (max-width:991px) and (min-width:768px) {
.rr-addons-blog-stories .swiper-navigation {
margin-top: 0;
}
.content-align-tablet-right {
text-align: right;
}
.content-align-tablet-center {
text-align: center;
}
.content-align-tablet-left {
text-align: left;
}
.content-align-tablet-justify .rr-addons-btn {
width: 100%;
} .rr-addons-main-menu-wrap.menu-align-tablet-end {
justify-content: flex-end;
}
.rr-addons-main-menu-wrap.menu-align-tablet-center {
justify-content: center;
}
.rr-addons-main-menu-wrap.menu-align-tablet-start {
justify-content: flex-start;
}
}
@media only screen and (max-width:767px) {
.content-align-mobile-right {
text-align: right;
}
.content-align-mobile-center {
text-align: center;
}
.content-align-mobile-left {
text-align: left;
}
.content-align-mobile-justify .rr-addons-btn {
width: 100%;
} .rr-addons-main-menu-wrap.menu-align-mobile-end {
justify-content: flex-end;
}
.rr-addons-main-menu-wrap.menu-align-mobile-center {
justify-content: center;
}
.rr-addons-main-menu-wrap.menu-align-mobile-start {
justify-content: flex-start;
}
.nice-select ul.list {
width: 100%;
margin-top: 0;
}
.rr-addons-addon-post-navigation .nav-links {
display: block;
}
.rr-addons-addon-post-navigation .nav-links .nav-previous {
margin-bottom: 10px;
}
.rr-addons--contactform-wraper.absolute input[type=submit],
.rr-addons--contactform-wraper.absolute button[type=submit] {
left: 0;
}
} .elementor-widget-image .elementor-widget-container {
overflow: hidden;
}
.subscribe-form-02 .with-icon-input i {
color: #CDCCD9;
font-size: 22px;
position: absolute;
left: 15;
top: 50%;
transform: translateY(-50%);
width: 100%;
}
.subscribe-form-02 .with-icon-input input {
position: relative;
z-index: 1;
}
.subscribe-form-02 p {
margin: 0;
}
@media screen and (max-width: 768px) {
.subscribe-form-02 .with-icon-input i {
left: 10px;
top: 36px;
}
}
.rr-addons-form .rr-addons-link {
display: inherit;
margin: 0;
margin-top: 30px;
}
.rr-addons-form .rr-addons-link p {
margin: 0;
}
.rr-addons-form .rr-addons-link p {
margin-left: 9px;
}
.rr-addons-login-form-wrapper .password-field {
position: relative;
}
.rr-addons-login-form-wrapper .forgetpassword {
right: 0;
top: 50%;
}
.elementor-widget-rr-addons-lost-password .elementor-widget-container {
text-align: center;
}
.post-thumbnail {
position: relative;
}
span.category-list {
position: absolute;
top: 13px;
left: 21px;
}
.post-thumbnail {
position: relative;
}
.img {
position: absolute;
top: 377px;
right: 15px;
}.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}@keyframes bounce {
20%,
53%,
80%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1);
transform: translate3d(0, 0, 0)
}
40%,
43% {
animation-timing-function: cubic-bezier(.755, .050, .855, .060);
transform: translate3d(0, -30px, 0)
}
70% {
animation-timing-function: cubic-bezier(.755, .050, .855, .060);
transform: translate3d(0, -15px, 0)
}
90% {
transform: translate3d(0, -4px, 0)
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom
}
@keyframes flash {
50%,
from,
to {
opacity: 1
}
25%,
75% {
opacity: 0
}
}
.flash {
animation-name: flash
}
@keyframes pulse {
from,
to {
transform: scale3d(1, 1, 1)
}
50% {
transform: scale3d(1.05, 1.05, 1.05)
}
}
.pulse {
animation-name: pulse
}
@keyframes rubberBand {
from,
to {
transform: scale3d(1, 1, 1)
}
30% {
transform: scale3d(1.25, .75, 1)
}
40% {
transform: scale3d(.75, 1.25, 1)
}
50% {
transform: scale3d(1.15, .85, 1)
}
65% {
transform: scale3d(.95, 1.05, 1)
}
75% {
transform: scale3d(1.05, .95, 1)
}
}
.rubberBand {
animation-name: rubberBand
}
@keyframes shake {
from,
to {
transform: translate3d(0, 0, 0)
}
10%,
30%,
50%,
70%,
90% {
transform: translate3d(-10px, 0, 0)
}
20%,
40%,
60%,
80% {
transform: translate3d(10px, 0, 0)
}
}
.shake {
animation-name: shake
}
@keyframes headShake {
0% {
transform: translateX(0)
}
6.5% {
transform: translateX(-6px) rotateY(-9deg)
}
18.5% {
transform: translateX(5px) rotateY(7deg)
}
31.5% {
transform: translateX(-3px) rotateY(-5deg)
}
43.5% {
transform: translateX(2px) rotateY(3deg)
}
50% {
transform: translateX(0)
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg)
}
40% {
transform: rotate3d(0, 0, 1, -10deg)
}
60% {
transform: rotate3d(0, 0, 1, 5deg)
}
80% {
transform: rotate3d(0, 0, 1, -5deg)
}
to {
transform: rotate3d(0, 0, 1, 0deg)
}
}
.swing {
transform-origin: top center;
animation-name: swing
}
@keyframes tada {
from,
to {
transform: scale3d(1, 1, 1)
}
10%,
20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
}
30%,
50%,
70%,
90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%,
60%,
80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
}
.tada {
animation-name: tada
}
@keyframes wobble {
from,
to {
transform: none
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
}
.wobble {
animation-name: wobble
}
@keyframes jello {
11.1%,
from,
to {
transform: none
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
transform: skewX(-.78125deg) skewY(-.78125deg)
}
77.7% {
transform: skewX(.390625deg) skewY(.390625deg)
}
88.8% {
transform: skewX(-.1953125deg) skewY(-.1953125deg)
}
}
.jello {
animation-name: jello;
transform-origin: center
}
@keyframes bounceIn {
20%,
40%,
60%,
80%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3)
}
20% {
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
transform: scale3d(.9, .9, .9)
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03)
}
80% {
transform: scale3d(.97, .97, .97)
}
to {
opacity: 1;
transform: scale3d(1, 1, 1)
}
}
.bounceIn {
animation-name: bounceIn
}
@keyframes bounceInDown {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0)
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0)
}
75% {
transform: translate3d(0, -10px, 0)
}
90% {
transform: translate3d(0, 5px, 0)
}
to {
transform: none
}
}
.bounceInDown {
animation-name: bounceInDown
}
@keyframes bounceInLeft {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0)
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0)
}
75% {
transform: translate3d(-10px, 0, 0)
}
90% {
transform: translate3d(5px, 0, 0)
}
to {
transform: none
}
}
.bounceInLeft {
animation-name: bounceInLeft
}
@keyframes bounceInRight {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0)
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0)
}
75% {
transform: translate3d(10px, 0, 0)
}
90% {
transform: translate3d(-5px, 0, 0)
}
to {
transform: none
}
}
.bounceInRight {
animation-name: bounceInRight
}
@keyframes bounceInUp {
60%,
75%,
90%,
from,
to {
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0)
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0)
}
75% {
transform: translate3d(0, 10px, 0)
}
90% {
transform: translate3d(0, -5px, 0)
}
to {
transform: translate3d(0, 0, 0)
}
}
.bounceInUp {
animation-name: bounceInUp
}
@keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
.fadeIn {
animation-name: fadeIn
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -30%, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInDown {
animation-name: fadeInDown
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-30%, 0, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInLeft {
animation-name: fadeInLeft
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(30%, 0, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInRight {
animation-name: fadeInRight
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 30%, 0)
}
to {
opacity: 1;
transform: none
}
}
.fadeInUp {
animation-name: fadeInUp
}
@keyframes lightSpeedIn {
from {
transform: translate3d(30%, 0, 0) skewX(-30deg);
opacity: 0
}
60% {
transform: skewX(20deg);
opacity: 1
}
80% {
transform: skewX(-5deg);
opacity: 1
}
to {
transform: none;
opacity: 1
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0
}
to {
transform-origin: center;
transform: none;
opacity: 1
}
}
.rotateIn {
animation-name: rotateIn
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1
}
}
.rotateInDownRight {
animation-name: rotateInDownRight
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1
}
}
.rotateInUpRight {
animation-name: rotateInUpRight
}
@keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-30%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
to {
opacity: 1;
transform: none
}
}
.rollIn {
animation-name: rollIn
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3)
}
50% {
opacity: 1
}
}
.zoomIn {
animation-name: zoomIn
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInDown {
animation-name: zoomInDown
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInLeft {
animation-name: zoomInLeft
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInRight {
animation-name: zoomInRight
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(.175, .885, .32, 1)
}
}
.zoomInUp {
animation-name: zoomInUp
}
@keyframes slideInDown {
from {
transform: translate3d(0, -30%, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInDown {
animation-name: slideInDown
}
@keyframes slideInLeft {
from {
transform: translate3d(-30%, 0, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInLeft {
animation-name: slideInLeft
}
@keyframes slideInRight {
from {
transform: translate3d(30%, 0, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInRight {
animation-name: slideInRight
}
@keyframes slideInUp {
from {
transform: translate3d(0, 30%, 0);
visibility: visible
}
to {
transform: translate3d(0, 0, 0)
}
}
.slideInUp {
animation-name: slideInUp
}
.elementor-animation-grow {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-grow:active,
.elementor-animation-grow:focus,
.elementor-animation-grow:hover {
transform: scale(1.1)
}
.elementor-animation-shrink {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-shrink:active,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:hover {
transform: scale(0.9)
}
@keyframes elementor-animation-pulse {
25% {
transform: scale(1.1)
}
75% {
transform: scale(0.9)
}
}
.elementor-animation-pulse:active,
.elementor-animation-pulse:focus,
.elementor-animation-pulse:hover {
animation-name: elementor-animation-pulse;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite
}
@keyframes elementor-animation-pulse-grow {
to {
transform: scale(1.1)
}
}
.elementor-animation-pulse-grow:active,
.elementor-animation-pulse-grow:focus,
.elementor-animation-pulse-grow:hover {
animation-name: elementor-animation-pulse-grow;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate
}
@keyframes elementor-animation-pulse-shrink {
to {
transform: scale(0.9)
}
}
.elementor-animation-pulse-shrink:active,
.elementor-animation-pulse-shrink:focus,
.elementor-animation-pulse-shrink:hover {
animation-name: elementor-animation-pulse-shrink;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate
}
@keyframes elementor-animation-push {
50% {
transform: scale(0.8)
}
30% {
transform: scale(1)
}
}
.elementor-animation-push:active,
.elementor-animation-push:focus,
.elementor-animation-push:hover {
animation-name: elementor-animation-push;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: 1
}
@keyframes elementor-animation-pop {
50% {
transform: scale(1.2)
}
}
.elementor-animation-pop:active,
.elementor-animation-pop:focus,
.elementor-animation-pop:hover {
animation-name: elementor-animation-pop;
animation-duration: .3s;
animation-timing-function: linear;
animation-iteration-count: 1
}
.elementor-animation-bounce-in {
transition-duration: .5s
}
.elementor-animation-bounce-in:active,
.elementor-animation-bounce-in:focus,
.elementor-animation-bounce-in:hover {
transform: scale(1.2);
transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36)
}
.elementor-animation-bounce-out {
transition-duration: .5s
}
.elementor-animation-bounce-out:active,
.elementor-animation-bounce-out:focus,
.elementor-animation-bounce-out:hover {
transform: scale(0.8);
transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36)
}
.elementor-animation-rotate {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-rotate:active,
.elementor-animation-rotate:focus,
.elementor-animation-rotate:hover {
transform: rotate(4deg)
}
.elementor-animation-grow-rotate {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-grow-rotate:active,
.elementor-animation-grow-rotate:focus,
.elementor-animation-grow-rotate:hover {
transform: scale(1.1) rotate(4deg)
}
.elementor-animation-float {
transition-duration: .3s;
transition-property: transform;
transition-timing-function: ease-out
}
.elementor-animation-float:active,
.elementor-animation-float:focus,
.elementor-animation-float:hover {
transform: translateY(-8px)
}
.elementor-animation-sink {
transition-duration: .3s;
transition-property: transform;
transition-timing-function: ease-out
}
.elementor-animation-sink:active,
.elementor-animation-sink:focus,
.elementor-animation-sink:hover {
transform: translateY(8px)
}
@keyframes elementor-animation-bob {
0% {
transform: translateY(-8px)
}
50% {
transform: translateY(-4px)
}
30% {
transform: translateY(-8px)
}
}
@keyframes elementor-animation-bob-float {
30% {
transform: translateY(-8px)
}
}
.elementor-animation-bob:active,
.elementor-animation-bob:focus,
.elementor-animation-bob:hover {
animation-name: elementor-animation-bob-float, elementor-animation-bob;
animation-duration: .3s, 1.5s;
animation-delay: 0s, .3s;
animation-timing-function: ease-out, ease-in-out;
animation-iteration-count: 1, infinite;
animation-fill-mode: forwards;
animation-direction: normal, alternate
}
@keyframes elementor-animation-hang {
0% {
transform: translateY(8px)
}
50% {
transform: translateY(4px)
}
30% {
transform: translateY(8px)
}
}
@keyframes elementor-animation-hang-sink {
30% {
transform: translateY(8px)
}
}
.elementor-animation-hang:active,
.elementor-animation-hang:focus,
.elementor-animation-hang:hover {
animation-name: elementor-animation-hang-sink, elementor-animation-hang;
animation-duration: .3s, 1.5s;
animation-delay: 0s, .3s;
animation-timing-function: ease-out, ease-in-out;
animation-iteration-count: 1, infinite;
animation-fill-mode: forwards;
animation-direction: normal, alternate
}
.elementor-animation-skew {
transition-duration: .3s;
transition-property: transform
}
.elementor-animation-skew:active,
.elementor-animation-skew:focus,
.elementor-animation-skew:hover {
transform: skew(-10deg)
}
.elementor-animation-skew-forward {
transition-duration: .3s;
transition-property: transform;
transform-origin: 0 30%
}
.elementor-animation-skew-forward:active,
.elementor-animation-skew-forward:focus,
.elementor-animation-skew-forward:hover {
transform: skew(-10deg)
}
.elementor-animation-skew-backward {
transition-duration: .3s;
transition-property: transform;
transform-origin: 0 30%
}
.elementor-animation-skew-backward:active,
.elementor-animation-skew-backward:focus,
.elementor-animation-skew-backward:hover {
transform: skew(10deg)
}
@keyframes elementor-animation-wobble-vertical {
16.65% {
transform: translateY(8px)
}
33.3% {
transform: translateY(-6px)
}
49.95% {
transform: translateY(4px)
}
66.6% {
transform: translateY(-2px)
}
83.25% {
transform: translateY(1px)
}
30% {
transform: translateY(0)
}
}
.elementor-animation-wobble-vertical:active,
.elementor-animation-wobble-vertical:focus,
.elementor-animation-wobble-vertical:hover {
animation-name: elementor-animation-wobble-vertical;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-horizontal {
16.65% {
transform: translateX(8px)
}
33.3% {
transform: translateX(-6px)
}
49.95% {
transform: translateX(4px)
}
66.6% {
transform: translateX(-2px)
}
83.25% {
transform: translateX(1px)
}
30% {
transform: translateX(0)
}
}
.elementor-animation-wobble-horizontal:active,
.elementor-animation-wobble-horizontal:focus,
.elementor-animation-wobble-horizontal:hover {
animation-name: elementor-animation-wobble-horizontal;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-to-bottom-right {
16.65% {
transform: translate(8px, 8px)
}
33.3% {
transform: translate(-6px, -6px)
}
49.95% {
transform: translate(4px, 4px)
}
66.6% {
transform: translate(-2px, -2px)
}
83.25% {
transform: translate(1px, 1px)
}
30% {
transform: translate(0, 0)
}
}
.elementor-animation-wobble-to-bottom-right:active,
.elementor-animation-wobble-to-bottom-right:focus,
.elementor-animation-wobble-to-bottom-right:hover {
animation-name: elementor-animation-wobble-to-bottom-right;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-to-top-right {
16.65% {
transform: translate(8px, -8px)
}
33.3% {
transform: translate(-6px, 6px)
}
49.95% {
transform: translate(4px, -4px)
}
66.6% {
transform: translate(-2px, 2px)
}
83.25% {
transform: translate(1px, -1px)
}
30% {
transform: translate(0, 0)
}
}
.elementor-animation-wobble-to-top-right:active,
.elementor-animation-wobble-to-top-right:focus,
.elementor-animation-wobble-to-top-right:hover {
animation-name: elementor-animation-wobble-to-top-right;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-top {
16.65% {
transform: skew(-12deg)
}
33.3% {
transform: skew(10deg)
}
49.95% {
transform: skew(-6deg)
}
66.6% {
transform: skew(4deg)
}
83.25% {
transform: skew(-2deg)
}
30% {
transform: skew(0)
}
}
.elementor-animation-wobble-top {
transform-origin: 0 30%
}
.elementor-animation-wobble-top:active,
.elementor-animation-wobble-top:focus,
.elementor-animation-wobble-top:hover {
animation-name: elementor-animation-wobble-top;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-bottom {
16.65% {
transform: skew(-12deg)
}
33.3% {
transform: skew(10deg)
}
49.95% {
transform: skew(-6deg)
}
66.6% {
transform: skew(4deg)
}
83.25% {
transform: skew(-2deg)
}
30% {
transform: skew(0)
}
}
.elementor-animation-wobble-bottom {
transform-origin: 30% 0
}
.elementor-animation-wobble-bottom:active,
.elementor-animation-wobble-bottom:focus,
.elementor-animation-wobble-bottom:hover {
animation-name: elementor-animation-wobble-bottom;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-wobble-skew {
16.65% {
transform: skew(-12deg)
}
33.3% {
transform: skew(10deg)
}
49.95% {
transform: skew(-6deg)
}
66.6% {
transform: skew(4deg)
}
83.25% {
transform: skew(-2deg)
}
30% {
transform: skew(0)
}
}
.elementor-animation-wobble-skew:active,
.elementor-animation-wobble-skew:focus,
.elementor-animation-wobble-skew:hover {
animation-name: elementor-animation-wobble-skew;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: 1
}
@keyframes elementor-animation-buzz {
50% {
transform: translateX(3px) rotate(2deg)
}
30% {
transform: translateX(-3px) rotate(-2deg)
}
}
.elementor-animation-buzz:active,
.elementor-animation-buzz:focus,
.elementor-animation-buzz:hover {
animation-name: elementor-animation-buzz;
animation-duration: .15s;
animation-timing-function: linear;
animation-iteration-count: infinite
}
@keyframes elementor-animation-buzz-out {
10% {
transform: translateX(3px) rotate(2deg)
}
20% {
transform: translateX(-3px) rotate(-2deg)
}
30% {
transform: translateX(3px) rotate(2deg)
}
40% {
transform: translateX(-3px) rotate(-2deg)
}
50% {
transform: translateX(2px) rotate(1deg)
}
60% {
transform: translateX(-2px) rotate(-1deg)
}
70% {
transform: translateX(2px) rotate(1deg)
}
80% {
transform: translateX(-2px) rotate(-1deg)
}
90% {
transform: translateX(1px) rotate(0)
}
30% {
transform: translateX(-1px) rotate(0)
}
}
.elementor-animation-buzz-out:active,
.elementor-animation-buzz-out:focus,
.elementor-animation-buzz-out:hover {
animation-name: elementor-animation-buzz-out;
animation-duration: .75s;
animation-timing-function: linear;
animation-iteration-count: 1
}.new-tab-link {
padding-right: 14px;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3ggXDSIzCeRHfQAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAA9SURBVBjTY2RAA/+XMvxHF2NkwAOwacCq4P9Shv8suFQzRiNsYUEXwKoJ2VhkNrIaJgYiAAs2N2BVRMirAD6JHi10MCdVAAAAAElFTkSuQmCC) no-repeat right center;
}
.page-title {
font: 400 40px/1.5 Open Sans, sans-serif;
text-align: center;
}
.circles {
margin-bottom: -10px;
}
.circle {
margin: 6px 6px 20px;
display: inline-block;
position: relative;
text-align: center;
line-height: 1.2;
}
.circle canvas {
vertical-align: top;
}
.circle strong {
position: absolute;
top: 42px;
left: 6px;
width: 100%;
text-align: center;
line-height: 40px;
font-size: 24px;
}
.circle strong i {
font-style: normal;
font-size: 0.6em;
font-weight: normal;
}
.circle span {
display: block;
color: #aaa;
margin-top: 12px;
}
.install {
display: inline-block;
}
.install a {
display: block;
width: auto;
vertical-align: middle;
padding: 6px 12px;
line-height: 20px;
background-color: #111;
color: #fff;
border-radius: 3px;
text-decoration: none;
margin: 5px auto;
transition: all .3s;
}
.install code {
padding: 6px 12px;
display: block;
font: 13px/20px Courier New, Liberation Mono, monospase;
background-color: #333333;
border-radius: 4px;
margin: 5px 0;
white-space: nowrap;
}
.install a:hover {
background-color: #222;
}
.credits {
color: #aaa;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.credits img {
margin-left: 4px;
border-radius: 4px;
vertical-align: middle;
}
@media (max-height: 600px),
(max-width: 480px) {
.credits {
position: inherit;
}
}.elementor-icon {
font-size: unset;
}
ul.elementor-icon-list-items  {
margin-bottom: 0;
}
div#cta-4 .elementor-widget-wrap {
-webkit-clip-path: polygon(50% 0%, 100% 0, 100% 78%, 97% 100%, 0 100%, 0 0) !important;
clip-path: polygon(50% 0%, 100% 0, 100% 78%, 97% 100%, 0 100%, 0 0) !important;
} @media (min-width: 1025px){
.container {
max-width: 1170px;
}
}
@media only screen and (min-width: 1400px) {
.elementor-section.elementor-section-boxed>.elementor-container {
max-width: 1220px;
}
.container{
max-width: 1420px;
}
}
li.elementor-icon-list-item {
display: inline-flex;
align-items: baseline;
} a.techex-btn,
.techex-btn {
background: var(--accent-color);
line-height: 25px;
font-size: 17px;
padding-bottom: 5px;
position: relative;
display: inline-flex;
cursor: pointer;
overflow: hidden;
justify-content: center;
color: #fff;
padding: 15px 45px;
border-radius: 5px;
-webkit-transition-duration: 0.50s;
transition-duration: 0.50s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
a.techex-btn.btn-type-boxed {
background-color: var(--accent-color);
color: #fff;
font-weight: 500;
line-height: 24px;
padding: 20px 40px 15px;
border-radius: 0px;
display: inline-flex;
border-color: transparent;
align-items: center;
} .techex-btn-style1-bottom,
.techex-btn-style1-top,
.techex-btn-style1-right,
.techex-btn-style1-left,
.techex-btn-style2-shutouthor,
.techex-btn-style2-shutoutver,
.techex-btn-style2-shutinhor,
.techex-btn-style2-shutinver,
.techex-btn-style2-scshutouthor,
.techex-btn-style2-scshutoutver,
.techex-btn-style2-dshutinhor,
.techex-btn-style2-dshutinver,
.techex-btn-style3-radialin,
.techex-btn-style3-radialout,
.techex-btn-style3-rectin,
.techex-btn-style3-rectout {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition: all 0.3s ease-in-out !important;
-moz-transition: all 0.3s ease-in-out !important;
-ms-transition: all 0.3s ease-in-out !important;
-o-transition: all 0.3s ease-in-out !important;
transition: all 0.3s ease-in-out !important;
}
.techex-btn-style1-bottom:before,
.techex-btn-style1-top:before,
.techex-btn-style1-right:before,
.techex-btn-style1-left:before,
.techex-btn-style2-shutinhor:before,
.techex-btn-style2-shutinver:before,
.techex-btn-style2-shutouthor:before,
.techex-btn-style2-shutoutver:before,
.techex-btn-style2-scshutouthor:before,
.techex-btn-style2-scshutoutver:before,
.techex-btn-style2-dshutinhor:before,
.techex-btn-style2-dshutinver:before,
.techex-btn-style3-radialin:before,
.techex-btn-style3-radialout:before,
.techex-btn-style3-rectin:before,
.techex-btn-style3-rectout:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
-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.50s;
transition-duration: 0.50s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.techex-btn-style3-radialin:before,
.techex-btn-style3-radialout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
}
.techex-btn-style3-radialin:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.techex-btn-style3-rectin:before,
.techex-btn-style3-rectout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transform: scale(1);
transform: scale(1);
}
.techex-btn-style3-rectout:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.techex-btn-style3-rectout:hover:before {
-webkit-transform: scale(1);
transform: scale(1);
}
.techex-btn-style3-rectin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.techex-btn-style3-radialout:hover:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.techex-btn-style3-radialin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.techex-btn-style1-top:before {
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
.techex-btn-style1-right:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
}
.techex-btn-style1-left:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.techex-btn-style2-shutouthor:before,
.techex-btn-style2-scshutoutver:before {
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.techex-btn-style2-shutoutver:before,
.techex-btn-style2-scshutouthor:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.techex-btn-style2-shutinhor:before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.techex-btn-style2-shutinver:before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.techex-btn-style1-bottom:hover:before,
.techex-btn-style1-top:hover:before {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.techex-btn-style1-left:hover:before,
.techex-btn-style1-right:hover:before,
.techex-btn-style2-shutouthor:hover:before,
.techex-btn-style2-shutoutver:hover:before {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.techex-btn-style2-shutinhor:hover:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.techex-btn-style2-shutinver:hover:before {
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.techex-btn-style2-scshutouthor:hover:before {
-webkit-transform: scaleX(0.9);
transform: scaleX(0.9);
}
.techex-btn-style2-scshutoutver:hover:before {
-webkit-transform: scaleY(0.8);
transform: scaleY(0.8);
} .techex-btn-style2-dshutinhor:before,
.techex-btn-style2-dshutinver:before {
top: 50%;
left: 50%;
width: 120%;
height: 0%;
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: all;
transition-property: all;
}
.techex-btn-style2-dshutinver:before {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.techex-btn-style2-dshutinhor:hover:before,
.techex-btn-style2-dshutinver:hover:before {
height: 220%;
}
.techex-btn-wrapper {
overflow: hidden;
} .techex-btn.style-one {
display: inline-block;
overflow: hidden;
transition: all 0.2s linear 0s;
}
.techex-btn.style-one:before {
content: "\f061";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 15px;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 2px;
opacity: 0;
height: 100%;
width: 40px;
transform: translateX(100%);
transition: all 0.2s linear 0s;
}
.techex-btn.style-one:hover {
text-indent: -20px;
}
.techex-btn.style-one:hover:before {
opacity: 1;
text-indent: 0px;
transform: translateX(-25%);
} .techex-btn.style-two {
display: inline-block;
position: relative;
cursor: pointer;
}
.techex-btn.style-two .content {
display: block;
}
.techex-btn.style-two::before,
.techex-btn.style-two::after {
content: "";
width: 0;
height: 2px;
position: absolute;
transition: all 0.2s linear;
background: #5454D4;
}
.techex-btn.style-two .content::before,
.techex-btn.style-two .content::after {
content: "";
width: 2px;
height: 0;
position: absolute;
transition: all 0.2s linear;
background: #5454D4;
}
.techex-btn.style-two::before {
right: 0;
top: 0;
}
.techex-btn.style-two::after {
left: 0;
bottom: 0;
}
.techex-btn.style-two:hover::before,
.techex-btn.style-two:hover::after {
width: 100%;
}
.techex-btn.style-two:hover .content::before,
.techex-btn.style-two:hover ::after {
height: 100%;
}
.techex-btn.style-two::before,
.techex-btn.style-two::after {
transition-delay: 0.2s;
}
.techex-btn.style-two span::before,
.techex-btn.style-two span::after {
transition-delay: 0s;
}
.techex-btn.style-two span::before {
left: 0;
top: 0;
}
.techex-btn.style-two span::after {
right: 0;
bottom: 0;
}
.techex-btn.style-two:hover::before,
.techex-btn.style-two:hover::after {
transition-delay: 0s;
}
.techex-btn.style-two:hover span::before,
.techex-btn.style-two:hover span::after {
transition-delay: 0.2s;
} .techex-btn.style-three:before {
content: "";
position: absolute;
z-index: -1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 90px;
height: 90px;
background: #ffffff;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
} .techex-btn.style-four {
margin-left: -100px;
}
.techex-btn.style-four:hover {
margin-left: 0px;
} .aquan-contact-form-home-01 .techex-btn.style-one:hover:before,
.aquan-contact-us .techex-btn.style-one:hover:before {
transform: translateX(-4%);
} .all-side span.hover-animation {
position: absolute;
display: block;
width: 0;
background-color: red;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
height: 0px;
z-index: -1;
border-radius: 50%;
}
.all-side:hover span.hover-animation {
width: 350px;
height: 350px;
} .elementor-image-box-img {
transition: .4s;
}
.elementor-widget-techex-form .techex-contact-from button[type=submit],
.techex-btn {
position: relative;
z-index: 1;
overflow: hidden;
}
.elementor-widget-techex-form .techex-contact-from button[type=submit]:hover:after {
visibility: visible;
opacity: 0;
height: 474%;
left: -90px;
top: -83px;
}
.btn-icon svg * {
transition: .3s;
}
.wpcf7-form-control.wpcf7-acceptance span {
display: inline;
} .single-item{
transition: 0.4s ease-in-out;
-webkit-transition: 0.4s ease-in-out;
-moz-transition: 0.4s ease-in-out;
-ms-transition: 0.4s ease-in-out;
-o-transition: 0.4s ease-in-out;
}
.slick-dotted.slick-slider{
margin-bottom: 0px;
}
.team-area .slick-prev:before,
.team-area  .slick-next:before {
display: none;
}
.single-item:focus {
outline: none;
box-shadow: none;
}
.team-slider ul.team-slider-dot-list {
margin-top: 25px;
text-align: center;
display: flex;
justify-content: center;
}
.team-slider ul.team-slider-dot-list {
list-style: none;
left: 0;
bottom: 0;
margin-bottom: 0px;
padding:0;
}
.team-slider ul.team-slider-dot-list li.slick-active {
width: 10px !important;
height: 10px !important;
background: #2C4BFF !important;
opacity: 1;
}
.team-slider ul.team-slider-dot-list li {
border-radius: 50%;
width: 10px;
height: 10px;
opacity: .3;
margin: 0 4px;
background: #1E3D59;
cursor: pointer;
}
.team-slider ul.team-slider-dot-list li button {
display: none;
}
.team-slider-arrow .slick-active {
color: #1D263A;
}
.team-slider-arrow img {
font-size: 20px;
color: #ddd;
margin: 0px 13px;
cursor: pointer;
}
@media (min-width: 1200px) {
.team-slider ul.team-slider-dot-list{
margin-top: 40px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
.techex--tn-single.yes::before{
left: -15px;
top: -15px;
opacity: 1;
visibility: inherit;
}
.techex-case-study-content.style-two .bottom-content{
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.single-item {
margin-bottom: 30px;
margin-right: 24px;
}
.team-area{
margin-right: -24px;
margin-bottom: -24px;
}
.team-image {
width: 100%;
height: auto;
overflow: hidden;
}
.team-area .hover-one .team-image img{
transition: all 0.4s ease-in-out;
}
.team-area .hover-one .team-image:hover img{
transform: scale(1.1);
} .social-icons:after {
position: absolute;
content: '';
height: 300px;
width: 100%;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #2C4BFF 74.48%);
border-radius: 10px;
transition: all 0.4s ease-in-out;
bottom: 0;
left: 0;
z-index: -1;
opacity: 0;
}
.social-icons ul {
margin-bottom: 0;
display: flex;
justify-content: center;
}
.social-icons li a {
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
border-radius: 50%;
color: #84b5eb;
border: 1px solid #84b5eb;
transition: 0.4s;
margin: 0px 4px;
}
.social-icons li a:hover {
color: #086AD7;
background-color: #fff;
border: 1px solid #fff;
}
.team-area.team-area-style-01 .single-item {
position: relative;
}
.team-area.team-area-style-01 .team-image {
position: absolute;
left: 0;
top: -90;
}
.single-item {
background-color: #F5F5F5;
}
.team-area-style-01 .single-item {
padding: 130px 3px 30px 30px;
}
.user-identity h6, .user-identity span {
transition: 0.4s;
}
a.team-image:hover {
opacity: 1;
} .team-slider-arrow .prev{
position: absolute;
left: 0;
bottom:rgb(200, 127, 127);
}
.team-slider-arrow .next{
position: absolute;
right: 0;
bottom: 0px;
}
.team-slider-arrow .slick-active {
background: #2C4BFF ;
color: #fff;
}
.team-slider-arrow button {
transition: all 0.4s ease-in-out;
font-size: 20px;
color: #1D263A;
margin: 0px 13px;
cursor: pointer;
height: 60px;
width: 60px;
background: rgba(	44, 71, 255,0.6);
line-height: 60px;
text-align: center;
}
.team-slider-arrow button:hover{
background-color:#1D263A;
color:#fff;
} .techex-service-widget-item, .btn-icon {
transition:0.4s;
} .techex-tn-bottom {
display: flex;
align-items: center;
}
.techex--t-thumb img {
width: 70px;
height: 70px;
object-fit: cover;
object-position: center top;
border-radius: 50%;
margin-right: 25px;
}
.testimonial-slider-dot-list {
margin: 0;
padding: 0;
list-style: none;
display: flex;
}
.testimonial-slider-dot-list li button {
width: 10px;
height: 10px;
text-indent: -9999px;
margin-bottom: 0;
display: block;
padding: 0;
border-radius: 50%;
margin-left: 20px;
background-color: #dae9f9;
}
.testimonial-slider-dot-list li.slick-active button {
background-color: #086ad7;
position: relative;
}
.testimonial-slider-dot-list li.slick-active button:after {
position: absolute;
content: '';
top: 50%;
left: 50%;
border: 2px solid #086ad7;
height: 20px;
width: 20px;
border-radius: 50%;
transform: translate(-50%,-50%);
}
.techex--tn-single {
transition: all 0.4s ease-in-out;
}
.techex--tn-single.yes {
position: relative;
background: #fff;
margin-top: 15px;
margin-left: 15px;
}
.techex--tn-single.yes::before {
position: absolute;
width: 100%;
height: 100%;
background: #086ad7;
border-radius: 7px;
content: "";
left: 0px;
top: 0px;
z-index: -1;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
opacity: 0;
visibility: hidden;
}
.techex--tn-single.yes:hover::before{
left: -15px;
top: -15px;
opacity: 1;
visibility: inherit;
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
.techex--tn-single.yes::before{
left: -15px;
top: -15px;
opacity: 1;
visibility: visible;
}
} .techex-feature-box-item {
transition: .4s;
}
.techex-feature-box-item .icon-background-yes .techex-feature-icon {
width: 70px;
height: 70px;
display: flex;
text-align: center;
line-height: 70px;
font-size: 30px;
background-color: var(--accent-color);
border-radius: 0px;
color: #fff;
align-items: center;
justify-content: center;
}
.techex-feature-box-item .icon-background-yes .techex-feature-icon svg {
width: 35px;
}
span.techex-feature-icon.icon-type-image img {
object-fit: cover;
}
.techex-feature-icon-wrap {
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
}
.techex-feature-title {
margin-bottom: 18px;
font-size: 20px;
}
.techex-feature-content p {
margin-bottom: 0;
}
.techex-feature-box-item.techex-icon-position-left {
display: inline-flex;
text-align: left;
}
.techex-feature-box-item.techex-icon-position-right {
display: flex;
text-align: right;
flex-direction: row-reverse;
}
.techex-feature-box-item.techex-feature-icon-center {
text-align: center;
}
.techex-feature-box-item.techex-feature-icon-left {
text-align: left;
}
.techex-feature-box-item.techex-feature-icon-left .techex-feature-icon-wrap {
justify-content: flex-start;
}
.techex-feature-box-item.techex-feature-icon-right .techex-feature-icon-wrap {
justify-content: flex-end;
}
.techex-feature-box-item.techex-feature-icon-right {
text-align: right;
}
.techex-feature-icon-wrap i,
.techex-feature-icon-wrap svg,
.techex-feature-icon {
transition: .3s ease-in-out;
;
}
.techex-feature-box-item .icon-background-no .techex-feature-icon svg {
MAX-HEIGHT: 118PX;
}
.techex-feature-icon svg {
transition: 0.4s;
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
-ms-transition: 0.4s;
-o-transition: 0.4s;
}
.techex-feature-box-item .techex-feature-icon i {
font-size: 25px;
}
.techex-feature-box-number {
font-size: 22px;
letter-spacing: -0.73px;
font-weight: 700;
color: #ffffff;
}
.techex-feature-box-number span {
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, .16);
}
.techex-icon-shape-yes .techex-feature-icon-wrap {
position: relative;
z-index: 1;
}
.techex-icon-shape-yes .techex-feature-icon-wrap:after {
content: "";
width: 65px;
height: 65px;
background: #ffd166;
border-radius: 50%;
position: absolute;
left: 0;
top: 0;
z-index: -1;
} .techex-vertical-menu-wrap ul {
padding: 0;
margin: 0;
list-style: none;
padding: 0px 30px 5px 30px;
}
.techex-vertical-menu a {
color: #000000;
font-family: Inter;
font-size: 18px;
font-weight: 400;
text-align: left;
font-style: normal;
letter-spacing: normal;
padding: 30px 0 30px 0px;
transition: .3s;
display: block;
}
.techex-vertical-menu li {
border-bottom: 1px solid rgba(44,75,255,0.1);
}
.techex-vertical-menu li:last-child {
border-bottom: none !important;
}
.techex-vertical-menu-wrap{
background-color: #2C4BFF0D;
}
.techex-vertical-menu a:hover, .techex-vertical-menu
li.current-menu-item > a {color: #2C4BFF;}
.techex-dual-heading-wrapper .techex-dual-heading-icon {
position: absolute;
} .techex-accordion-number span {
position: relative;
display: block;
background-color: #FD4C5C;
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
color: #fff;
font-size: 30px;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}  ul.cs-meta {
margin: 0;
padding: 0;
list-style: none;
padding: 35px;
}
.studies-title h2 {
position: relative;
padding: 20px 35px;
background-color: #086ad7;
color: #fff;
margin-bottom: 0;
}
ul.case-isotope-nav {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: end;
flex-wrap: wrap;
margin-bottom: 70px;
}
ul.case-isotope-nav li {
cursor: pointer;
padding: 10px 16px;
box-shadow: 0px 10px 60px 0px rgb(121 121 121 / 45%);
border-radius: 5px;
margin-left: 15px;
color: #211e3b;
font-weight: 700;
}
.studies-title h2{
background-image: url(//novosite.distrim.pt/wp-content/plugins/techex-helper/assets/img/case-head.png);
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-position: center;
}
.techex-single-cs-meta-widget {
overflow: hidden;
background-color: #fff;
border-radius: 7px;
box-shadow: 0px 10px 60px 0px rgb(212 212 212 / 38%);
position: relative;
}
ul.cs-meta li {
display: -ms-grid;
display: grid;
-ms-grid-columns: 30% 65%;
grid-template-columns: 30% 65%;
-ms-grid-rows: auto;
grid-template-rows: auto;
grid-gap: 50px;
margin-bottom: 10px;
}
.cs-meta-value {
color: #211e3b;
font-weight: 700;
font-size: 17px;
}
.cs-meta-label {
font-size: 17px;
color: #74787c;
font-weight: 700;
position: relative;
}
.cs-meta-label:before {
content: ":";
right: -10px;position: absolute;
}
.techex-case-study-item {
position: relative;
}
a.case-image {
overflow: hidden;
display: block;
}
.techex-case-study-wrap.hover-one .techex-case-study-item:hover a.case-image img {
transform: scale(1.1);
}
.case-image img {
transition: .7s;
-webkit-transition: .7s;
-moz-transition: .7s;
-ms-transition: .7s;
-o-transition: .7s;
} .techex-case-study-content.style-two {
width: 90%;
margin: 0 auto;
background-color: #fff;
border-radius: 7px;
margin-top: -50px;
position: relative;
z-index: 9;
box-shadow: 0px 4px 60px rgba(40, 55, 79, 0.06);
}
.techex-case-study-content.style-two .content-visible {
padding: 20px 30px 15px;
position: relative;
display: inline-block;
}
.techex-case-study-content.style-two .bottom-content {
opacity: 0;
visibility: hidden;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
padding: 35px 30px;
position: absolute;
bottom: 0;
width: 100%;
background-color: #fff;
border-radius: 7px;
-webkit-transform: translateY(50px);
transform: translateY(50px);
left: 0;
}
.techex-case-study-item:hover .techex-case-study-content.style-two .bottom-content {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.techex-case-study-content.style-two  .case-content-top {
padding: 20px 30px 15px;
position: relative;
display: inline-block;
} .single-contact-card {
background-color: #f8f8f8;
padding: 40px;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
@media (max-width: 585px) {
.single-contact-card {
padding: 30px;
}
}
.single-contact-card .top-part {
display: flex;
align-items: center;
}
.single-contact-card .top-part .icon {
width: 70px;
height: 70px;
font-size: 20px;
line-height: 70px;
border-radius: 50%;
background-color: #fff;
text-align: center;
color: #086ad7;
margin-right: 20px;
}
.single-contact-card .bottom-part {
margin-top: 25px;
}
.single-contact-card:hover {
background-color: #202426;
}
.single-contact-card:hover .icon {
color: #fff ;
background-color: #086ad7 ;
}
.single-contact-card:hover .bottom-part .icon {
color: #086ad7 ;
background-color: #fff ;
}
.single-contact-card:hover p, .single-contact-card:hover span {
color: #c5c7c8;
}
.single-contact-card:hover p, .single-contact-card:hover h6 {
color: #c5c7c8;
font-weight: 400;
}
.single-contact-card:hover h4 {
color: #fff;
} .techex-iconbox-v5 span.rr-addons-feature-icon.icon-type-icon{
position: relative;
}
.techex-iconbox-v5 span.rr-addons-feature-icon.icon-type-icon:before{
content: '';
left: 50%;
top: 50%;
width: 95px;
height: 95px;
border-radius: 100%;
position: absolute;
border:  1px solid #fff;
transform: translate(-50%, -50%);
}  .project-carousel-card-active .owl-nav {
position: absolute;
left: 45%;
display: flex;
gap: 20px;
font-size: 30px;
bottom: -55px;
}
.project__items {
position: relative;
overflow: hidden;
margin: 0 10px;
}
.project__items .project__image {
position: relative;
width: auto;
height: 445px;
background-position: center;
background-size: cover;
}
.project__items .project__image .box {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
overflow: hidden;
top: 2.5%;
left: 2.5%;
position: absolute;
width: 95%;
height: 0%;
background: rgba(8, 106, 215, 0.9);
}
.project__items .project__image .box > a {
-webkit-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out;
visibility: hidden;
opacity: 0;
position: absolute;
top: -4%;
right: -4%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100px;
height: 100px;
border-radius: 50%;
border: 1px solid #FFF;
}
.project__items .project__image .box > a i {
font-size: 30px;
color: #FFF;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.project__items .project__content {
-webkit-transition: all 0.6s ease-in-out;
transition: all 0.6s ease-in-out;
position: absolute;
bottom: 25px;
left: 25px;
opacity: 0;
visibility: hidden;
}
.project__items .project__content h4 {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 22px;
line-height: 30px;
letter-spacing: -0.03em;
color: #FFF;
}
.project__items .project__content p {
font-style: normal;
font-family: "Circular Std", sans-serif;
font-weight: 450;
font-size: 15px;
line-height: 19px;
letter-spacing: -0.03em;
color: #FFF;
}
.project__items:hover .box {
height: 95%;
}
.project__items:hover .box > a {
visibility: visible;
opacity: 1;
}
.project__items:hover .project__content {
visibility: visible;
opacity: 1;
}
.project-carousel-wrapper {
overflow: hidden;
position: relative;
}
@media (max-width: 500px) {
.project-carousel-wrapper .project__btn {
z-index: 7;
text-align: center !important;
}
}
.project-carousel-wrapper .project-carousel-card-active {
overflow: hidden;
margin-left: 0;
}
@media (max-width: 1920px) {
.project-carousel-wrapper .project-carousel-card-active {
margin-left: 375px;
}
}
@media (max-width: 1600px) {
.project-carousel-wrapper .project-carousel-card-active {
margin-left: 200px;
}
}
@media (max-width: 1366px) {
.project-carousel-wrapper .project-carousel-card-active {
margin-left: 100px;
}
}
@media (max-width: 1180px) {
.project-carousel-wrapper .project-carousel-card-active {
margin-left: 0px !important;
}
}
.project-carousel-wrapper::after {
z-index: -1;
position: absolute;
top: 0%;
left: 0%;
background: #FAFAFF;
-webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
content: "";
clear: both;
height: 70%;
width: 100%;
}  .price__wrapper {
position: relative;
}
.price__wrapper .price__element {
background: #FFFFFF;
-webkit-box-shadow: 0px 10px 25px rgba(11, 11, 127, 0.05);
box-shadow: 0px 10px 25px rgba(11, 11, 127, 0.05);
position: relative;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.price__wrapper .price__element .price__head {
background-color: #211e3b;
padding: 40px;
}
.price__wrapper .price__element .price__head .price__range {
position: relative;
}
.price__wrapper .price__element .price__head .price__range span {
position: absolute;
top: 0%;
left: -3%;
font-family: "Nunito", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 17px;
line-height: 30px;
color: #FFF;
}
.price__wrapper .price__element .price__head .price__range h3 {
font-family: "Nunito", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 42px;
line-height: 50px;
text-transform: capitalize;
color: #FFF;
margin-bottom: 0;
}
.price__wrapper .price__element .price__head .price__range p {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 17px;
line-height: 30px;
color: #FFF;
margin-bottom: 0;
}
.price__wrapper .price__element .preice__body {
z-index: 5;
padding: 40px;
}
.price__wrapper .price__element .preice__body .cetagory__element {
position: absolute;
right: 20px;
z-index: 5;
top: 25%;
}
.price__wrapper .price__element .preice__body .cetagory__element h4 {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 38px;
text-align: right;
color: #FFF;
}
.price__wrapper .price__element .preice__body .cetagory__element p {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 28px;
text-align: right;
color: #FFF;
}
.price__wrapper .price__element .preice__body a {
margin-top: 10px;
padding: 15px 30px;
}
.price__wrapper .price__element .preice__body ul li {
position: relative;
padding-left: 25px;
margin-bottom: 10px;
list-style: none;
font-size: 17px;
}
.price__wrapper .price__element .preice__body ul {
padding: 0;
}
.price__wrapper .price__element .preice__body ul li::before {
clear: both;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
bottom: 0;
left: 0;
position: absolute;
content: "\f058";
font-family: "Font Awesome 5 Free";
color: rgb(8, 106, 215);
font-weight: 600;
}
.price__wrapper .price__element .preice__body ul li.active::before {
opacity: .3;
}
.price__wrapper .price__element::after {
clear: both;
top: 0;
right: 0;
position: absolute;
content: "";
width: 199px;
height: 320px;
background-color: #086ad7;
-webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.price__wrapper .price__element:hover {
-webkit-box-shadow: none;
box-shadow: none;
}
.price__wrapper .dots-top-element {
position: absolute;
top: 10%;
left: 15%;
z-index: -1;
}
.price__wrapper .dots-bottom-element {
position: absolute;
bottom: 0%;
right: 15%;
z-index: -1;
}  .agent__wrapper {
position: relative;
}
.agent__wrapper .owl-nav .owl-prev, .agent__wrapper .owl-nav .owl-next {
position: absolute;
top: -30%;
right: 0%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid #086AD7 !important;
-webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: 5;
}
@media (max-width: 500px) {
.agent__wrapper .owl-nav .owl-prev, .agent__wrapper .owl-nav .owl-next {
display: none;
}
}
.agent__wrapper .owl-nav .owl-prev i, .agent__wrapper .owl-nav .owl-next i {
color: #086AD7;
}
.agent__wrapper .owl-nav .owl-prev::after, .agent__wrapper .owl-nav .owl-next::after {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
z-index: -1;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
border-radius: 50%;
content: "";
clear: both;
background-color: #086AD7;
visibility: hidden;
opacity: 0;
}
.agent__wrapper .owl-nav .owl-prev:hover i, .agent__wrapper .owl-nav .owl-next:hover i {
color: #FFF;
}
.agent__wrapper .owl-nav .owl-prev:hover::after, .agent__wrapper .owl-nav .owl-next:hover::after {
visibility: visible;
opacity: 1;
}
.agent__wrapper .owl-nav .owl-next {
right: 7%;
}
@media (max-width: 995px) {
.agent__wrapper .owl-nav .owl-next {
right: 15%;
}
}
.agent__wrapper .agent-item {
position: relative;
padding: 40px;
background-color: #FFF;
border-radius: 6px;
}
.agent__wrapper .agent-item {
margin:0 15px;
}
.agent__wrapper .agent-item .agent-content .agent-img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
background-position: center;
background-size: cover;
}
.agent__wrapper .agent-item .agent-content .agent-content_name h4 {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
text-transform: uppercase;
color: #211E3B;
margin-bottom: 0;
}
.agent__wrapper .agent-item .agent-content .agent-content_name p {
margin: 5px 0px;
}
.agent__wrapper .agent-item p {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 28px;
text-transform: capitalize;
margin: 30px 0px;
}
.agent__wrapper .agent-item .quera img {
position: absolute;
top: 30px;
right: 60px;
width: auto;
}
.agent-logo img {
width: auto !important;
}   .footer_top .newsletter_box {
margin-top: 30px;
position: relative;
}
.footer_top .newsletter_box form {
height: 60px;
display: flex;
position: relative;
}
.footer_top .newsletter_box form input {
width: 100%;
margin-right: 10px;
color: #FFF;
font-size: 16px;
line-height: 19px;
background: transparent;
padding: 0px 100px 0px 20px;
border: 2px solid #D9D8E6;
border-radius: 4px;
}
.footer_top .newsletter_box form input::placeholder {
color: #FFF;
}
input.wpcf7-form-control.has-spinner.wpcf7-submit.theme-btn {
border: 0;
right: 20px;
padding: 12px 20px;
font-family: "Syne", sans-serif;
display: inline-block;
position: absolute;
border-radius: 2px;
top: calc(40% - 17px);
background: linear-gradient(90deg, #FB5155 0%, #6129AC 100%);
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
input.wpcf7-form-control.has-spinner.wpcf7-submit.theme-btn i {
font-size: 16px;
line-height: 1;
color: #FFF;
font-weight: 500;
margin-left: 0;
padding-left: 0;
}
input.wpcf7-form-control.has-spinner.wpcf7-submit.theme-btn {
position: absolute;
height: 45px;
right: 8px;
margin-top: 7px;
z-index: 1;
}
span.icons {
position: absolute;
top: 18px;
right: 20px;
color: #fff;
z-index: 1;
}
@media (max-width: 500px) {
input.wpcf7-form-control.has-spinner.wpcf7-submit.theme-btn {
padding: 10px !important;
}
}
input.wpcf7-form-control.has-spinner.wpcf7-submit.theme-btn:hover {
background: linear-gradient(90deg, #DED1FA 0%, #FBD0D8 100%);
} .feature_single__items {
border-radius: 10px;
padding: 40px 25px;
position: relative;
background: #fff;
z-index: 1;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.feature_single__items .shape_element {
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity: 0;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.feature_single__items .icon {
margin: auto;
position: relative;
}
.feature_single__items .icon:before {
bottom: -10%;
right: 35%;
z-index: -1;
width: 60px;
height: 7px;
content: "";
position: absolute;
background: linear-gradient(89.92deg, #6C2FAA 1.73%, #F14F5C 99.93%);
-webkit-filter: blur(10px);
filter: blur(10px);
}
.feature_single__items .icon img {
-o-object-fit: cover;
object-fit: cover;
}
.feature_single__items .content h3 {
margin-top: 30px;
margin-bottom: 20px;
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 100%;
color: #0E1871;
}
.feature_single__items .content p {
color: #5F637A;
font-family: "Circular Std", sans-serif;
font-size: 17px;
font-weight: 400;
line-height: 32px;
}
.feature_single__items .content .theme-btn {
border: 0px;
font-family: "Syne", sans-serif;
opacity: 0;
background: rgba(255, 255, 255, 0.09);
border-radius: 49px;
padding: 12px 25px;
}
.feature_single__items .content .theme-btn:hover {
background: linear-gradient(90deg, #DED1FA 0%, #FBD0D8 100%);
color: #0E1871;
}
.feature_single__items.active, .feature_single__items:hover {
background: linear-gradient(164.56deg, #FB5155 -8.14%, #6129AC 128.56%);
}
.feature_single__items.active .shape_element, .feature_single__items:hover .shape_element {
opacity: 1;
}
.feature_single__items.active .icon::after, .feature_single__items:hover .icon::after {
opacity: 0;
visibility: hidden;
}
.feature_single__items.active .content h3 {
color: #FFF !important;
}
.feature_single__items.active .content p {
color: #FFF !important;
}
.feature_single__items.active .content .theme-btn, .feature_single__items:hover .content .theme-btn {
opacity: 1;
} .single_service_items {
padding: 100px 50px;
position: relative;
height: 420px;
width: 100%;
border-radius: 70% 30% 50% 50%/60% 53% 47% 40%;
background: linear-gradient(140.51deg, #FEFBFB 19.45%, #FCFBFE 88.84%);
}
@media (max-width: 768px) {
.single_service_items {
padding: 50px 20px;
}
}
.single_service_items .icon {
display: inline-block;
position: relative;
z-index: 1;
margin-bottom: 20px;
}
.single_service_items .icon::after {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
position: absolute;
opacity: 0;
bottom: 0%;
left: 0%;
z-index: -1;
content: "";
clear: both;
width: 27px;
height: 27px;
background: rgba(225, 75, 101, 0.22);
border-radius: 500px;
}
.single_service_items::after {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
position: absolute;
opacity: 0;
top: 0%;
left: 0%;
z-index: -1;
content: "";
clear: both;
width: 100%;
height: 100%;
background: linear-gradient(96.87deg, #E64C62 4.82%, #652AAB 96.93%);
border-radius: 61% 39% 29% 71%/52% 67% 33% 48%;
}
.single_service_items::before {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
position: absolute;
opacity: 1;
top: 0%;
left: 0%;
z-index: -1;
content: "";
clear: both;
width: 100%;
height: 100%;
background: linear-gradient(96.87deg, rgba(230, 76, 98, 0.1) 4.82%, rgba(101, 42, 171, 0.1) 96.93%);
border-radius: 61% 39% 29% 71%/52% 67% 33% 48%;
}
.single_service_items h4 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 36px;
text-align: center;
color: #000000;
margin-bottom: 20px;
}
.single_service_items p {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 17px;
line-height: 30px;
color: #5F637A;
}
.single_service_items:hover::after {
opacity: 1;
}
.single_service_items:hover .icon::after {
opacity: 1;
}
.single_service_items:hover::before {
opacity: 0;
} .single_team_widget {
position: relative;
z-index: 1;
}
.single_team_widget .team_img {
height: 310px;
width: 100%;
overflow: hidden;
background: center;
background-size: cover;
}
.single_team_widget .team_img .icons {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
opacity: 0;
position: absolute;
bottom: 100px;
left: 60px;
z-index: 1;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 7px;
}
.single_team_widget .team_img .icons ul {
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-left: 0;
margin-bottom: 0;
}
.single_team_widget .team_img .icons ul > li {
display: inline;
}
.single_team_widget .team_img .icons ul > li a {
width: 40px;
height: 40px;
border-radius: 500px;
border: 1px solid rgba(211, 50, 101, 0.1);
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5px;
}
.single_team_widget .team_img .icons ul > li a i {
color: #FFF;
}
.single_team_widget .team_img .icons ul > li a:hover {
background: linear-gradient(132.63deg, #5116AD 15.86%, #E1345D 91.61%);
}
.single_team_widget .content {
margin-top: 30px;
}
.single_team_widget .content h4 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 28px;
color: #0E1871;
margin-bottom: 5px;
}
.single_team_widget .content p {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 100%;
text-align: center;
color: #5F637A;
}
.single_team_widget:hover .team_img {
cursor: pointer;
}
.single_team_widget:hover .team_img .icons {
opacity: 1 !important;
} .accordion {
color: #777;
}
.accordion.accordion_2 .card-header {
background: linear-gradient(90deg, #4513B3 0%, #EC3656 100%);
border-radius: 4px;
}
.accordion.accordion_2 .card-header a {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 100%;
color: #FFF;
padding: 15px 20px;
}
.accordion.accordion_2 .card-header a:hover {
color: #FFF;
}
.accordion.accordion_2 .card-header a:after {
border: 1px dashed #FFFFFF;
border-radius: 500px;
padding: 4px;
content: "\f067";
font-family:'FontAwesome';
position: absolute;
right: 0;
top: 50%;
font-weight: 500;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
color: #FFF;
}
.accordion .card {
margin-top: 15px;
border: none;
border-radius: 7px !important;
}
.accordion .card-header {
padding: 0px 28px;
border: none;
background-color: transparent;
}
@media (max-width: 480px) {
.accordion .card-header {
padding: 0 15px;
}
}
.accordion .card-header a {
display: block;
font-weight: 600;
line-height: 50px;
padding: 10px 0px;
position: relative;
color: #000;
font-size: 18px;
}
.accordion .card-header a:after {
content: "\f067";
font-family:'FontAwesome';
position: absolute;
right: 0;
top: 50%;
font-weight: 500;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
color: #086ad7;
}
.accordion .card-header a[aria-expanded=true]:after {
content: "\f068";
}
@media (max-width: 767px) {
.accordion .card-header a {
line-height: 40px;
font-size: 15px;
}
}
.accordion .card-header a:hover {
color: #086ad7;
}
.accordion .card-body {
padding-left: 28px;
padding-top: 10px;
padding-bottom: 30px;
} .single_tools {
z-index: 1;
overflow: hidden;
position: relative;
padding: 30px 35px;
background: #FFFFFF;
-webkit-box-shadow: 0px 8px 20px rgba(1, 1, 28, 0.1);
box-shadow: 0px 8px 20px rgba(1, 1, 28, 0.1);
border-radius: 10px;
}
.single_tools .icons_info {
margin-bottom: 50px;
}
.single_tools .icons_info .content h6 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 24px;
color: #000000;
}
.single_tools .icons_info .content small {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 18px;
color: #5F637A;
}
.single_tools p {
border-top: 1px dashed rgba(66, 18, 180, 0.1);
padding-top: 10px;
font-size: 17px;
color: #5F637A;
font-family: "Syne", sans-serif;
margin-bottom: 25px;
}
.single_tools a {
background: linear-gradient(90deg, rgba(66, 18, 180, 0.1) 0%, rgba(238, 53, 84, 0.1) 100%);
border-radius: 49px;
padding: 12px 20px;
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 100%;
border: none;
color: #5F637A;
}
.single_tools a:hover {
border: none;
color: #FFF;
background: linear-gradient(90deg, #4212B4 0%, #EE3554 100%);
}
.single_tools .shape_element {
position: absolute;
top: 0%;
left: 0%;
z-index: -1;
}
.single_tools a.theme-btn i {
font-family: 'Font Awesome 5 Free' !important;
} .testimonial_widget .testimonial_items {
overflow: hidden;
position: relative;
padding: 40px 60px 40px 40px;
background: #FFFFFF;
border-radius: 10px;
margin: 0 15px;
}
@media (max-width: 500px) {
.testimonial_widget .testimonial_items {
padding: 20px 40px 20px 20px;
}
}
.testimonial_widget .testimonial_items h4 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 36px;
color: #0E1871;
margin-bottom: 15px;
}
.testimonial_widget .testimonial_items p {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 32px;
color: #5F637A;
margin-bottom: 30px;
}
.testimonial_widget .testimonial_items .author {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 10px;
}
.testimonial_widget .testimonial_items .author_img {
width: 50px;
height: 50px;
overflow: hidden;
border-radius: 500px;
}
.testimonial_widget .testimonial_items .author_img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.testimonial_widget .testimonial_items h5 {
font-family: "Syne", sans-serif;
color: #0E1871;
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 1;
padding-bottom: 0;
margin-bottom: 0;
}
.testimonial_widget .testimonial_items small {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 100%;
color: #5F637A;
}
.testimonial_widget .testimonial_items .review i {
color: #F1AA1D;
margin: 0px 2px;
}
.testimonial_widget .testimonial_items .shape_element {
position: absolute;
top: 0%;
right: 0%;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
@media (max-width: 500px) {
.testimonial_widget .testimonial_items .shape_element {
display: none;
}
}
.testimonial_widget .owl-nav {
margin-top: 50px;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 30px;
}
.testimonial_widget .owl-nav .fa-arrow-left, .testimonial_widget .owl-nav .fa-arrow-right {
background: linear-gradient(90deg, #E54C62 75.47%, #642AAB 96.12%);
font-weight: 900;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
font-size: 20px;
} .price__wrapper {
position: relative;
overflow-y: hidden;
}
.price__wrapper .price__widget {
background: linear-gradient(153.97deg, rgba(73, 21, 179, 0.05) 0%, rgba(233, 54, 89, 0.05) 100%);
border-radius: 10px;
}
.price__wrapper .price__widget .price__head {
padding: 40px;
display: flex;
gap: 20px;
background-size: cover;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.price__wrapper .price__widget .price__head h4 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 100%;
text-align: center;
text-transform: uppercase;
color: #0E1871;
}
.price__wrapper .price__widget .price__head p {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 100%;
color: #0E1871;
}
.price__wrapper .price__widget .price__head p span {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 60px;
line-height: 100%;
text-align: center;
text-transform: uppercase;
background: linear-gradient(96.92deg, #4915B3 4.41%, #EB3658 55.41%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.price__wrapper .price__widget .price__head p sup {
font-family: "Syne";
font-style: normal;
font-weight: 600;
font-size: 30px;
line-height: 100%;
text-align: center;
text-transform: uppercase;
background: linear-gradient(96.92deg, #4915B3 4.41%, #EB3658 55.41%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.price__wrapper .price__widget .price__head .icon {
background: rgba(255, 255, 255, 0.6);
width: 100px;
height: 100px;
border-radius: 10px;
border: 1px dashed rgba(189, 186, 186, 0.8156862745);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.price__wrapper .price__widget .preice__body {
padding: 40px 40px 40px 40px;
}
.price__wrapper .price__widget .preice__body ul {
margin: 0;
padding: 0;
}
.price__wrapper .price__widget .preice__body ul > li {
position: relative;
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 100%;
color: #0E1871;
padding: 20px 0px;
padding-left: 30px;
border-bottom: 1px solid rgba(66, 18, 180, 0.1);
list-style: none;
}
.price__wrapper .price__widget .preice__body ul > li.active::after {
color: #E93659;
}
.price__wrapper .price__widget .preice__body ul > li::after {
line-height: 1;
font-family:'FontAwesome';
position: absolute;
content: "\f058";
color: #4613B2;
font-weight: 400;
left: 0;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.price__wrapper .price__widget .preice__body ul > li:last-child {
border-bottom: 0px solid rgba(66, 18, 180, 0.1);
}
.price__wrapper .price__widget a {
border-radius: 50px;
}
.price__wrapper .price__element {
background: #FFFFFF;
-webkit-box-shadow: 0px 10px 25px rgba(11, 11, 127, 0.05);
box-shadow: 0px 10px 25px rgba(11, 11, 127, 0.05);
position: relative;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.price__wrapper .price__element .price__head {
background-color: #211e3b;
padding: 40px;
}
.price__wrapper .price__element .price__head .price__range {
position: relative;
}
.price__wrapper .price__element .price__head .price__range span {
position: absolute;
top: 0%;
left: -3%;
font-family: "Nunito", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 17px;
line-height: 30px;
color: #FFF;
}
.price__wrapper .price__element .price__head .price__range h3 {
font-family: "Nunito", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 42px;
line-height: 50px;
text-transform: capitalize;
color: #FFF;
}
.price__wrapper .price__element .price__head .price__range p {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 17px;
line-height: 30px;
color: #FFF;
}
.price__wrapper .price__element .preice__body {
z-index: 5;
padding: 40px;
}
.price__wrapper .price__element .preice__body .cetagory__element {
position: absolute;
right: 20px;
z-index: 5;
top: 25%;
}
.price__wrapper .price__element .preice__body .cetagory__element h4 {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 38px;
text-align: right;
color: #FFF;
}
.price__wrapper .price__element .preice__body .cetagory__element p {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 28px;
text-align: right;
color: #FFF;
}
.price__wrapper .price__element .preice__body a {
margin-top: 10px;
padding: 15px 30px;
}
.price__wrapper .price__element .preice__body ul li {
position: relative;
padding-left: 25px;
margin-bottom: 10px;
}
.price__wrapper .price__element .preice__body ul li::before {
clear: both;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
bottom: 0;
left: 0;
position: absolute;
content: "\f058";
font-family:'FontAwesome';
color: rgb(8, 106, 215);
font-weight: 400;
}
.price__wrapper .price__element .preice__body ul li.active::before {
color: #E6F0FB;
}
.price__wrapper .price__element::after {
clear: both;
top: 0;
right: 0;
position: absolute;
content: "";
width: 199px;
height: 320px;
background-color: #086ad7;
-webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.price__wrapper .price__element:hover {
-webkit-box-shadow: none;
box-shadow: none;
}
.price__wrapper .dots-top-element {
position: absolute;
top: 10%;
left: 15%;
z-index: -1;
}
.price__wrapper .dots-bottom-element {
position: absolute;
bottom: 0%;
right: 15%;
z-index: -1;
}
.price-top-element {
position: absolute;
top: 0%;
left: 0%;
z-index: -1;
}
.theme-btn.style-1 {
background: linear-gradient(90deg, #FB5155 0%, #6129AC 100%);
-webkit-box-shadow: 0px 4px 20px rgba(66, 18, 180, 0.15);
box-shadow: 0px 4px 20px rgba(66, 18, 180, 0.15);
border-radius: 4px;
padding: 15px 30px;
border: 0px !important;
}
.theme-btn.style-1:hover {
color: #0E1871;
background: linear-gradient(90deg, #DED1FA 0%, #FBD0D8 100%);
} .single-blog-card {
background-color: #fff;
border-radius: 7px;
padding: 20px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
margin-top: 40px;
position: relative;
}
.single-blog-card.single-blog-card_2 {
padding: 0;
margin-top: 30px;
border-radius: 0;
}
.single-blog-card.single-blog-card_2 .blog-featured-thumb {
height: 400px !important;
border-radius: 10;
}
.single-blog-card.single-blog-card_2 .blog-featured-thumb_2 {
width: 200px !important;
height: 200px !important;
}
.single-blog-card.single-blog-card_2 .content {
z-index: 1;
padding: 28px;
position: relative;
padding-bottom: 30px;
}
@media (max-width: 1199px) {
.single-blog-card.single-blog-card_2 .content {
padding: 25px;
}
}
.single-blog-card.single-blog-card_2 .content .post-top-meta {
gap: 0 30px;
position: absolute;
top: -10px;
}
@media (max-width: 500px) {
.single-blog-card.single-blog-card_2 .content .post-top-meta {
margin-top: 5px;
position: relative;
top: 0px;
}
}
.single-blog-card.single-blog-card_2 .content .post-top-meta a {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 100%;
color: #5F637A;
padding: 8px 16px;
background: -webkit-gradient(linear, left top, right top, from(#ECE7F7), to(#FDEBEE));
background: linear-gradient(90deg, #ECE7F7 0%, #FDEBEE 100%);
border-radius: 4px;
}
.single-blog-card.single-blog-card_2 .content .post-top-meta a i {
margin-right: 10px;
}
.single-blog-card.single-blog-card_2 .content .post-top-meta a:hover:-moz-any-link {
color: #086ad7;
}
.single-blog-card.single-blog-card_2 .content .post-top-meta a:hover:any-link {
color: #086ad7;
}
.single-blog-card.single-blog-card_2 .content h3 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 36px;
color: #0E1871;
margin: 15px 0 5px;
}
@media (max-width: 1199px) {
.single-blog-card.single-blog-card_2 .content h3 {
margin: 10px 0 3px;
}
}
.single-blog-card.single-blog-card_2 .content h3:hover {
color: #086ad7;
}
.single-blog-card.single-blog-card_2 .author {
margin-top: 25px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 15px;
}
.single-blog-card.single-blog-card_2 .author .author_img {
height: 40px;
width: 40px;
border-radius: 500px;
overflow: hidden;
}
.single-blog-card.single-blog-card_2 .author .author_img img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.single-blog-card.single-blog-card_2 .author h5 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 100%;
color: #0E1871;
margin-bottom: 0;
}
.single-blog-card.single-blog-card_2:hover {
-webkit-box-shadow: none;
box-shadow: none;
}
.single-blog-card.single-blog-card_3 {
padding: 0;
margin-top: 30px;
border-radius: 0;
}
.single-blog-card.single-blog-card_3 .blog-featured-thumb {
position: relative;
width: 200px;
height: 200px;
border-radius: 10;
}
@media (max-width: 576px) {
.single-blog-card.single-blog-card_3 .blog-featured-thumb {
width: auto !important;
}
}
.single-blog-card.single-blog-card_3 .blog-featured-thumb .author_img {
position: absolute;
left: 10px;
bottom: 10px;
height: 40px;
width: 40px;
border-radius: 500px;
overflow: hidden;
}
.single-blog-card.single-blog-card_3 .blog-featured-thumb .author_img img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.single-blog-card.single-blog-card_3 .content {
z-index: 1;
padding: 20px;
position: relative;
}
.single-blog-card.single-blog-card_3 .content .post-top-meta {
gap: 10px;
}
.single-blog-card.single-blog-card_3 .content .post-top-meta a {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 100%;
color: #5F637A;
padding: 8px 16px;
background: linear-gradient(90deg, #ECE7F7 0%, #FDEBEE 100%);
border-radius: 4px;
}
.single-blog-card.single-blog-card_3 .content .post-top-meta a i {
margin-right: 10px;
}
.single-blog-card.single-blog-card_3 .content .post-top-meta a:hover:-moz-any-link {
color: #086ad7;
}
.single-blog-card.single-blog-card_3 .content .post-top-meta a:hover:any-link {
color: #086ad7;
}
.single-blog-card.single-blog-card_3 .content h3 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 36px;
color: #0E1871;
margin: 15px 0 5px;
}
@media (max-width: 1199px) {
.single-blog-card.single-blog-card_3 .content h3 {
margin: 10px 0 3px;
}
}
.single-blog-card.single-blog-card_3 .content h3:hover {
color: #086ad7;
}
.single-blog-card.single-blog-card_3:hover {
-webkit-box-shadow: none;
box-shadow: none;
}
@media (max-width: 991px) {
.single-blog-card {
margin-top: 30px;
}
}
.single-blog-card:hover, .single-blog-card.active {
background-color: #fff;
-webkit-box-shadow: 0px 10px 60px 0px rgba(200, 226, 255, 0.45);
box-shadow: 0px 10px 60px 0px rgba(200, 226, 255, 0.45);
}
.single-blog-card.style-2 {
-webkit-box-shadow: 0px 10px 60px 0px rgba(200, 226, 255, 0.45);
box-shadow: 0px 10px 60px 0px rgba(200, 226, 255, 0.45);
background-color: #fff;
padding: 0;
}
.single-blog-card.style-3 {
padding: 0;
margin-top: 30px;
border-radius: 0;
border: 1px solid rgba(33, 30, 59, 0.1);
}
.single-blog-card.style-3 .blog-featured-thumb {
height: 200px;
border-radius: 0;
}
.single-blog-card.style-3 .content {
z-index: 1;
padding: 28px;
position: relative;
padding-bottom: 30px;
}
@media (max-width: 1199px) {
.single-blog-card.style-3 .content {
padding: 25px;
}
}
.single-blog-card.style-3 .content:before {
top: 0;
left: 0;
width: 100%;
content: "";
z-index: -1;
height: 0%;
position: absolute;
background: #EBF1FF;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.single-blog-card.style-3 .content .post-top-meta {
gap: 0 30px;
}
.single-blog-card.style-3 .content .post-top-meta a {
font-size: 15px;
font-weight: 400;
line-height: 17px;
font-family: roboto;
}
.single-blog-card.style-3 .content .post-top-meta a i {
margin-right: 10px;
}
.single-blog-card.style-3 .content .post-top-meta a:hover:-moz-any-link {
color: #086ad7;
}
.single-blog-card.style-3 .content .post-top-meta a:hover:any-link {
color: #086ad7;
}
.single-blog-card.style-3 .content h3 {
font-size: 24px;
font-weight: 500;
line-height: 30px;
margin: 15px 0 5px;
}
@media (max-width: 1199px) {
.single-blog-card.style-3 .content h3 {
margin: 10px 0 3px;
}
}
.single-blog-card.style-3 .content h3:hover {
color: #086ad7;
}
.single-blog-card.style-3 .content .btn-link-share {
gap: 10px;
margin-top: 15px;
}
@media (max-width: 1199px) {
.single-blog-card.style-3 .content .btn-link-share {
margin-top: 10px;
}
}
.single-blog-card.style-3 .content .btn-link-share a {
font-size: 14px;
font-weight: 500;
line-height: 18px;
color: #086ad7;
text-transform: uppercase;
}
.single-blog-card.style-3 .content .btn-link-share a:first-child i {
margin-left: 15px;
}
.single-blog-card.style-3 .content .btn-link-share a:last-child {
margin: 0;
color: rgba(33, 30, 59, 0.3);
}
.single-blog-card.style-3 .content .btn-link-share a:hover {
color: #211e3b !important;
}
.single-blog-card.style-3:hover .content:before {
height: 100%;
}
.single-blog-card .future-elem {
position: absolute;
top: 10px;
left: 10px;
}
.single-blog-card .future-elem p {
font-family: "Circular Std", sans-serif;
font-style: normal;
font-weight: 450;
font-size: 17px;
line-height: 100%;
color: #FFF;
padding: 8px 16px;
background: #086AD7;
border-radius: 6px;
}
.single-blog-card .blog-featured-thumb {
border-radius: 7px;
background-color: #eee;
height: 210px;
}
.single-blog-card .content {
padding: 30px;
padding-bottom: 40px;
}
.single-blog-card .content .post-author a {
color: #696969;
}
.single-blog-card .content h3 {
font-size: 20px;
font-weight: 700;
margin-top: 10px;
}
.single-blog-card .content .btn-link-share {
margin-top: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.single-blog-card .content .btn-link-share .theme-btn.minimal-btn {
font-size: 14px;
line-height: 1;
color: #696969;
border: 1px solid #e8e8eb;
padding: 20px 30px;
}
.single-blog-card .content .btn-link-share .theme-btn.minimal-btn:hover {
background-color: #086ad7;
color: #fff;
border: 1px solid #086ad7;
}
.single-blog-card .content .btn-link-share a:last-child {
color: #696969;
margin-left: 20px;
font-size: 20px;
}
.single-blog-card .content .btn-link-share a:last-child:hover {
color: #086ad7;
}
.section__title_4 h2 {
font-family: "Syne", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 42px;
line-height: 50px;
color: #0E1871;
margin-bottom: 0;
}
@media (max-width: 768px) {
.section__title_4 h2 {
font-size: 40px;
line-height: 50px;
}
}
@media (max-width: 568px) {
.section__title_4 h2 {
font-size: 35px;
line-height: 45px;
}
}
.section__title_4 h2 span {
position: relative !important;
font-size: 42px;
line-height: 50px;
background: linear-gradient(90deg, #E54C62 75.47%, #642AAB 96.12%);
font-weight: 700;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
display: inline-block;
padding: 0 6px;
}
@media (max-width: 768px) {
.section__title_4 h2 span {
font-size: 40px;
line-height: 50px;
}
}
@media (max-width: 568px) {
.section__title_4 h2 span {
font-size: 35px;
line-height: 45px;
}
}
.gradient-text {
position: relative;
z-index: 1;
display: block;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
word-break: break-word;
}
.kodu_share a:hover {
background: linear-gradient(132.63deg, #5116AD 15.86%, #E1345D 91.61%) !important;
border-radius: 50%;
}
.kodu_share a:hover i {
color: #fff !important;
}h1.fs-lg {
font-size: 150px;
line-height: 80%;
}
@media (min-width: 767px) and (max-width: 991px) {
h1.fs-lg {
font-size: 42px;
}
} .btnd,
.theme-btn,
.video-btn {
line-height: 1;
display: inline-block;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
text-transform: uppercase;
}
.theme-btn {
color: #FFF;
padding: 20px 40px;
border-radius: 5px;
font-size: 14px;
background-color: #086ad7;
border: 1px solid #086ad7;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.theme-btn.theme-2 {
background-color: #ff5e14;
border: 1px solid #ff5e14;
color: #fff;
border-radius: 50px;
padding: 22px 40px;
}
.theme-btn.theme-2:hover {
background-color: #211e3b;
border: 1px solid #211e3b;
}
.theme-btn.theme-2.white {
background: #fff;
-webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
color: #211e3b;
border-color: #fff;
}
.theme-btn.theme-2.white:hover {
background-color: #211e3b;
color: #fff;
border-color: #211e3b;
}
@media (max-width: 767px) {
.theme-btn {
padding: 17px 30px;
font-size: 13px;
}
}
@media (max-width: 580px) {
.theme-btn {
padding: 16px 26px;
}
}
@media (max-width: 480px) {
.theme-btn {
padding: 15px 25px;
}
}
.theme-btn i {
margin-left: 10px;
}
.theme-btn.no-fil {
background-color: transparent;
border-color: rgba(255, 255, 255, 0.2);
-webkit-box-shadow: inherit;
box-shadow: inherit;
margin-left: 15px;
}
@media (max-width: 500px) {
.theme-btn.no-fil {
margin-left: 0;
}
}
.theme-btn.no-fil:hover {
background-color: #086ad7;
border: 1px solid #086ad7;
}
.theme-btn.black {
background-color: #000;
border-color: #000;
-webkit-box-shadow: inherit;
box-shadow: inherit;
color: #FFF;
}
.theme-btn.black:hover {
background-color: #086ad7;
border: 1px solid #086ad7;
}
.theme-btn.minimal-btn {
color: #211e3b;
border: 1px solid #b0cff2;
background: transparent;
-webkit-box-shadow: inherit;
box-shadow: inherit;
}
.theme-btn.minimal-btn:hover {
background-color: #086ad7;
border: 1px solid #086ad7;
-webkit-box-shadow: inherit;
box-shadow: inherit;
color: #FFF;
}
.theme-btn.off-white {
background-color: #efeff1;
color: #211e3b;
border: 1px solid #efeff1;
}
.theme-btn:hover {
background-color: #000;
border: 1px solid #000;
-webkit-box-shadow: inherit;
box-shadow: inherit;
color: #FFF;
}
.hero-slider-2 button i {
transition: 0.4s;
} .hero-1 .single-slide {
padding: 330px 0px 225px;
z-index: 1;
position: relative;
overflow: hidden;
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
.hero-contents h2 {
font-size: 120px !IMPORTANT;
}
}
@media (max-width: 1199px) {
.hero-1 .single-slide {
padding: 230px 0px 175px;
}
}
@media (max-width: 991px) {
.hero-1 .single-slide {
padding: 170px 0px 90px;
}
}
@media (max-width: 767px) {
.hero-1 .single-slide {
padding: 150px 0px 100px;
}
}
.hero-1 .single-slide::before {
position: absolute;
left: 0;
top: 0;
background-image: url(//novosite.distrim.pt/wp-content/plugins/techex-helper/assets/img/slide_bg_circle.png);
width: 60%;
height: 100%;
content: "";
z-index: -1;
opacity: .5;
background-repeat: no-repeat;
}
@media (max-width: 1600px) {
.hero-1 .single-slide::before {
width: 100%;
}
}
.hero-1 .single-slide .hero-contents {
position: relative;
z-index: 2;
}
.hero-1 .single-slide .hero-contents h1 {
font-weight: 900;
}
@media (max-width: 1199px) {
.hero-1 .single-slide .hero-contents h1 {
font-size: 100px;
}
}
@media (max-width: 991px) {
.hero-1 .single-slide .hero-contents h1 {
font-size: 80px;
}
}
@media (max-width: 767px) {
.hero-1 .single-slide .hero-contents h1 {
font-size: 60px;
}
}
.hero-1 .single-slide .hero-contents h2 {
font-size: 100px;
line-height: 1;
font-weight: 900;
margin-bottom: 20px;
}
@media (max-width: 1199px) {
.hero-1 .single-slide .hero-contents h2 {
font-size: 80px;
}
}
@media (max-width: 991px) {
.hero-1 .single-slide .hero-contents h2 {
font-size: 70px;
}
}
@media (max-width: 767px) {
.hero-1 .single-slide .hero-contents h2 {
font-size: 50px;
}
}
.hero-1 .single-slide .hero-contents p {
color: #211e3b;
font-weight: 500;
font-size: 24px;
margin-top: 20px;
}
@media (max-width: 767px) {
.hero-1 .single-slide .hero-contents p {
font-size: 20px;
}
}
.hero-1 .single-slide .hero-contents a {
margin-top: 35px;
margin-right: 20px;
}
@media (max-width: 767px) {
.hero-1 .single-slide .hero-contents a {
margin-top: 20px;
}
}
.hero-1 .single-slide .slide-top-img {
width: 771px;
height: 788px;
position: absolute;
z-index: -1;
background-color: #eee;
right: 0;
top: 0;
content: "";
-webkit-clip-path: polygon(25% 0, 100% 0%, 101% 70%, 66% 80%, 0% 17%);
clip-path: polygon(25% 0, 100% 0%, 101% 70%, 66% 80%, 0% 17%);
background-position: -125px;
}
@media (max-width: 1400px) {
.hero-1 .single-slide .slide-top-img {
width: 634px;
height: 652px;
right: -83px;
background-position: -90px;
}
}
.hero-1 .single-slide .slide-bottom-img {
width: 972px;
height: 486px;
position: absolute;
z-index: -1;
background-color: #eee;
right: 30px;
bottom: 0;
content: "";
-webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 1400px) {
.hero-1 .single-slide .slide-bottom-img {
width: 672px;
height: 386px;
right: 0;
}
}
.hero-1 .single-slide .bg-overlay::before {
background: #211e3b;
opacity: .1;
}
.owl-carousel .owl-item.active .techex-animate-1 {
-webkit-animation: fadeInUp 0.5s ease-in-out 0.5s both;
animation: fadeInUp 0.5s ease-in-out 0.5s both;
}
.owl-carousel .owl-item.active .techex-animate-2 {
-webkit-animation: fadeInUp 0.5s ease-in-out 1s both;
animation: fadeInUp 0.5s ease-in-out 1s both;
}
.owl-carousel .owl-item.active .techex-animate-3 {
-webkit-animation: fadeInUp 0.5s ease-in-out 1.5s both;
animation: fadeInUp 0.5s ease-in-out 1.5s both;
} .hero-1 button.owl-prev i {
background-color: #ffffff;
color: #000;
position: absolute;
height: 40px;
width: 40px;
font-size: 40px;
line-height: 1;
text-align: center;
top: 50%;
left: 38px;
transform: translate(-50%, -50%);
}
.hero-1 button.owl-next i {
background-color: #ffffff;
color: #000;
position: absolute;
height: 40px;
width: 40px;
font-size: 40px;
line-height: 1;
text-align: center;
top: 50%;
right: 0;
transform: translate(-50%, -50%);
}
.hero-1 .owl-dots {
text-align: center;
margin-right: 270px;
padding-bottom: 10px;
}
section.hero-slide-wrapper.hero-1 .owl-dots {
position: absolute;
width: 100%;
bottom: 0;
}
.hero-1 button.owl-dot span {
background: rgb(98, 94, 94);
width: 15px;
height: 15px;
border-radius: 50%;
display: block;
margin: 0 5px;
}
.hero-1 button.owl-dot.active span {
background: rgb(128, 125, 125);
width: 30px;
border-radius: 10px;
border: none;
}
section.hero-slide-wrapper.hero-1 .owl-nav {
position: absolute;
width: 100%;
top: 50%;
left: 0;
} .hero-2 {
position: relative;
background-color: #211e3b;
background-size: cover;
background-repeat: no-repeat;
}
@media (max-width: 1600px) {
.hero-2 {
padding-left: 0;
}
}
.hero-2 .single-slide {
padding: 250px 0px;
z-index: 1;
position: relative;
padding-left: 90px;
}
@media (max-width: 1600px) {
.hero-2 .single-slide {
padding: 180px 0px;
padding-left: 80px;
}
}
@media (max-width: 1199px) {
.hero-2 .single-slide {
padding-left: 30px;
}
}
@media (max-width: 991px) {
.hero-2 .single-slide {
padding: 90px 0px 170px 0px;
}
}
@media (max-width: 767px) {
.hero-2 .single-slide {
padding: 70px 0px 130px 0px;
}
}
@media (max-width: 500px) {
.hero-2 .single-slide {
padding: 65px 0px 120px 0px;
}
}
.hero-2 .single-slide::before,
.hero-2 .single-slide::after {
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
background-image: -webkit-gradient(linear, left top, right top, from(#211e3b), to(rgba(33, 30, 59, 0)));
background-image: linear-gradient(90deg, #211e3b 0%, rgba(33, 30, 59, 0) 100%);
background-image: -ms-linear-gradient(90deg, #211e3b 0%, rgba(33, 30, 59, 0) 100%);
z-index: -1;
}
.hero-2 .single-slide.bg-cover {
background-size: cover;
background-repeat: no-repeat;
background-position: right top;
}
.hero-2 .single-slide .hero-contents {
position: relative;
}
.hero-2 .single-slide .hero-contents h1 {
color: #fff;
font-size: 90px;
font-weight: 900;
line-height: 110%;
margin-top: -10px;
text-transform: capitalize;
}
.hero-2 .single-slide .hero-contents h2 {
color: #fff;
font-size: 90px;
font-weight: 900;
line-height: 110%;
margin-top: -10px;
text-transform: capitalize;
}
@media (max-width: 1600px) {
.hero-2 .single-slide .hero-contents h2 {
font-size: 70px;
}
}
@media (max-width: 767px) {
.hero-2 .single-slide .hero-contents h2 {
font-size: 50px;
}
}
@media (max-width: 500px) {
.hero-2 .single-slide .hero-contents h2 {
font-size: 42px;
}
}
@media (max-width: 375px) {
.hero-2 .single-slide .hero-contents h2 {
font-size: 40px;
}
}
@media (max-width: 1600px) {
.hero-2 .single-slide .hero-contents h1 {
font-size: 70px;
}
}
@media (max-width: 767px) {
.hero-2 .single-slide .hero-contents h1 {
font-size: 50px;
}
}
@media (max-width: 500px) {
.hero-2 .single-slide .hero-contents h1 {
font-size: 42px;
}
}
@media (max-width: 375px) {
.hero-2 .single-slide .hero-contents h1 {
font-size: 40px;
}
}
.hero-2 .single-slide .hero-contents p {
color: #fff;
font-weight: 500;
font-size: 24px;
margin-top: 20px;
}
@media (max-width: 767px) {
.hero-2 .single-slide .hero-contents p {
font-size: 22px;
}
}
@media (max-width: 375px) {
.hero-2 .single-slide .hero-contents a {
margin-top: 20px;
margin-right: 0;
}
}
.hero-2 .owl-theme .owl-dots {
margin-top: 0;
position: absolute;
right: 30px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.hero-2 .owl-theme .owl-dots .owl-dot {
display: block;
width: 10px;
height: 10px;
border-radius: 50px;
text-align: center;
padding: 15px;
position: relative;
}
.hero-2 .owl-theme .owl-dots .owl-dot span {
background-color: #fff;
display: block;
margin: 0;
position: absolute;
left: 50%;
top: 50%;
}
.hero-2 .owl-theme .owl-dots .owl-dot::before {
position: absolute;
left: 0;
top: 0;
background: transparent;
border-width: 3px;
border-color: #fff;
border-style: solid;
border-radius: 50%;
width: 24px;
height: 24px;
content: "";
}
.hero-2 .single-slide .hero-contents .theme-btn.techex-btn i {
margin-top: 4px;
}
.hero-2 .single-slide .hero-contents a {
margin-top: 35px;
margin-right: 20px;
color: #fff;
} .hero-slider-2 button.owl-prev i, 
.hero-slider-2 button.owl-next i  {
background-color: #ffffff;
color: #000;
position: absolute;
height: 40px;
width: 40px;
font-size: 40px;
line-height: 1;
text-align: center;
top: 50%;
left: 80px;
transform: translateY(-50%);
transition: 0.4s;
}
.hero-slider-2 button.owl-next i {
left: auto;
right: 80px;
}  .hero-slider-2 .owl-dots {
text-align: center;
margin-right: 270px;
padding-bottom: 10px;
}
section.hero-slide-wrapper.hero-2 .owl-dots {
position: absolute;
width: 100%;
bottom: 50px;
}
.hero-slider-2 button.owl-dot span {
background: rgb(255, 255, 255);
width: 15px;
height: 15px;
border-radius: 50%;
display: block;
margin: 0 5px;
}
.hero-slider-2 button.owl-dot.active span {
background: rgb(245, 230, 230);
width: 30px;
border-radius: 10px;
border: none;
}
.hero-2 .hero-text {
position: absolute;
top: 70%;
-webkit-transform: translateY(-50%) rotate(-90deg) translateX(23%);
transform: translateY(-50%) rotate(-90deg) translateX(23%);
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 4px;
-webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
font-size: 160px;
font-family: "Circular Std";
font-weight: 900;
letter-spacing: -0.03em;
left: -170px;
z-index: 2;
opacity: 0.15;
}
section.hero-slide-wrapper.hero-2 .owl-nav {
position: absolute;
width: 100%;
top: 50%;
left: 0;
}
@media (max-width:1600px) {
section.hero-slide-wrapper.hero-2 .owl-dots {
position: absolute;
width: 100%;
bottom: 50px;
left: 0;
}
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
section.hero-slide-wrapper.hero-2 .owl-dots {
bottom: 0px;
}
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
section.hero-slide-wrapper.hero-2 .owl-nav {
display: none;
}
} .work-process-grid {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
grid-gap: 80px;
position: relative;
}
@media (max-width: 1199px) {
.work-process-grid {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
grid-gap: 80px;
}
}
@media (max-width: 767px) {
.work-process-grid {
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
grid-gap: 30px;
}
}
.work-process-grid::after {
background-image: url(//novosite.distrim.pt/wp-content/plugins/techex-helper/assets/img/work-process-line.png);
width: 1300px;
height: 154px;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
top: 12%;
content: "";
background-repeat: no-repeat;
z-index: 0;
}
@media (max-width: 1600px) {
.work-process-grid::after {
display: none;
}
}
.work-process-grid .single-work-process {
text-align: center;
margin-top: 30px;
position: relative;
z-index: 1;
}
.work-process-grid .single-work-process:nth-child(2),
.work-process-grid .single-work-process:nth-child(4) {
margin-top: 90px;
}
@media (max-width: 1400px) {
.work-process-grid .single-work-process:nth-child(2),
.work-process-grid .single-work-process:nth-child(4) {
margin-top: 30px;
}
}
.work-process-grid .single-work-process:nth-child(4) {
margin-top: 60px;
}
@media (max-width: 1400px) {
.work-process-grid .single-work-process:nth-child(4) {
margin-top: 30px;
}
}
.work-process-grid .single-work-process:hover .icon {
background-color: #086ad7;
color: #fff;
}
.work-process-grid .single-work-process .icon {
border-radius: 50%;
width: 115px;
height: 115px;
border: 10px solid #fff;
background-color: #e6f0fb;
color: #086ad7;
line-height: 100px;
font-size: 50px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0 auto;
margin-bottom: 25px;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
}
.work-process-grid .single-work-process .icon:hover {
background-color: #086ad7;
color: #fff;
}
.work-process-grid .single-work-process .content h3 {
margin-bottom: 10px;
}
.work-process-grid .single-work-process .content p {
font-size: 16px;
}
.work-process-grid .single-work-process .content span {
display: inline-block;
border: 2px solid #dbe0ea;
border-radius: 50%;
width: 36px;
height: 36px;
line-height: 32px;
background: transparent;
margin: 0 auto;
margin-top: 15px;
} .section-title.heading-new {
position: relative;
z-index: 1;
}
.section-title.heading-new span {
position: absolute;
font-weight: 900;
font-size: 120px;
line-height: 1;
color: #211e3b;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
opacity: .05;
z-index: -1;
top: -40px;
text-transform: uppercase;
margin: 0px auto;
}
@media (max-width: 991px) {
.section-title.heading-new span {
font-size: 90px;
top: -30px;
}
}
@media (max-width: 767px) {
.section-title.heading-new span {
font-size: 80px;
top: -20px;
}
}
@media (max-width: 500px) {
.section-title.heading-new span {
font-size: 60px;
}
}
.section-title.heading-new p {
color: #086ad7;
margin-bottom: 15px;
font-weight: 700;
font-size: 15px;
line-height: 1;
text-transform: uppercase;
}
.section-title.heading-new h1 {
line-height: 50px;
font-weight: 900;
text-transform: capitalize;
} .team-area-style-03 .team-content-bottom {
padding: 20px;
position: relative;
}
.team-area-style-03 .user-identity {
transition: all 0.4s;
}
.team-area-style-03 .social-icons {
position: absolute;
top: 70%;
left: 50%;
opacity: 0;
visibility: hidden;
transition: all 0.4s;
transform: translate(-50%, -50%);
}
.team-area-style-03 .team-wrapper:hover .user-identity {
opacity: 0;
visibility: hidden;
}
.team-area-style-03 .team-wrapper:hover .social-icons {
opacity: 1;
top: 45%;
visibility: visible;
} .techex-case-study-item.case-study-style3{
margin-bottom: 40px;
}
.case-study-style3 .techex-case-study-image {
position: relative;
z-index: 1;
height: 350px;
}
.case-study-style3 a.case-image{
height: 100%;
}
.case-study-style3 .techex-case-study-image img{
height: 100%;
object-fit: cover;
}
.case-study-style3 .techex-case-study-image:before,
.case-study-style3 .techex-case-study-image:after {
content: "";
left: 0;
top: 0;
z-index: 0;
width: 100%;
height: 100%;
position: absolute;
transition: all 0.4s;
opacity: 1;
background: linear-gradient(180deg, rgba(8, 106, 215, 0) 0%, rgba(33, 30, 59, 0.8) 100%);
}
.case-study-style3 .techex-case-study-image:after {
opacity: 0;
background: linear-gradient(180deg, rgba(8, 106, 215, 0) 0%, rgba(8, 106, 215, 0.8) 100%);
}
.case-study-style3 .techex-case-study-image:hover:before {
opacity: 0;
}
.case-study-style3 .techex-case-study-image:hover:after {
opacity: 1;
}
.case-study-style3 .techex-case-study-content {
position: absolute;
bottom: 24px;
left: 24px;
z-index: 2;
width: 100%;
}
.case-study-style3 .case-study-btn-wrap {
position: absolute;
right: 20px;
bottom: 0;
opacity: 0;
visibility: hidden;
transition: all 0.4s;
}
.case-study-style3 .techex-case-study-image:hover .case-study-btn-wrap {
opacity: 1;
visibility: visible;
right: 45px;
}
.techex-iconbox5 h4.rr-addons-feature-bottom-title {
position: absolute;
top: -25px;
left: -3px;
} .techex-testimonial-2 button.owl-prev i, 
.techex-testimonial-2 button.owl-next i{
transition: all 0.4s; 
} 
.techex-testimonial-2 button.owl-prev{
margin-right: 20px;
}
.testimonial-user-author {
display: flex;
align-items: center;
position: relative;
padding-left: 70px;
}
.testimonial-user-author:before{
content: '';
left: 0;
top: 50%;
width: 60px;
height: 1px;
position: absolute;
transform: translateY(-50%);
background-color: rgba(33, 30, 59, 0.3);;
} .busico-hero-slider-v5 .hero-slider-2 button.owl-dot span{
position: relative;
}
.busico-hero-slider-v5 .hero-slider-2 button.owl-dot span:before, 
.busico-hero-slider-v5 .hero-slider-2 button.owl-dot.active span:before{
content: "";
left: 50%;
top: 50%;
width: 20px;
height: 20px;
opacity: 0;
border-radius: 100%;
position: absolute;
transition: all 0.4s;
border: 1px solid #fff;
transform: translate(-50%, -50%);
}
.busico-hero-slider-v5 .hero-slider-2 button.owl-dot.active span:before{
opacity: 1;
} .techex-team-v5 .social-icons li a {
background-color: #e8e8eb;
border: 1px solid #e8e8eb;
}
.techex-team-v5 .social-icons li a:hover {
color: white;
background-color: #086ad7;
border: 1px solid #086ad7;
}
.techex-team-v5 .social-icons li a:hover i{
color: white!important;
}
.techex-team-v5 .team-content-bottom {
position: relative;
}
.techex-team-v5 .social-icons {
position: absolute;
top: 70%;
left: 50%;
opacity: 0;
transition: all 0.4s;
transform: translate(-50%, -50%);
}
.techex-team-v5 .single-item:hover .user-identity h6, 
.techex-team-v5 .single-item:hover .user-identity span{
opacity: 0;
}
.techex-team-v5 .single-item:hover .social-icons{
opacity: 1;
top: 55%;
}
.casestudy-slider-active .owl-dots{
text-align: center;
}
.casestudy-slider-active .owl-dots .owl-dot span {
background-color: #dae9f9;
margin: 0;
width: 10px;
height: 10px;
margin: 0 15px;
border-radius: 10px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
position: relative;
}
.casestudy-slider-active .owl-dots .owl-dot span:before{
content: '';
width: 25px;
height: 25px;
top: 50%;
left: 50%;
opacity: 0;
transition: all 0.4s;
position: absolute;
transform: translate(-50%, -50%);
border: 3px solid #086ad7;
border-radius: 50%;
}
.casestudy-slider-active .owl-dots .owl-dot.active span:before{
opacity: 1;
}
.casestudy-slider-active .owl-dots .owl-dot:hover span,  .owl-dots .owl-dot.active span {
background-color: #086ad7;
} .techex-business-section .elementor-widget-image img {
clip-path: none;
}
.techex-business-thumb{
position: relative;
}
.techex-business-thumb:before{
position: absolute;
left: 0;
bottom: 0;
content: "";
width: 100%;
height: 100%;
background-image: -webkit-gradient(linear, left bottom, left top, from(#211e3b), color-stop(65%, rgba(33, 30, 59, 0.5)), to(rgba(33, 30, 59, 0)));
background-image: linear-gradient(0deg, #211e3b 0%, rgba(33, 30, 59, 0.5) 65%, rgba(33, 30, 59, 0) 100%);
}
.techex-business-section .rr-addons-feature-box-item.rr-addons-feature-icon-center.rr-addons-icon-position-top{
margin-top: -95px;
} .circle canvas {
width: 100px;
height: 100px;
transform: rotate(180deg);
}
.tab-one {
position: relative;
display: block;
background: #f1f5f9;
}
.tab-one__tabs {
position: relative;
display: block;
overflow: hidden;
}
.tab-one__tabs .tab-buttons {
position: relative;
display: block;
margin-left: -13px;
margin-right: -13px;
margin-bottom: 50px;
text-align: center;
}
.tab-one__tabs .tab-buttons li {
position: relative;
display: inline-block;
color: #333333;
font-size: 23px;
line-height: 33px;
font-weight: 700;
text-transform: capitalize;
background: #ffffff;
border-radius: var(--thm-bdr-radius);
padding: 19px 70px 20px;
cursor: pointer;
margin: 0px 8px 0px;
text-align: center;
transition: all 200ms linear;
transition-delay: 0.1s;
}
.tab-one__tabs .tab-buttons li:hover,
.tab-one__tabs .tab-buttons li.active-btn {
color: #ffffff;
background: var(--thm-base);
}
.tab-one__tabs .tabs-content .tab {
position: relative;
display: none;
transform: translateY(35px);
transition: all 600ms ease;
z-index: 10;
}
.tab-one__tabs .tabs-content .tab.active-tab {
display: block;
margin-top: 0px;
transform: translateY(0px);
}
.tab-one__content {
position: relative;
display: block;
max-width: 485px;
width: 100%;
margin-top: 35px;
}
.tab-one__content .title {
position: relative;
display: block;
margin-bottom: 17px;
}
.tab-one__content .title h2 {
color: var(--thm-black);
font-size: 40px;
line-height: 50px;
font-weight: 700;
}
.tab-one__content .text {
position: relative;
display: block;
}
.tab-one__content .text p {
margin: 0;
}
.tab-one__content-list {
position: relative;
display: block;
margin-top: 21px;
}
.tab-one__content-list li {
position: relative;
display: block;
padding-left: 20px;
margin-bottom: 14px;
}
.tab-one__content-list li::before {
position: absolute;
top: 10px;
left: 0;
width: 10px;
height: 10px;
background: var(--thm-base);
border-radius: 50%;
content: "";
}
.tab-one__img {
position: relative;
display: block;
}
.tab-one__img .icon {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
}
.tab-one__img .icon a {
position: relative;
display: block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 25px;
color: #ffffff;
background-color: var(--thm-base);
border-radius: 50%;
margin: 0 auto;
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
z-index: 1;
}
.tab-one__img .icon a:hover {
background-color: var(--thm-base);
color: #ffffff;
}
.tab-one__video-icon span::before {
position: relative;
display: inline-block;
line-height: 50px;
text-align: center;
}
.tab-one__video-icon:before {
position: absolute;
top: -7px;
left: -7px;
right: -7px;
bottom: -7px;
content: "";
border-radius: 50%;
z-index: -1;
background-color: var(--thm-base);
opacity: 0.52;
}
.tab-one__video-icon:after {
position: absolute;
top: -14px;
left: -14px;
right: -14px;
bottom: -14px;
content: "";
border-radius: 50%;
z-index: -1;
background-color: var(--thm-base);
opacity: 0.43;
}
.tab-one__img .icon .ripple,
.tab-one__video-icon .ripple:before,
.tab-one__video-icon .ripple:after {
position: absolute;
top: 50%;
left: 50%;
width: 75px;
height: 75px;
transform: translate(-50%, -50%);
-ms-box-shadow: 0 0 0 0 var(--thm-base);
-o-box-shadow: 0 0 0 0 var(--thm-base);
box-shadow: 0 0 0 0 var(--thm-base);
opacity: .60;
-webkit-animation: ripple 3s infinite;
animation: ripple 3s infinite;
border-radius: 50%;
}
.tab-one__video-icon .ripple:before {
position: absolute;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
content: "";
}
.tab-one__video-icon .ripple:after {
position: absolute;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
content: "";
}.tab-one {
position: relative;
display: block;
background: #f1f5f9;
}
.tab-one__tabs {
position: relative;
display: block;
overflow: hidden;
}
.tab-one__tabs .tab-buttons {
position: relative;
display: block;
margin-left: -13px;
margin-right: -13px;
margin-bottom: 50px;
text-align: center;
margin: 0;
padding: 0;
}
.tab-one__tabs .tab-buttons li {
position: relative;
display: inline-block;
color: #fff;
font-size: 17px;
line-height: 26px;
font-weight: 700;
text-transform: capitalize;
background: #086AD7;
border-radius: 50px;
padding: 10px 40px;
cursor: pointer;
margin: 0px 8px 0px;
text-align: center;
transition: all 200ms linear;
transition-delay: 0.1s;
}
.tab-one__tabs .tab-buttons li:hover,
.tab-one__tabs .tab-buttons li.active-btn {
color: #ffffff;
background: #086AD7;
}
.tab-one__tabs .tabs-content .tab {
position: relative;
display: none;
transform: translateY(35px);
transition: all 600ms ease;
z-index: 10;
}
.tab-one__tabs .tabs-content .tab.active-tab {
display: block;
margin-top: 0px;
transform: translateY(0px);
}
.tab-one__content {
position: relative;
display: block;
max-width: 485px;
width: 100%;
margin-top: 35px;
}
.tab-one__content .title {
position: relative;
display: block;
margin-bottom: 17px;
}
.tab-one__content .title h2 {
color: var(--thm-black);
font-size: 40px;
line-height: 50px;
font-weight: 700;
}
.tab-one__content .text {
position: relative;
display: block;
}
.tab-one__content .text p {
margin: 0;
}
.tab-one__content-list {
position: relative;
display: block;
margin-top: 21px;
}
.tab-one__content-list li {
position: relative;
display: block;
padding-left: 20px;
margin-bottom: 14px;
}
.tab-one__content-list li::before {
position: absolute;
top: 10px;
left: 0;
width: 10px;
height: 10px;
background: #086AD7;
border-radius: 50%;
content: "";
}
.tab-one__img {
position: relative;
display: block;
}
.tab-one__img .icon {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
}
.tab-one__img .icon a {
position: relative;
display: block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 25px;
color: #ffffff;
background-color: #086AD7;
border-radius: 50%;
margin: 0 auto;
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
z-index: 1;
}
.tab-one__img .icon a:hover {
background-color: #086AD7;
color: #ffffff;
}
.tab-one__video-icon span::before {
position: relative;
display: inline-block;
line-height: 50px;
text-align: center;
}
.tab-one__video-icon:before {
position: absolute;
top: -7px;
left: -7px;
right: -7px;
bottom: -7px;
content: "";
border-radius: 50%;
z-index: -1;
background-color: #086AD7;
opacity: 0.52;
}
.tab-one__video-icon:after {
position: absolute;
top: -14px;
left: -14px;
right: -14px;
bottom: -14px;
content: "";
border-radius: 50%;
z-index: -1;
background-color: #086AD7;
opacity: 0.43;
}
.tab-one__img .icon .ripple,
.tab-one__video-icon .ripple:before,
.tab-one__video-icon .ripple:after {
position: absolute;
top: 50%;
left: 50%;
width: 75px;
height: 75px;
transform: translate(-50%, -50%);
-ms-box-shadow: 0 0 0 0 #086AD7;
-o-box-shadow: 0 0 0 0 #086AD7;
box-shadow: 0 0 0 0 #086AD7;
opacity: .60;
-webkit-animation: ripple 3s infinite;
animation: ripple 3s infinite;
border-radius: 50%;
}
.tab-one__video-icon .ripple:before {
position: absolute;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
content: "";
}
.tab-one__video-icon .ripple:after {
position: absolute;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
content: "";
} .techex-toolkit-team-one__single {
text-align: center;
border-radius: 5px;
}
.techex-toolkit-team-one__single .team-one__single-img {
position: relative;
}
.techex-toolkit-team-one__single .team-one__single-img img {
width: 100%;
}
.techex-toolkit-team-one__single .team-one__single-img:before {
content: "";
display: block;
width: 100%;
height: 0%;
background-color: #086AD7;
opacity: 0.90;
position: absolute;
left: 0;
bottom: 0;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
}
.techex-toolkit-team-one__single:hover .team-one__single-img:before {
height: 100%;
}
.techex-toolkit-team-one__single .title-box {
border-width: 0px 1px 1px 1px;
border-style: solid;
border-color: #211e3b36;
padding: 33px;
}
.techex-toolkit-team-one__single .title-box h3 a {
color: #211E3B;
font-size: 20px;
margin-bottom: 5px;
}
.techex-toolkit-team-one__single .title-box p {
margin-bottom: 0px;
}
.techex-toolkit-team-one__single .overlay-content {
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -55%);
visibility: hidden;
opacity: 0;
}
.techex-toolkit-team-one__single:hover .overlay-content {
visibility: visible;
opacity: 1;
}
.techex-toolkit-team-one__single .social-link a {
display: inline-block;
background: transparent;
color: #fff;
width: 36px;
height: 36px;
line-height: 36px;
border-radius: 4px;
font-size: 14px;
border: 1px solid #ffffff52;
}
.techex-toolkit-team-one__single .social-link a:hover {
background: #fff;
color: #086AD7;
border: 1px solid #fff;
}
.techex-toolkit.testimonials-one__carousel .owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 30px;
} .owl-item.active.center {
box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
border-radius: 10px;
}
.techex-toolkit.testimonials-one__carousel .testimonials-one__single {
background: #fff;
padding: 30px 20px;
text-align: center;
border-radius: 10px;
}
.techex-toolkit.testimonials-one__carousel .testimonials-one__single .testimonials-one__single-text p {
font-size: 17px;
line-height: 37px;
margin-bottom: 25px;
}
.techex-toolkit.testimonials-one__carousel .testimonials-one__single .client-info .img {
margin: 30px 0;
position: inherit;
}
.techex-toolkit.testimonials-one__carousel .testimonials-one__single .client-info img {
width: 50px;
height: 50px;
margin: 0 auto;
}
.techex-toolkit.testimonials-one__carousel .testimonials-one__single .client-info .text h2 {
font-size: 18px;
font-weight: 500;
margin-bottom: 5px;
}
.techex-toolkit.testimonials-one__carousel .testimonials-one__single .client-info .text p {
font-size: 14px;
font-weight: 400;
color: #696969;
}
.techex-toolkit.testimonials-one__carousel .owl-dots button span {
width: 16px;
height: 16px;
background-color: #086ad736;
}
.techex-toolkit.testimonials-one__carousel .owl-dots .owl-dot.active span,
.techex-toolkit.testimonials-one__carousel .owl-dots .owl-dot:hover span {
background: #086AD7;
}
.techex-toolkit-star-rating {
padding: 10px 0;
}
.one-star i,
.two-star i,
.three-star i,
.four-star i,
.five-star i {
color: #ddd;
}
.one-star i:nth-child(1) {
color: #FFB800;
}
.two-star i:nth-child(1) {
color: #FFB800;
}
.two-star i:nth-child(2) {
color: #FFB800;
}
.three-star i:nth-child(1) {
color: #FFB800;
}
.three-star i:nth-child(2) {
color: #FFB800;
}
.three-star i:nth-child(3) {
color: #FFB800;
}
.four-star i:nth-child(1) {
color: #FFB800;
}
.four-star i:nth-child(2) {
color: #FFB800;
}
.four-star i:nth-child(3) {
color: #FFB800;
}
.four-star i:nth-child(4) {
color: #FFB800;
}
.five-star i:nth-child(1) {
color: #FFB800;
}
.five-star i:nth-child(2) {
color: #FFB800;
}
.five-star i:nth-child(3) {
color: #FFB800;
}
.five-star i:nth-child(4) {
color: #FFB800;
}
.five-star i:nth-child(5) {
color: #FFB800;
} .techex-toolkit_project-single {
position: relative;
}
.techex-toolkit_project-single .title-box {
position: absolute;
left: 0px;
bottom: 50px;
background: #fff;
padding: 30px;
border-radius: 0px 5px 5px 0px;
opacity: 0;
visibility: hidden;
transition: .3s;
}
.techex-toolkit_project-single:hover .title-box {
opacity: 1;
visibility: visible;
transition: .3s;
}
.techex-toolkit_project-single .title-box p {
margin-bottom: 0;
color: #086AD7;
font-size: 16px;
}
.techex-toolkit_project-single .title-box h3 a {
color: #211E3B;
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
} .footer-section ul li {
display: block;
}
.footer-section ul li i {
margin-right: 15px;
}.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot);src:url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff) format("woff"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot);src:url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff) format("woff"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf) format("truetype"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);src:url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"),url(//novosite.distrim.pt/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f884"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cab:before{content:"\f1ba"}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}.elementor-widget-icon-box .elementor-icon-box-wrapper{display:flex;flex-direction:column;text-align:center}.elementor-widget-icon-box .elementor-icon-box-icon{display:inline-block;flex:0 0 auto;line-height:0}.elementor-widget-icon-box .elementor-icon-box-content{flex-grow:1;width:100%}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}.elementor-widget-icon-box.elementor-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}@media (min-width:-1){.elementor-widget-icon-box.elementor-widescreen-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-widescreen-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-widescreen-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-widescreen-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}}@media (max-width:-1){.elementor-widget-icon-box.elementor-laptop-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-laptop-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-laptop-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-laptop-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}.elementor-widget-icon-box.elementor-tablet_extra-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-tablet_extra-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-tablet_extra-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-tablet_extra-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}}@media (max-width:1024px){.elementor-widget-icon-box.elementor-tablet-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-tablet-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-tablet-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-tablet-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}}@media (max-width:-1){.elementor-widget-icon-box.elementor-mobile_extra-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-mobile_extra-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-mobile_extra-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-mobile_extra-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}}@media (max-width:767px){.elementor-widget-icon-box.elementor-mobile-position-inline-end .elementor-icon-box-wrapper{flex-direction:row-reverse;text-align:end}.elementor-widget-icon-box.elementor-mobile-position-inline-start .elementor-icon-box-wrapper{flex-direction:row;text-align:start}.elementor-widget-icon-box.elementor-mobile-position-block-start .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column;text-align:center}.elementor-widget-icon-box.elementor-mobile-position-block-end .elementor-icon-box-wrapper{align-items:unset!important;flex-direction:column-reverse;text-align:center}}@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}.elementor-widget-n-tabs{--n-tabs-color-accent-fallback:#61ce70;--n-tabs-color-secondary-fallback:#54595f;--n-tabs-default-padding-block:15px;--n-tabs-default-padding-inline:35px;--n-tabs-background-color:transparent;--n-tabs-display:flex;--n-tabs-direction:column;--n-tabs-gap:10px;--n-tabs-heading-display:flex;--n-tabs-heading-direction:row;--n-tabs-heading-grow:initial;--n-tabs-heading-justify-content:center;--n-tabs-heading-width:initial;--n-tabs-heading-overflow-x:initial;--n-tabs-heading-wrap:nowrap;--n-tabs-border-width:1px;--n-tabs-border-color:#d5d8dc;--n-tabs-content-display:flex;--n-tabs-title-color:var(--e-global-color-secondary,var(--n-tabs-color-secondary-fallback));--n-tabs-title-color-hover:#fff;--n-tabs-title-color-active:#fff;--n-tabs-title-background-color:#f1f2f3;--n-tabs-title-background-color-hover:var(--e-global-color-accent,var(--n-tabs-color-accent-fallback));--n-tabs-title-background-color-active:var(--e-global-color-accent,var(--n-tabs-color-accent-fallback));--n-tabs-title-width:initial;--n-tabs-title-height:initial;--n-tabs-title-font-size:1rem;--n-tabs-title-white-space:initial;--n-tabs-title-justify-content-toggle:initial;--n-tabs-title-align-items-toggle:center;--n-tabs-title-justify-content:center;--n-tabs-title-align-items:center;--n-tabs-title-text-align:center;--n-tabs-title-direction:row;--n-tabs-title-gap:10px;--n-tabs-title-flex-grow:0;--n-tabs-title-flex-basis:content;--n-tabs-title-flex-shrink:initial;--n-tabs-title-order:initial;--n-tabs-title-padding-top:var(--n-tabs-default-padding-block);--n-tabs-title-padding-bottom:var(--n-tabs-default-padding-block);--n-tabs-title-padding-left:var(--n-tabs-default-padding-inline);--n-tabs-title-padding-right:var(--n-tabs-default-padding-inline);--n-tabs-title-border-radius:initial;--n-tabs-title-transition:0.3s;--n-tabs-icon-color:var(--e-global-color-secondary,var(--n-tabs-color-secondary-fallback));--n-tabs-icon-color-hover:var(--n-tabs-title-color-hover);--n-tabs-icon-color-active:#fff;--n-tabs-icon-gap:5px;max-width:100%;width:100%;--n-tabs-title-padding-inline-start:var(--n-tabs-title-padding-left);--n-tabs-title-padding-inline-end:var(--n-tabs-title-padding-right);--n-tabs-title-padding-block-start:var(--n-tabs-title-padding-top);--n-tabs-title-padding-block-end:var(--n-tabs-title-padding-bottom)}body.rtl .elementor-widget-n-tabs{--n-tabs-title-padding-inline-start:var(--n-tabs-title-padding-right);--n-tabs-title-padding-inline-end:var(--n-tabs-title-padding-left)}.elementor-widget-n-tabs .e-n-tabs{display:var(--n-tabs-display);flex-direction:var(--n-tabs-direction);gap:var(--n-tabs-gap);min-width:0;text-align:start}.elementor-widget-n-tabs .e-n-tabs-heading{display:var(--n-tabs-heading-display);flex-basis:var(--n-tabs-heading-width);flex-direction:var(--n-tabs-heading-direction);flex-shrink:0;flex-wrap:var(--n-tabs-heading-wrap);gap:var(--n-tabs-title-gap);justify-content:var(--n-tabs-heading-justify-content);overflow-x:var(--n-tabs-heading-overflow-x);-ms-overflow-style:none;scrollbar-width:none}.elementor-widget-n-tabs .e-n-tabs-heading::-webkit-scrollbar{display:none}.elementor-widget-n-tabs .e-n-tabs-heading.e-scroll{cursor:grabbing;cursor:-webkit-grabbing}.elementor-widget-n-tabs .e-n-tabs-heading.e-scroll-active{position:relative}.elementor-widget-n-tabs .e-n-tabs-heading.e-scroll-active:before{content:"";inset-block:0;inset-inline:-1000vw;position:absolute;z-index:2}.elementor-widget-n-tabs .e-n-tabs-content{display:var(--n-tabs-content-display);flex-grow:1;min-width:0}.elementor-widget-n-tabs .e-n-tabs-content>.e-con:not(.e-active){display:none}.elementor-widget-n-tabs .e-n-tabs:not(.e-activated)>.e-n-tabs-content>.e-con:first-child{display:flex}.elementor-widget-n-tabs .e-n-tab-title{align-items:var(--n-tabs-title-align-items-toggle,var(--n-tabs-title-align-items));background-color:initial;border-radius:var(--n-tabs-title-border-radius);border-style:none;border-width:var(--n-tabs-border-width);display:flex;flex-basis:var(--n-tabs-title-flex-basis);flex-direction:var(--n-tabs-title-direction);flex-grow:var(--n-tabs-title-flex-grow);flex-shrink:var(--n-tabs-title-flex-shrink);gap:var(--n-tabs-icon-gap);height:var(--n-tabs-title-height);justify-content:var(--n-tabs-title-justify-content-toggle,var(--n-tabs-title-justify-content));padding-block-end:var(--n-tabs-title-padding-block-end);padding-block-start:var(--n-tabs-title-padding-block-start);padding-inline-end:var(--n-tabs-title-padding-inline-end);padding-inline-start:var(--n-tabs-title-padding-inline-start);position:relative;transition:background var(--n-tabs-title-transition),color var(--n-tabs-title-transition),border var(--n-tabs-title-transition),box-shadow var(--n-tabs-title-transition),text-shadow var(--n-tabs-title-transition),stroke var(--n-tabs-title-transition),stroke-width var(--n-tabs-title-transition),-webkit-text-stroke-width var(--n-tabs-title-transition),-webkit-text-stroke-color var(--n-tabs-title-transition),transform var(--n-tabs-title-transition);-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:var(--n-tabs-title-white-space);width:var(--n-tabs-title-width)}.elementor-widget-n-tabs .e-n-tab-title:focus:not(:focus-visible){outline:none}.elementor-widget-n-tabs .e-n-tab-title span i,.elementor-widget-n-tabs .e-n-tab-title span svg{transition:color var(--n-tabs-title-transition),fill var(--n-tabs-title-transition)}.elementor-widget-n-tabs .e-n-tab-title-text{align-items:center;display:flex;font-size:var(--n-tabs-title-font-size);text-align:var(--n-tabs-title-text-align)}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon{align-items:center;display:flex;flex-direction:column;flex-shrink:0;order:var(--n-tabs-icon-order);overflow:hidden}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon i{font-size:var(--n-tabs-icon-size,var(--n-tabs-title-font-size))}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon svg{height:var(--n-tabs-icon-size,var(--n-tabs-title-font-size));width:var(--n-tabs-icon-size,var(--n-tabs-title-font-size))}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon:empty{display:none}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false]{background-color:var(--n-tabs-title-background-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false],.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] a{color:var(--n-tabs-title-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon i{color:var(--n-tabs-icon-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon svg{fill:var(--n-tabs-icon-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon i:last-child,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon svg:last-child{height:0;opacity:0;transform:translateY(-100vh)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true],.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] a{color:var(--n-tabs-title-color-active)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon i{color:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon svg{fill:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon i:first-child,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon svg:first-child{height:0;opacity:0;transform:translateY(-100vh)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:active,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:focus,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:hover{animation:initial;transform:none}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover,.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover a{color:var(--n-tabs-title-color-hover)}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i{color:var(--n-tabs-icon-color-hover)}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg{fill:var(--n-tabs-icon-color-hover)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover a{color:var(--n-tabs-title-color-active)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i{color:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg{fill:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i:first-child,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg:first-child{height:0;opacity:0;transform:translateY(-100vh)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:active,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:focus,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:hover{animation:initial;transform:none}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i:last-child,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg:last-child{height:auto;opacity:1;transform:none}.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover,.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{background-color:var(--n-tabs-title-background-color-hover);background-image:none}.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true],.elementor .elementor-element.elementor-widget-n-tabs:not(:has(>.elementor-widget-container))>.e-n-tabs[data-touch-mode=true]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover,.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true],.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs[data-touch-mode=true]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{background-color:var(--n-tabs-title-background-color-active);background-image:none}@media (max-width:767px){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:-1){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:1024px){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:-1){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-start .elementor-icon-list-item,.elementor-widget.elementor-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-align-end .elementor-icon-list-item,.elementor-widget.elementor-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-start) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-widescreen-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-widescreen-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-laptop-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-laptop-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-start) .elementor-icon-list-item:after{inset-inline-end:0}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var( --container-widget-align-self,initial );--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer,.e-con>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{min-height:22px;min-width:22px;position:relative}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{height:22px;inset:0;margin:auto;padding:0;position:absolute;width:22px}@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-8793de20.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-504849d7.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-91b02774.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-3023b9b5.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-adb10c2d.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-201f405c.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f99b850d.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-1e5ae9a4.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a3b1f4cc.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 200;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 800;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-31aab863.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d22c99ac.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-a74aaeab.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-abb3ec17.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2) format('woff2');
unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d5e63dc8.woff2) format('woff2');
unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-d3e32451.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-5d3c5f2c.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
font-stretch: 100%;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/roboto-f1a1114d.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-56de4385.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-fa7c06b8.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ca82665f.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-cb40bc4b.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-429238b9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-ef584ac5.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(http://distrim.local/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-c5e794db.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}