@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: .25;
}
.slick-prev:before,
.slick-next:before
{
font-family: 'slick';
font-size: 20px;
line-height: 1;
opacity: .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: .25;
color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
opacity: .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(//mezratech.com/wp-content/plugins/mas-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; } }0  .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-open-lightbox {
z-index: 99;
}
.elementor-custom-embed-play: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;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
}
@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;
}
}
.elementor-icon {
display: inline-flex !important;
} ul.mas-addons-breadcrumbs {
display: block;
margin: 0;
padding: 0;
list-style: none;
}
ul.mas-addons-breadcrumbs li {
display: inline-block;
margin-right: 15px;
}
ul.mas-addons-breadcrumbs li:last-child {
margin: 0;
}
ul.mas-addons-breadcrumbs li a,
ul.mas-addons-breadcrumbs li span.mas-addons-breadcrumbs-text,
ul.mas-addons-breadcrumbs li span.mas-addons-breadcrumbs-separator-icon {
display: block;
}
ul.mas-addons-breadcrumbs li span.mas-addons-breadcrumbs-text {
-webkit-transition: all .4s;
transition: all .4s;
}
span.mas-addons-breadcrumbs-home-icon {
margin-right: 10px;
} .mas-addons-main-menu-wrap.menu-align-end {
justify-content: flex-end;
}
.mas-addons-main-menu-wrap.menu-align-center {
justify-content: center;
}
.mas-addons-main-menu-wrap.menu-align-start {
justify-content: flex-start;
} a.mas-addons-btn,
.mas-addons-btn {
background: var(--accent-color);
line-height: 25px;
font-size: 17px;
padding-bottom: 5px;
position: relative;
display: inline-flex!important;
cursor: pointer;
overflow: hidden;
justify-content: center;
color: #fff;
padding: 15px 30px;
border-radius: 5px;
}
a.mas-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;
}
.elementor-image-box-img {
transition: .4s;
}
.elementor-widget-mas-addons-form .mas-addons-contact-from button[type=submit],
.mas-addons-btn {
position: relative;
z-index: 1;
overflow: hidden;
}
.elementor-widget-mas-addons-form .mas-addons-contact-from button[type=submit]:hover:after,
.mas-addons-btn:hover:after {
visibility: visible;
opacity: 0;
height: 474%;
left: -90px;
top: -83px;
}
.btn-icon svg * {
transition: .3s;
}
.newsletter-form button.form-btn i {
margin-left: 0;
}
.wpcf7-form-control.wpcf7-acceptance span {
display: inline;
} .mas-addons-btn.style-one {
display: inline-block;
overflow: hidden;
transition: all 0.2s linear 0s;
}
.mas-addons-btn span {
transition: all 0s ease !important;
}
.mas-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: 2px;
opacity: 0;
height: 100%;
width: 40px;
transform: translateX(100%);
transition: all 0.2s linear 0s;
}
.mas-addons-btn.style-one:hover {
text-indent: -20px;
}
.mas-addons-btn.style-one:hover:before {
opacity: 1;
text-indent: 0px;
transform: translateX(-25%);
} .mas-addons-btn span {
position: relative;
line-height: 1;
top: 1px;
}
.mas-addons-btn.style-two::before {
position: absolute;
content: "";
transition: 0.3s ease-out;
}
.mas-addons-btn.style-two::before {
top: 0;
bottom: 0;
right: 0;
height: 100%;
width: 100%;
}
.mas-addons-btn.style-two:hover::before {
width: 0%;
} .mas-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: #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;
}
} .mas-addons-btn.style-four::before {
position: absolute;
content: "";
transition: 0.3s ease-out;
}
.mas-addons-btn.style-four::before {
top: 0;
bottom: 0;
left: 0;
height: 100%;
width: 0%;
}
.mas-addons-btn.style-four:hover::before {
width: 100%;
} .mas-addons-feature-box-item {
transition: .4s;
}
.mas-addons-feature-box-item .icon-background-yes .mas-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;
overflow: hidden;
align-items: center;
justify-content: center;
}
.mas-addons-feature-box-item .icon-background-yes .mas-addons-feature-icon svg {
width: 35px;
}
span.mas-addons-feature-icon.icon-type-image img {
object-fit: cover;
}
.mas-addons-feature-icon-wrap {
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
}
.mas-addons-feature-title {
margin-bottom: 18px;
font-size: 20px;
}
.mas-addons-feature-content p {
margin-bottom: 0;
}
.mas-addons-feature-box-item.mas-addons-icon-position-left {
display: inline-flex;
text-align: left;
}
.mas-addons-feature-box-item.mas-addons-icon-position-right {
display: flex;
text-align: right;
flex-direction: row-reverse;
}
.mas-addons-feature-box-item.mas-addons-feature-icon-center {
text-align: center;
}
.mas-addons-feature-box-item.mas-addons-feature-icon-left {
text-align: left;
}
.mas-addons-feature-box-item.mas-addons-feature-icon-left .mas-addons-feature-icon-wrap {
justify-content: flex-start;
}
.mas-addons-feature-box-item.mas-addons-feature-icon-right .mas-addons-feature-icon-wrap {
justify-content: flex-end;
}
.mas-addons-feature-box-item.mas-addons-feature-icon-right {
text-align: right;
}
.mas-addons-feature-icon-wrap i,
.mas-addons-feature-icon-wrap svg,
.mas-addons-feature-icon {
transition: .3s ease-in-out;
;
}
.mas-addons-feature-box-item .icon-background-no .mas-addons-feature-icon svg {
MAX-HEIGHT: 118PX;
}
.mas-addons-feature-box-item .mas-addons-feature-icon i {
font-size: 25px;
}
.mas-addons-feature-box-number {
font-size: 22px;
letter-spacing: -0.73px;
font-weight: 700;
color: #ffffff;
}
.mas-addons-feature-box-number span {
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, .16);
}  a.mas-addons-pricing-table-action span {
transition: none;
}
.mas-addons-pricing-list-wrapper.border_bottom .mas-addons-pricing-list-item:last-child {
border-bottom: none !important;
}
.mas-addons-pricing-list-item.yes {
display: flex;
}
.mas-addons-pricing-list-item-thumbnail {
overflow: hidden;
}
.mas-addons-pricing-list-item-thumbnail img {
height: 100% !important;
width: 100%;
object-fit: cover;
-o-object-fit: cover;
}
.mas-addons-pricing-title {
display: flex;
align-items: center;
}
.mas-addons-pricing-title .mas-addons-pricing-list-item-price {
margin-left: auto;
}
.mas-addons-pricing-list-item-content-title {
display: flex;
font-size: 20px;
font-weight: bold;
}
.mas-addons-pricing-list-item-content-description {
margin: 0;
}
.mas-addons-pricing-list-item-price span {
display: block;
font-size: 20px;
line-height: 20px;
}
.mas-addons-pricing-list-item-content-action {
display: inline-block;
transition: all .3s ease;
}
.mas-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 .mas-addons-pricing-table-features li {
justify-content: flex-start;
}
.left .price-box {
margin-right: auto;
}
.center {
text-align: center;
}
.center.mas-addons-pricing-table-features li {
justify-content: center;
}
.center .price-box {
margin: 0 auto;
}
.right {
text-align: right;
}
.right .mas-addons-pricing-table-features li {
justify-content: flex-end;
}
.right .price-box {
margin-left: auto;
}
.mas-addons-pricing-table-header {
position: relative;
z-index: -1;
}
.mas-addons-pricing-table-header .mas-addons-pricing-table-header-curved svg {
position: absolute;
left: 0;
bottom: 0;
z-index: 1;
width: 100%;
}
.mas-addons-pricing-table-title {
margin: 0 0 16px 0;
font-size: 20px;
font-weight: 400;
}
.mas-addons-pricing-table-subtitle {
margin: 0 0 10px 0;
}
.price-box {
position: relative;
}
.mas-addons-pricing-table-price {
position: relative;
}
.mas-addons-pricing-table-price.mas-addons-discount-price-yes {
display: inline-flex;
align-items: flex-end;
}
.mas-addons-pricing-table-price.mas-addons-discount-price-yes .mas-addons-pricing-table-regular-price {
text-decoration: line-through;
font-size: 20px;
color: #e5e5e5;
line-height: 2.1em;
}
.mas-addons-pricing-table-price svg {
position: absolute;
}
.mas-addons-pricing-table-wrapper .mas-addons-pricing-table-price p.mas-addons-pricing-table-new-price {
font-size: 48px;
font-weight: 600;
letter-spacing: -3.2px;
}
.mas-addons-pricing-table-wrapper .mas-addons-pricing-table-price span.mas-addons-price-period {
font-size: 20px;
font-weight: 600;
letter-spacing: 0px;
}
.mas-addons-pricing-table-price p {
margin: 0;
}
.price-box p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
width: 100%;
}
.mas-addons-pricing-table-features {
margin: 0;
padding: 0;
}
.mas-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;
}
.mas-addons-pricing-table-features li .mas-addons-pricing-li-icon {
margin-right: 7px;
}
.mas-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;
}
.mas-addons-pricing-table-badge-wrapper {
position: relative;
overflow: hidden;
z-index: 1;
transition: all .3s ease;
}
.mas-addons-pricing-table-wrapper {
transition: all .3s ease;
}
.mas-addons-pricing-table-wrapper.transition_top {
transition: all .3s ease;
transform: translateY(0);
-webkit-transform: translateY(0);
}
.mas-addons-pricing-table-wrapper.transition_top:hover {
transform: translateY(-10px);
-webkit-transform: translateY(-10px);
}
.mas-addons-pricing-table-wrapper.transition_bottom {
transition: all .3s ease;
transform: translateY(0);
-webkit-transform: translateY(0);
}
.mas-addons-pricing-table-wrapper.transition_bottom:hover {
transform: translateY(10px);
-webkit-transform: translateY(10px);
}
.mas-addons-pricing-table-wrapper.transition_zoom {
transition: all .3s ease;
transform: scale(1);
-webkit-transform: scale(1);
}
.mas-addons-pricing-table-wrapper.transition_zoom:hover {
transform: scale(1.02);
-webkit-transform: scale(1.02);
}
.mas-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;
}
.mas-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;
}
.mas-addons-pricing-table-promo-label {
display: block;
}
.mas-addons-pricing-table-currency {
position: relative;
}
.mas-addons-pricing-table-price-subtitle {
display: block;
}
.mas-addons-pricing-area .mas-addons-pricing-item ul {
list-style: none;
padding: 0;
margin: 0;
}
a.mas-addons-btn.yearly-btn {
display: none;
}
[data-value-active="yearly"] a.mas-addons-btn.yearly-btn {
display: inline-flex;
}
[data-value-active="yearly"] a.mas-addons-btn.monthly-btn {
display: none;
} .mas-addons-pricing-area .mas-addons-pricing-item {
border: 1px solid #e7e9ed;
color: var(--text-color);
padding: 35px 50px 35px;
background-color: #ffffff;
border-radius: 10px;
position: relative;
}
.mas-addons-pricing-area .mas-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;
}
.mas-addons-pricing-area .mas-addons-pricing-features {
margin-bottom: 30px;
color: var(--text-color);  font-size: 17px;
font-weight: 300;
letter-spacing: -0.2px;
line-height: 29px;
}
.mas-addons-pricing-features img {
margin-right: 10px;
}
.mas-addons-pricing-area .mas-addons-pricing-features p {
margin-bottom: 15px;
}
.mas-addons-pricing-area .mas-addons-pricing-item .mas-addons-price h2 {
font-size: 60px;
color: var(--heading-color);
font-weight: 700;
letter-spacing: -2px;
display: inline-block;
}
.mas-addons-pricing-area .mas-addons-pricing-item .mas-addons-price {
font-weight: 400;
}
.mas-addons-pricing-area .mas-addons-price.mas-addons-price-yearly {
display: none;
} .mas-addons-pricing-item span.price-currency {
font-size: 24px;
letter-spacing: -0.8px;
}
.mas-addons-pricing-item a.mas-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;
}
.mas-addons-pricing-item a.mas-addons-btn.btn-type-boxed i {
margin-left: 40px;
}
.mas-addons-pricing-item a.mas-addons-btn.btn-type-boxed:hover {
-webkit-transform: translatey(-8px);
transform: translatey(-8px);
}  .mas-addons-pricing-item.focused {
z-index: 1;
}
.mas-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;
}
.mas-addons-pricing-area .mas-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.mas-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;
}
.mas-addons-pricing-duration {
color: var(--heading-color);
font-size: 17px;
letter-spacing: -0.09px;
line-height: 29px;
}
.mas-addons-pricing-item .mas-addons-btn-wrapper {
margin-bottom: 12px;
}
.mas-addons-pricing-area .mas-addons-pricing-features strong {
color: #161c2d;
} .mas-addons-pricing-tabs.style-2 .mas-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;
}
.mas-addons-pricing-tabs.style-2 .mas-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;
}
.mas-addons-pricing-tabs.style-2 .mas-addons-pricing-tab a.active {
background-color: var(--accent-color);
color: #fff;
-webkit-transition: .4s;
transition: .4s;
}
.mas-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);
} .mas-addons-price-wrap {
position: relative;
}
.mas-addons-pricing-badge.style-two {
background-color: #2B59FF;
position: relative;
transform: rotate(-90deg);
}
.mas-addons-pricing-badge.style-two:before {
content: "";
position: absolute;
height: 0;
width: 80px;
border-bottom: 80px solid blue;
border-left: 40px solid transparent;
border-right: 40px solid transparent;
} .mas-addons-feature-box-item {
width: auto;
}
.mas-addons-feature-box-item .mas-addons-feature-title {
display: block;
}
.mas-addons-inline-icon-item {
display: flex;
}
.mas-addons-inline-icon-box-wrap .mas-addons-inline-icon-box-icon {
width: 57px;
height: 57px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.mas-addons-inline-icon-box-wrap {
margin-right: 20px;
margin-top: 4px;
}
h4.mas-addons-inline-icon-box-title {
font-size: 20px;
font-weight: 700;
line-height: 30px;
color: var(--heading-color);
margin-bottom: 10px;
}
span.mas-addons-inline-icon-box-icon,
span.mas-addons-inline-icon-box-icon svg,
span.mas-addons-inline-icon-box-icon i {
transition: .3s ease-in-out;
}
.mas-addons-inline-icon-box-content p {
margin-bottom: 0;
} .mas-addons-team-item .member-image img {
object-fit: cover;
width: 100%;
height: 333px;
border-radius: 6px;
}
.mas-addons-team-item .member-name {
font-size: 21px;
letter-spacing: -0.5px;
margin-bottom: 7px;
color: var(--heading-color);
}
.mas-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;
}
.mas-addons-team-item {
margin-bottom: 61px;
}
.mas-addons-team-item {
display: block;
}
.team-style-2 a.mas-addons-team-item {
display: flex;
} .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 !important;
}
.subscribe-form.mas-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 .mas-addons-btn {
width: 100%;
;
}
.mas-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;
}
.mas-addons-service-widget-item .service-thumbnail img {
z-index: 1;
position: relative;
}
.mas-addons-service-widget-item .service-thumbnail {
position: relative;
z-index: 1;
}
.mas-addons-service-widget-item .service-thumbnail-wrapper *,
.mas-addons-service-widget-item .service-content * {
transition: .3s;
}
.mas-addons-service-widget-item {
position: relative;
z-index: 1;
overflow: hidden;
height: 100%;
}
.mas-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;
}
.mas-addons-service-widget-item:hover:after {
border-radius: 0;
transform: translate(-22%, -19%);
visibility: visible;
opacity: 1;
}
.mas-addons-service-widget-item h3.service-title {
display: flex;
align-items: center;
justify-content: space-between;
}
.mas-addons-service-widget-item .service-top-title a {
display: block;
} .mas-addons-heading-title.show-line-yes:after {
content: "";
width: 100%;
background-color: #fee444;
position: absolute;
bottom: 0;
left: 0;
height: 7px;
z-index: -1;
}
.mas-addons-heading-title.show-line-yes {
position: relative;
display: inline-block;
z-index: 1;
} .mas-addons-dual-heading .mas-addons-dual-heading-wrapper {
padding: 5px;
}
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-description {
line-height: 26px;
margin: 30px 0 0 0;
padding: 10px;
font-weight: 400;
}
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-icon {
display: inline-block;
}
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-icon i {
font-size: 36px;
}
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-title {
font-size: 36px;
margin-top: 10px;
}
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-title {
font-size: 30px;
color: #132c47;
text-transform: uppercase;
font-weight: bold;
text-decoration: none;
} .mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-title span {
color: #132c47;
display: initial;
}
@media only screen and (min-width: 320px) and (max-width: 1440px) {
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-title .first-heading,
.mas-addons-dual-heading .mas-addons-dual-heading-wrapper .mas-addons-dual-heading-title .second-heading {
padding: 0;
}
}  .mas-addons-post-widget-item {
transition: 0.4s;
}
.mas-addons-post-widget-item .post-thumbnail {
display: block;
}
.mas-addons-post-widget-item .post-thumbnail img {
object-fit: cover;
height: 261px;
border-radius: 0;
width: 100%;
}
.post-style-style-three .mas-addons-post-widget-item .post-thumbnail {
width: 40%;
max-width: 40%;
min-height: 300px;
height: 100%;
position: relative;
}
.mas-addons-post-widget-item.post-style-style-three .post-thumbnail img {
height: 300px;
}
.post-style-style-three .mas-addons-post-widget-item .post-thumbnail-wrapper {
height: 100%;
}
.mas-addons-post-widget-item a.post-link {
display: block;
}
.post-style-style-three .mas-addons-post-widget-item .post-thumb-link {
display: inline-block;
height: 100%;
}
.mas-addons-post-widget-item.post-style-style-one .post-content-wrap {
padding: 40px 0 40px;
}
.mas-addons-post-widget-item.post-style-style-one {
position: relative;
}
.mas-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;
}
.mas-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;
}
.mas-addons-post-widget-item.post-style-style-one .category-list {
padding-right: 45px;
}
.mas-addons-post-widget-item.post-style-style-one .post-date {
position: relative;
color: rgba(2, 12, 23, 0.65);
}
.mas-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;
}
.post-style-style-three .post-meta-bottom {
display: flex;
align-items: center;
justify-content: space-between;
}
.mas-addons-post-widget-item p {
line-height: 29px;
letter-spacing: -0.2px;
font-size: 15px;
color: var(--text-color);
margin-bottom: 0;
}
.mas-addons-post-widget-item.post-style-style-one .mas-addons-post-widget-item:hover {
box-shadow: 0px 34px 33px 0px rgb(22 28 45 / 13%);
}
.mas-addons-post-widget-item.post-style-style-one .mas-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;
} .mas-addons-post-widget-item.post-style-style-two .post-btn .icon-after {
text-indent: -10px;
transition: all 0.4s ease-in-out;
}
.mas-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;
}
.mas-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);
}
.mas-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);
}
.mas-addons-post-widget-item.post-style-style-two .post-meta-bottom {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 15px;
}
.mas-addons-post-widget-item.post-style-style-two .post-content {
margin: 30px 40px 30px 40px;
overflow: hidden;
}
.mas-addons-post-widget-item.post-style-style-three .post-content {
width: 80%;
}
.mas-addons-post-widget-item.post-style-style-two .post-content .post-btn-wrap {
overflow: hidden;
}
.mas-addons-post-widget-item.post-style-style-two .post-category,
.mas-addons-post-widget-item.post-style-style-three .post-category {
position: absolute;
top: 5%;
right: 5%;
padding: 0;
}
.mas-addons-post-widget-item.post-style-style-two .category a {
font-weight: bold;
font-size: 16px;
line-height: 24px;
color: #057689;
}
.mas-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;
}
.mas-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;
}
.mas-addons-post-widget-item.post-style-style-two .post-meta-bottom .mas-addons-comment:not(:first-child) {
margin-bottom: 0px;
position: relative;
margin-left: 3px;
padding-left: 17px;
}
.mas-addons-post-widget-item.post-style-style-two .post-meta-bottom .mas-addons-comment:before {
position: absolute;
left: 0;
width: 1px;
height: 80%;
background-color: #fff;
content: "";
top: 10%;
}
.mas-addons-post-widget-item.post-style-style-three .post-top-date {
margin-right: 20px;
display: flex;
align-items: center;
}
.mas-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; }
.mas-addons-post-widget-item.post-style-style-one .post-content {
margin: 0px 40px 30px 40px;
}
.mas-addons-post-widget-item.post-style-style-two {
position: relative;
overflow: hidden;
}
.mas-addons-post-widget-item.post-style-style-two .post-title:hover {
color: rgb(255, 87, 34);
}
.mas-addons-post-widget-item.post-style-style-two .post-link {
display: block;
}
.post-thumbnail-wrapper.post-style-style-two {
position: relative;
}
.mas-addons-post-widget-item.post-style-style-two .post-thumbnail-wrapper img {
width: 100%;
object-fit: cover;
height: 100%;
}
.mas-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;
}
.mas-addons-post-widget-item.post-style-style-two:hover .post-thumbnail .image-icon {
transform: scale(1.4);
}
.mas-addons-post-widget-item.post-style-list {
display: flex;
position: relative;
margin-bottom: 30px;
}
.mas-addons-post-widget-item.post-style-list .post-thumbnail-wrapper .post-link {
height: 100%;
}
.mas-addons-post-widget-item.post-style-list .post-thumbnail-wrapper .post-thumbnail {
height: 100%;
}
.mas-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;
}
.mas-addons-post-widget-item.post-style-list .post-thumbnail-wrapper {
width: 57%;
padding-right: 30px;
}
.mas-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;
} .mas-addons-pagination a,
.mas-addons-pagination span.current {
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
color: #262729;
font-size: 18px;
font-weight: 500;
border: 1px solid rgba(38, 39, 41, 0.1);
margin: 0px 5px;
transition: .4s;
}
.mas-addons-pagination {
margin-top: 30px;
}
.mas-addons-pagination span.current {
color: #fff;
background-color: #5034FC;
}
.mas-addons-pagination {
margin-left: -5px;
}
.mas-addons-pagination a:hover {
color: #fff;
background-color: #5034FC;
}
.mas-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;
}
.mas-addons-post-widget-wrap.hover-one:hover .post-thumbnail img {
transform: scale(1.1);
}
.mas-addons-post-widget-wrap.hover-one .post-thumbnail {
overflow: hidden;
}
.mas-addons-post-widget-item.post-style-style-two:hover .mas-addons-post-widget-item .post-content-wrap {
opacity: 1;
border: 0;
z-index: 999;
}
.mas-addons-post-widget-item.post-style-style-two:hover .post-content-wrap {
opacity: 1;
visibility: visible;
bottom: 0;
}
@media (max-width: 768px) {
.mas-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;
}
.mas-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;
}
.mas-addons-addon-post-navigation .nav-links a:hover {
border-color: #5034FC;
}
.mas-addons-addon-post-navigation .nav-links a:hover:after {
transform: scale(1);
}
.mas-addons-addon-post-navigation .nav-links a .nav-icon svg {
width: 17px;
}
.mas-addons-addon-post-navigation .nav-links a .nav-icon i {
font-size: 17px;
}
.mas-addons-addon-post-navigation .nav-links .nav-previous a .nav-icon {
margin-right: 14px;
}
.mas-addons-addon-post-navigation .nav-links .nav-next a .nav-icon {
margin-left: 14px;
} .mas-addons-back-to-top-wraper .mas-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);
}
.mas-addons-back-to-top-wraper .mas-addons-icon.sticky-active {
opacity: 1;
visibility: visible;
transition: all .4s linear;
z-index: 111;
transform: translatey(0);
}
.elementor-editor-active .mas-addons-back-to-top-wraper .mas-addons-icon {
opacity: 1;
visibility: visible;
} .mas-addons-portfolio-item {
position: relative;
overflow: hidden;
}
.mas-addons-portfolio-item img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
width: 100%;
object-fit: cover; margin-bottom: 0 !important;
}
a.mas-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.mas-addons-portfolio-content .mas-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.mas-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;
}
.mas-addons-portfolio-item:hover a.mas-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.mas-addons-portfolio-content.content-postion-below-image {
display: block;
position: relative;
padding: 40px 30px;
}
.mas-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);
}
.mas-addons-hover-rotate .mas-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);
}
.mas-addons-hover-rotate .mas-addons-portfolio-item img {
transition: .4s;
}
a.mas-addons-portfolio-content.content-postion-disabled {
display: none;
} .mas-addons-post-widget-item .post-thumbnail {
overflow: hidden;
}
.mas-addons-post-widget-item .post-thumbnail:hover img {
transform: scale(1.1);
}
.mas-addons--blog-thumb {
position: relative;
}
.mas-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;
}
.mas-addons--blog-thumb img {
width: 100%;
height: 100%;
display: inline-block;
}
.mas-addons--blog-thumb .owl-carousel .owl-item img {
height: 100% !important;
}
.mas-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;
}
.mas-addons--blog .owl-nav {
position: absolute;
right: 0;
bottom: -40px;
}
.mas-addons-contact-from button i {
margin-left: 20px;
}
.business-subs-form-01 button i {
margin-left: 0px;
}
.mas-addons--blog .owl-nav i {
color: #FFFFFF;
font-size: 24px;
}
.mas-addons--blog .owl-nav .owl-prev {
margin-right: 60px;
}
.mas-addons--blog .owl-nav i:hover {
color: #FEE444;
}
.fIngo--tn-single.style-five .fIngo--tn-icon {
position: static;
} .mas-addons-vertical-menu-wrap ul {
padding: 0;
margin: 0;
list-style: none;
}
.mas-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;
}
.mas-addons-vertical-menu a:hover,
.mas-addons-vertical-menu li.current-menu-item>a {
color: var(--accent-color);
} .mas-addons-rev-btn:hover img {
margin-left: 15px;
}
.mas-addons-rev-btn img {
transition: .4s;
margin-left: 7px;
;
} .sticky-wrapper {
width: 100%;
height: auto!important;
}
.sticky-wrapper.is-sticky>.mas-addons-sticky-yes { opacity: 0;
transform: translateY(-50%);
}
.sticky-wrapper.is-sticky>.mas-addons-sticky-yes.reveal-sticky { opacity: 1;
transform: translate(0px);
transition: all 0.3s;
} .main-navigation ul.navbar-nav .menu-item-has-children .sub-menu.mas-addons-megamenu-builder-content-wrap {
padding: 0 !important;
border: none;
} .mas-addons-countdown .mas-addons-countdown__count {
font-size: 120px;
letter-spacing: -3.96px;
font-weight: 700;
color: var(--heading-color);
line-height: 1.3;
}
.mas-addons-countdown li {
text-align: center;
display: inline-block;
}
.mas-addons-countdown .text {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.2px;
color: var(--heading-color);
font-weight: 700;
}
ul.mas-addons-countdown {
margin: 0;
padding: 0;
list-style: none;
}
.mas-addons-countdown-item.show-no {
display: none;
}
li.mas-addons-countdown-item.count-down-block .text {
display: block;
}
li.mas-addons-countdown-item.count-down-inline .text {
display: inline-block;
}
.mas-addons-countdown-wrapper .divider {
position: relative;
} .mas-addons--contactform-wraper.absolute {
position: relative;
}
.mas-addons--contactform-wraper.absolute input[type=submit],
.mas-addons--contactform-wraper.absolute button[type=submit] {
position: absolute;
top: 0;
right: 0;
}
.mas_addons--contact-form- p:empty:before {
display: none;
}
.mas-addons--contactform-wraper p:empty:before {
display: none;
}
.mas-addons--contactform-wraper input:not([type=checkbox]) {
height: 70px;
padding: 20px;
border-radius: 10px;
max-width: 100%;
}
.mas-addons--contactform-wraper input[type=submit],
.mas-addons--contactform-wraper button[type=submit] {
background-color: #6A26DA;
color: #fff;
font-weight: 600;
height: 70px;
width: 172px;
padding: 0px;
transition: all 0.4s ease-in-out;
}
form.wpcf7-form {
display: inline-block;
}
.mas-addons--contact-icon-before {
position: relative;
}
.mas-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%;
;
}
.mas-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;
}
.mas-addons--contactform-wraper.mas-addons-contact-from {
position: relative;
} .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;
}
.mas-addons-login-form-wrapper form .log-remember label,
.mas-addons-register-form form .reg-remember label {
display: flex;
align-items: center;
}
.mas-addons-register-wrapper form .reg-remember label a {
margin-left: 3px;
} .mas-addons-form .mas-addons-input {
height: 56px;
width: 100%;
padding: 20px;
border-radius: 40px;
} .mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title {
position: relative;
display: flex;
overflow: hidden;
align-items: center;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title h3 {
width: 100%;
font-size: 15px;
}
.mas-addons-accordion-single-item h3 {
font-weight: 600;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title:hover {
cursor: pointer;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-active-inactive-icon {
position: relative;
margin-left: 15px;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title span.mas-addons-tab-title-icon {
position: relative;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-active-icon i,
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-inactive-icon i,
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title span.mas-addons-tab-title-icon i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-active-icon svg,
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-inactive-icon svg,
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title span.mas-addons-tab-title-icon svg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title.active .mas-addons-inactive-icon,
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-active-icon {
display: none;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title.active .mas-addons-active-icon {
display: block;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content {
display: none;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-title .mas-addons-active-inactive-icon {
width: 70px;
margin-left: auto;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper {
display: flex;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper.has-image-yes .mas-addons-accordion-text {
width: 60%;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper.has-image-yes .mas-addons-accordion-image {
width: 40%;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper.has-image-yes.image-position-left .mas-addons-accordion-text {
order: 2;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper.has-image-yes.image-position-left .mas-addons-accordion-image {
order: 1;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper .mas-addons-accordion-button a {
display: inline-block;
}
@media only screen and (max-width: 767px) {
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper {
flex-direction: column;
}
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper.has-image-yes .mas-addons-accordion-text,
.mas-addons-accordion-items .mas-addons-accordion-single-item .mas-addons-accordion-content .mas-addons-accordion-content-wrapper.has-image-yes .mas-addons-accordion-image {
width: 100%;
}
.mas-addons-post-widget-item.post-style-style-three .post-content {
width: 100%;
}
}
.mas-addons-accordion-items .mas-addons-accordion-single-item:last-child {
margin-bottom: 0px !important;
padding-bottom: 0px !important;
} .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;
}
.mas-addons-progress-bar .ldBar-label:after {
content: "%";
display: inline;
position: absolute;
}
.ldBar.no-percent .ldBar-label:after {
content: ""
}
[class*="mas-addons-progress-bar-"].line {
position: relative;
}
[class*="mas-addons-progress-bar-"].line .ldBar-label {
position: absolute;
top: -12px;
right: 0;
}
[class*="mas-addons-progress-bar-"].line-bubble {
position: relative;
}
[class*="mas-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*="mas-addons-progress-bar-"].circle {
position: relative;
}
[class*="mas-addons-progress-bar-"].circle .ldBar-label {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
[class*="mas-addons-progress-bar-"].circle h3 {
position: absolute;
bottom: -20px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
[class*="mas-addons-progress-bar-"].fan {
position: relative;
}
[class*="mas-addons-progress-bar-"].fan svg {
margin-top: -40%;
}
[class*="mas-addons-progress-bar-"].fan h3 {
position: absolute;
bottom: -20px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
[class*="mas-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*="mas-addons-progress-bar-"].fan .left-title {
position: absolute;
left: 0;
bottom: -10px;
}
[class*="mas-addons-progress-bar-"].fan .right-title {
position: absolute;
bottom: -10px;
right: 0;
}
.mas-addons-progress-bar svg:not(:root) {
overflow: hidden;
height: inherit;
}
.mas-addons-progress-bar-title {
font-size: 16px;
font-weight: 600;
} span.mas-addons-pricing-badge {
background-color: var(--accent-color);
position: absolute;
top: 0;
right: 0;
padding: 0 14px;
border-radius: 8px 8px 8px 8px;
}
span.mas-addons-pricing-badge:before {
height: 0;
width: 0;
right: -5.5px;
top: 0.1px;
border-bottom: 6px solid transparent;
border-right: 6px solid transparent;
}
span.mas-addons-pricing-badge:before,
span.mas-addons-pricing-badge:after {
content: "";
position: absolute;
}
span.mas-addons-pricing-badge:after {
height: 0;
width: 0;
bottom: 0;
left: -9px;
border-top: 11px solid #F47530;
border-bottom: 14px solid #F47530;
border-left: 17px solid transparent;
}   .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;
}
} .mas-addons-card-images {
position: relative;
}
.mas-addons-card-images img {
overflow: hidden;
width: 100%;
}
.mas-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;
}
.mas-addons-single-card:hover .mas-addons-card-number {
opacity: 1;
visibility: visible;
margin-left: 30px;
}
.mas-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%;
}
.mas-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%);
}
.mas-addons-card-title {
font-size: 22px;
color: #fff;
font-weight: 700;
margin-bottom: 5px;
line-height: 33px;
}
.mas-addons-card-discription {
color: rgba(255, 255, 255, 0.7);
font-size: 18px;
}
.mas-addons-single-card.hover-one:hover .mas-addons-card-images img {
transform: scale(1.1);
}
.mas-addons-single-card.hover-one .mas-addons-card-images {
overflow: hidden;
}
.mas-addons-card-images img {
transition: .7s;
} .mas-addons-tab-content-single {
display: none;
}
.mas-addons-tab-content-single.current {
display: block;
position: relative;
}
.mas-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;
}
.mas-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;
}
.mas-addons--tab-menu ul.tabs>li .mas-addons-tab-icon {
margin-right: 8px;
font-size: 18px;
width: 18px;
}
.mas-addons--tab-menu {
text-align: center;
}
.mas-addons--tab-menu ul.tabs>li.current {
border-color: #FD4C5C;
color: #FD4C5C;
}
.mas-addons-elm-edit-popup .mfp-content {
max-width: 80vw;
max-height: 80vh;
}
.mas-addons-elm-edit-wrap {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
border: 1px solid #ffa500d9;
transition: .3s;
}
a.mas-addons-elm-edit {
transform: translatey(-100%);
background: #ffa500d9;
color: #fff;
padding: 0 13px;
}
.toggle-password {
cursor: pointer;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 15px;
color: rgba(73, 100, 136, 0.5);
} @media only screen and (min-width: 1350px) {
.elementor-section.elementor-section-boxed>.elementor-container {
max-width: 1320px;
}
}
@media only screen and (min-width:1025px) and (max-width:1200px) {
.mas-addons-pricing-area .container-fluid {
padding: 0 100px;
}
.mas-addons-pricing-item-wrap {
margin-bottom: 30px;
}
.mas-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) {
.mas-addons-pricing-item-wrap {
margin-bottom: 30px;
}
}
@media only screen and (max-width:991px) {
.mas-addons-pricing-item-wrap {
margin-bottom: 30px;
}
.mas-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) {
.mas-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 .mas-addons-btn {
width: 100%;
} .mas-addons-main-menu-wrap.menu-align-tablet-end {
justify-content: flex-end;
}
.mas-addons-main-menu-wrap.menu-align-tablet-center {
justify-content: center;
}
.mas-addons-main-menu-wrap.menu-align-tablet-start {
justify-content: flex-start;
}
.mas-addons-post-widget-item.post-style-style-three .post-content {
width: 100%;
}
}
@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 .mas-addons-btn {
width: 100%;
} .mas-addons-main-menu-wrap.menu-align-mobile-end {
justify-content: flex-end;
}
.mas-addons-main-menu-wrap.menu-align-mobile-center {
justify-content: center;
}
.mas-addons-main-menu-wrap.menu-align-mobile-start {
justify-content: flex-start;
}
.nice-select ul.list {
width: 100%;
margin-top: 0;
}
.mas-addons-addon-post-navigation .nav-links {
display: block;
}
.mas-addons-addon-post-navigation .nav-links .nav-previous {
margin-bottom: 10px;
}
.mas-addons--contactform-wraper.absolute input[type=submit],
.mas-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;
}
}
.mas-addons-form .mas-addons-link {
display: inherit;
margin: 0;
margin-top: 30px;
}
.mas-addons-form .mas-addons-link p {
margin: 0;
}
.mas-addons-form .mas-addons-link p {
margin-left: 9px;
}
.mas-addons-login-form-wrapper .password-field {
position: relative;
}
.mas-addons-login-form-wrapper .forgetpassword {
right: 0;
top: 50%;
}
.elementor-widget-mas-addons-lost-password .elementor-widget-container {
text-align: center;
} .mas-modal-button .mas-modal-image-action {
display: inline-block;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
text-align: center;
z-index: 1;
overflow: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.top-to-middle {
-webkit-transform: translate(-50%, -60%);
transform: translate(-50%, -60%);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.mas-modal-item.modal-vimeo.bottom-to-middle {
-webkit-transform: translate(-50%, -30%);
transform: translate(-50%, -30%);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.mas-modal-item.active.modal-vimeo.bottom-to-middle {
z-index: 9999;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.mas-modal-item.modal-vimeo.right-to-middle {
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
-webkit-transform: translate(-30%, -50%);
transform: translate(-30%, -50%);
}
.mas-modal-item.active.modal-vimeo.right-to-middle {
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 9999;
}
.mas-modal-item.modal-vimeo.left-to-middle {
-webkit-transform: translate(-70%, -50%);
transform: translate(-70%, -50%);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.mas-modal-item.active.modal-vimeo.left-to-middle {
z-index: 9999;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.mas-modal-item.modal-vimeo.zoom-in {
-webkit-transform: translate(-50%, -50%) scale(0.5);
transform: translate(-50%, -50%) scale(0.5);
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.mas-modal-item.active.modal-vimeo.zoom-in {
z-index: 9999;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
}
.mas-modal-item.modal-vimeo.zoom-out {
-webkit-transform: translate(-50%, -50%) scale(1.5);
transform: translate(-50%, -50%) scale(1.5);
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.mas-modal-item.active.modal-vimeo.zoom-out {
z-index: 9999;
display: block;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
}
.mas-modal-item.modal-vimeo.left-rotate {
opacity: 0;
-webkit-transition: all 0.8s ease;
transition: all 0.8s ease;
-webkit-perspective: 1000;
perspective: 1000;
-webkit-transform: translate(-50%, -50%) rotateX(90deg);
transform: translate(-50%, -50%) rotateX(90deg);
-webkit-transform-origin: center center;
transform-origin: center center;
}
.mas-modal-item.active.modal-vimeo.left-rotate {
opacity: 1;
z-index: 9999;
-webkit-transform: translate(-50%, -50%) rotateX(0);
transform: translate(-50%, -50%) rotateX(0);
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn {
position: absolute;
top: -40px;
right: -40px;
cursor: pointer;
height: 40px;
width: 40px;
border-radius: 50%;
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn span {
display: block;
height: 100%;
width: 100%;
position: absolute;
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn span::before {
content: "";
position: absolute;
height: 2px;
width: 20px;
background: #fff;
transform: translate(-50%, -50%) rotate(45deg);
top: 50%;
left: 50%;
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn span::after {
content: "";
position: absolute;
height: 20px;
width: 2px;
background: #fff;
transform: translate(-50%, -50%) rotate(45deg);
top: 50%;
left: 50%;
}
.mas-modal-overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
z-index: -1;
background: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
display: none;
}
.mas-modal-overlay.active {
opacity: 1;
z-index: 1000;
display: block;
transition: all 0.3s ease;
}
.mas-modal-item.image-gallery .mas-modal-element {
display: flex;
flex-wrap: wrap;
}
.mas-modal-item.image-gallery .mas-modal-element.column-one .mas-modal-element-card {
width: 100%;
}
.mas-modal-item.image-gallery .mas-modal-element.column-two .mas-modal-element-card {
width: 50%;
}
.mas-modal-item.image-gallery .mas-modal-element.column-three .mas-modal-element-card {
width: 33.33%;
}
.mas-modal-item.image-gallery .mas-modal-element.column-four .mas-modal-element-card {
width: 25%;
}
.mas-modal-item.image-gallery .mas-modal-element.column-five .mas-modal-element-card {
width: 20%;
}
.mas-modal-item.image-gallery .mas-modal-element.column-six .mas-modal-element-card {
width: 16.66%;
}
.mas-modal-item {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.mas-modal-item.modal-vimeo {
opacity: 0;
-webkit-transform: translate(-50%, -60%);
transform: translate(-50%, -60%);
height: auto;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
visibility: hidden;
}
@media (max-width: 991px) {
.mas-modal-item.modal-vimeo {
height: 100%;
}
.mas-modal-item.modal-vimeo::-webkit-scrollbar {
display: none;
}
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-modal-element img {
display: block;
width: 100%;
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-modal-element .mas-modal-element-card .mas-modal-element-card-body p {
margin: 0;
}
.mas-modal-item.modal-vimeo .mas-modal-content .mas-modal-element .mas-modal-element-card img {
display: block;
width: 100%;
}
.mas-modal-item.modal-vimeo .mas-modal-content {
position: relative;
}
.mas-modal-item .mas-modal-content .mas-modal-element iframe {
display: block;
height: 100%;
width: 100%;
}
.mas-modal-item.active.modal-vimeo {
opacity: 1;
z-index: 2000;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
visibility: visible;
}
.mas-modal-button.mas-modal-btn-fixed-width-yes .mas-modal-image-action {
position: relative;
}
.mas-modal-button.mas-modal-btn-fixed-width-yes .mas-modal-image-action span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}
.mas-modal-wrapper .mas-modal-item.mas-content-overflow-x- {
overflow-x: hidden;
}
.mas-modal-wrapper .mas-modal-item.mas-content-overflow-y- {
overflow-y: scroll;
} .mas-content-switcher-toggle-switch-label {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.mas-content-switcher-toggle-switch-label input {
opacity: 0;
width: 0;
height: 0;
}
.mas-content-switcher-toggle-switch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
display: block;
border-style: solid;
}
.mas-content-switcher-toggle-switch-slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 0;
top: 50%;
transform: translateY(-50%);
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked+.mas-content-switcher-toggle-switch-slider {
background-color: #2196F3;
}
input:focus+.mas-content-switcher-toggle-switch-slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked+.mas-content-switcher-toggle-switch-slider:before {
-webkit-transform: translate(34px, -50%);
-ms-transform: translate(34px, -50%);
transform: translate(34px, -50%);
}
.mas-content-switcher-toggle-inner {
display: flex;
align-items: center;
flex-direction: row;
padding: 30px 0;
}
.mas-content-switcher-toggle.mas_switecher_left {
justify-content: flex-start;
display: flex;
}
.mas-content-switcher-toggle.mas_switecher_center {
justify-content: center;
display: flex;
}
.mas-content-switcher-toggle.mas_switecher_right {
justify-content: flex-end;
display: flex;
}
.mas-content-switcher-toggle.mas_switecher_justify {
display: block;
}
.mas-content-switcher-toggle.mas_switecher_justify .mas-content-switcher-toggle-inner {
justify-content: center;
}
.mas-content-switcher-toggle-label-1 {
cursor: pointer;
}
.mas-content-switcher-toggle-label-2 {
cursor: pointer;
} .mas-list-group-wrapper {
margin: 0;
padding: 0;
list-style: none;
}
.mas-list-group .mas-list-group-wrapper.layout_1 {
display: flex;
flex-direction: column;
}
.mas-list-group .mas-list-group-wrapper.layout_2 {
display: flex;
flex-direction: row;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item:last-child{
padding-bottom: 0!important;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item,
.mas-list-group .mas-list-group-wrapper .mas-list-group-item a {
position: relative;
line-height: 1;
display: flex;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item.mas-icon-center,
.mas-list-group .mas-list-group-wrapper .mas-list-group-item.mas-icon-center a {
flex-direction: column;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item.mas-icon-right .mas-list-group-icon {
order: 2;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon .mas-list-group-icon-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon .mas-list-group-icon-image {
display: flex;
}
.mas-list-group .mas-list-group-wrapper.layout_1 .mas-list-group-item:after {
position: absolute;
bottom: 0;
width: 100%;
content: "";
left: 0;
}
.mas-list-group .mas-list-group-wrapper.layout_2 .mas-list-group-item:after {
position: absolute;
right: 0;
height: 100%;
content: "";
top: 0;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon.yes {
position: relative;
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon.yes i,
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon.yes .mas-list-group-icon-image,
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon.yes .mas-list-group-icon-number {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.mas-list-group .mas-list-group-wrapper .mas-list-group-item .mas-list-group-icon.yes .mas-list-group-icon-number {
line-height: 0;
} .busico-pricing-page .mas-addons-pricing-table-description,
.busico-service-page .mas-addons-pricing-table-description {
display: none;
} a.techza-author-wrap {
display: flex;
align-items: center;
}
.techza-author-avatar {
width: 40px;
height: 40px;
overflow: hidden;
margin-right: 10px;
border-radius: 100%;
flex-shrink: 0;
}
.techza-author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
} .style-one .techza-post-meta{
display: block;
}
.techza-blog-wrap {
overflow: hidden;
transition: all 0.4s;
}
.techza-post-meta {
display: flex;
align-items: center;
justify-content: space-between;
}
a.techza-post-btn, 
a.techza-post-btn {
display: flex;
align-items: center;
}
.btn-icon, 
.btn-icon {
line-height: 1;
position: relative;
top: 2px;
}
.techza-author-data h5, 
.techza-author-data h5{
display: flex;
align-items: center;
}
.techza-author-data h5 svg, 
.techza-author-data h5 svg{
margin-right: 10px;
}
.style-three .techza-blog-wrap {
display: flex;
align-items: center;
}
.style-three .techza-blog-thumbnail {
flex: 0 0 50%;
}
.techza-blog-thumbnail img{
width: 100%;
height: 100%;
object-fit: cover;
}
.style-three .techza-blog-thumbnail img, 
.style-four .techza-blog-thumbnail img{
height: 309px;
}
@media (max-width: 767px) {
.style-three .techza-blog-wrap {
display: block;
}
.style-three .techza-blog-thumbnail img, 
.style-four .techza-blog-thumbnail img{
height: auto;
}
}
.style-four .techza-post-meta {
justify-content: start;
}
.style-four .techza-author-data{
margin-right: 15px;
}
.style-four .techza-author-data:last-child{
margin-right: 0;
}
.techza-blog-thumbnail a{
display: block;
}.mas-creative-btn-wrap {
display: inline-block;
--ha-ctv-btn-bg-clr: #fff;
--ha-ctv-btn-bg-hvr-clr: #4243DC;
--ha-ctv-btn-border-clr: #4243DC;
--ha-ctv-btn-border-hvr-clr: #4243DC;
--ha-ctv-btn-txt-clr: #4243DC;
--ha-ctv-btn-txt-hvr-clr: #fff;
width: 100%;
}
.mas-creative-btn-wrap .mas-creative-btn {
position: relative;
z-index: 0;
display: inline-block;
padding: 15px 25px;
max-width: 100%;
border-color: var(--ha-ctv-btn-border-clr);
border-radius: 5px;
background: var(--ha-ctv-btn-bg-clr);
color: var(--ha-ctv-btn-txt-clr);
text-align: center;
text-decoration: none;
font-size: 14px;
line-height: 1;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.mas-creative-btn-wrap .mas-creative-btn:hover {
border-color: var(--ha-ctv-btn-border-hvr-clr);
background: var(--ha-ctv-btn-bg-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--estilo {
padding: 25px 80px;
border-width: 3px;
border-style: solid;
border-radius: 0;
cursor: pointer;
}
.mas-creative-btn-wrap .mas-stl--estilo:after {
position: absolute;
z-index: -1;
background: var(--ha-ctv-btn-bg-hvr-clr);
content: "";
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.mas-creative-btn-wrap .mas-stl--estilo:active,
.mas-creative-btn-wrap .mas-stl--estilo:hover {
background: var(--ha-ctv-btn-bg-clr);
color: var(--ha-ctv-btn-txt-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--dissolve:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--dissolve:active,
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--dissolve:hover,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen:hover,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen:active,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen:hover {
color: var(--ha-ctv-btn-txt-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--dissolve:active:after,
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--dissolve:hover:after {
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-down:after {
top: 0;
left: 0;
width: 100%;
height: 0;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-down:active:after,
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-down:hover:after {
height: 100%;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-right:after {
top: 0;
left: 0;
width: 0;
height: 100%;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-right:active:after,
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-right:hover:after {
width: 100%;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--cross-slider,
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-x,
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-y {
overflow: hidden;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-x:after {
top: 50%;
left: 50%;
width: 0;
height: 103%;
opacity: 0;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-x:hover:after {
width: 90%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-x:active:after {
width: 101%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--cross-slider:after {
top: 50%;
left: 50%;
width: 100%;
height: 0;
opacity: 0;
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--cross-slider:hover:after {
height: 260%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--cross-slider:active:after {
height: 400%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-y:after {
top: 50%;
left: 50%;
width: 101%;
height: 0;
opacity: 0;
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-y:hover:after {
height: 75%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo.mas-eft--slide-y:active:after {
height: 130%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--estilo,
.mas-creative-btn-wrap .mas-stl--iconica,
.mas-creative-btn-wrap .mas-stl--symbolab {
display: inline-block;
overflow: hidden;
outline: none;
background: var(--ha-ctv-btn-bg-clr);
color: var(--ha-ctv-btn-txt-clr);
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
}
.mas-creative-btn-wrap .mas-stl--symbolab {
border-width: 3px;
border-style: solid;
padding: 25px 80px;
border-radius: 50px;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--wapasha:hover,
.mas-creative-btn-wrap .mas-stl--symbolab:active,
.mas-creative-btn-wrap .mas-stl--symbolab:hover {
background: var(--ha-ctv-btn-bg-hvr-clr);
color: var(--ha-ctv-btn-txt-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--symbolab > i {
position: absolute;
top: 50%;
-webkit-transition: left 0.3s, right 0.3s;
transition: left 0.3s, right 0.3s;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-in-right i {
left: 130%;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-in-right:active i,
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-in-right:hover i {
left: 80%;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-in-left i {
left: -50%;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-in-left:active i,
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-in-left:hover i {
left: 10%;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-out-right i {
left: 70%;
opacity: 0;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-out-right:active i,
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-out-right:hover i {
left: 80%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-out-left i {
left: 30%;
opacity: 0;
}
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-out-left:active i,
.mas-creative-btn-wrap .mas-stl--symbolab.mas-eft--back-out-left:hover i {
left: 10%;
opacity: 1;
}
.mas-creative-btn-wrap .mas-stl--iconica {
padding: 0 !important;
border-radius: 0;
cursor: pointer;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.mas-creative-btn-wrap .mas-stl--iconica:active,
.mas-creative-btn-wrap .mas-stl--iconica:hover {
border-color: var(--ha-ctv-btn-border-hvr-clr);
background: var(--ha-ctv-btn-bg-hvr-clr);
color: var(--ha-ctv-btn-txt-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--iconica > span {
display: inline-block;
padding: 25px 80px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.mas-creative-btn-wrap .mas-stl--iconica > i {
position: absolute;
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;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
width: 100%;
height: 100%;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-down:hover > span {
-webkit-transform: translateY(300%);
-ms-transform: translateY(300%);
transform: translateY(300%);
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-down > i {
top: -100%;
left: 0;
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-down:hover > i,
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-top:hover > i {
top: 0;
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-top:hover > span {
-webkit-transform: translateY(-300%);
-ms-transform: translateY(-300%);
transform: translateY(-300%);
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-top > i {
top: 100%;
left: 0;
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-right:hover > span {
-webkit-transform: translateX(200%);
-ms-transform: translateX(200%);
transform: translateX(200%);
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-right > i {
top: 0;
left: -100%;
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-left:hover > i,
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-right:hover > i {
left: 0;
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-left:hover > span {
-webkit-transform: translateX(-200%);
-ms-transform: translateX(-200%);
transform: translateX(-200%);
}
.mas-creative-btn-wrap .mas-stl--iconica.mas-eft--slide-in-left > i {
top: 0;
left: 100%;
}
.mas-creative-btn-wrap .mas-stl--iconica,
.mas-creative-btn-wrap .mas-stl--montino {
border-width: 3px;
border-style: solid;
border-color: var(--ha-ctv-btn-border-clr);
}
.mas-creative-btn-wrap .mas-stl--montino:active,
.mas-creative-btn-wrap .mas-stl--montino:hover {
border-color: var(--ha-ctv-btn-border-hvr-clr);
color: var(--ha-ctv-btn-txt-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona {
z-index: 1;
overflow: hidden;
padding: 0 !important;
outline: none;
border-radius: 0;
background: var(--ha-ctv-btn-bg-clr);
cursor: pointer;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona > span {
padding: 25px 80px;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona > span {
display: block;
vertical-align: middle;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona::after {
position: absolute;
top: 0;
left: 0;
background: var(--ha-ctv-btn-bg-hvr-clr);
content: attr(data-text);
opacity: 0;
-webkit-transform: translate(0, 25%);
-ms-transform: translate(0, 25%);
transform: translate(0, 25%);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona:hover > span {
opacity: 0;
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
transform: translate(0, -25%);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--winona:hover::after {
opacity: 1;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen::before {
position: absolute;
top: 0;
left: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
background: var(--ha-ctv-btn-bg-hvr-clr);
content: attr(data-text);
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
padding: 25px 80px;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen::before,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen::before,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen > span {
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen > span {
display: block;
padding: 25px 80px;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen:hover::before {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen:hover::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen:hover::before,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--rayen:hover > span {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen {
z-index: 1;
overflow: hidden;
padding: 25px 80px;
outline: none;
border-radius: 0;
background: var(--ha-ctv-btn-bg-clr);
cursor: pointer;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen::before {
position: absolute;
bottom: 100%;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
content: "";
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen::before {
background: var(--ha-ctv-btn-bg-hvr-clr);
opacity: 0.7;
}
.mas-creative-btn-wrap .mas-stl--hermosa,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina:hover {
background: var(--ha-ctv-btn-bg-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--aylen:hover::after {
-webkit-transition-delay: 0.175s;
transition-delay: 0.175s;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--wapasha {
z-index: 1;
padding: 25px 80px;
outline: none;
border-width: 0;
border-radius: 0;
background: var(--ha-ctv-btn-bg-clr);
cursor: pointer;
--ha-ctv-btn-bg-clr: #4243DC;
--ha-ctv-btn-bg-hvr-clr: #fff;
--ha-ctv-btn-border-clr: #fff;
--ha-ctv-btn-border-hvr-clr: #4243DC;
--ha-ctv-btn-txt-clr: #fff;
--ha-ctv-btn-txt-hvr-clr: #4243DC;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--wapasha::before {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
border-width: 2px;
border-style: solid;
border-radius: inherit;
content: "";
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
-webkit-transform: scale3d(0.6, 0.6, 1);
transform: scale3d(0.6, 0.6, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--wapasha:hover::before {
border-color: var(--ha-ctv-btn-border-hvr-clr);
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina {
overflow: hidden;
padding: 25px 80px;
background: var(--ha-ctv-btn-bg-clr);
color: var(--ha-ctv-btn-txt-clr);
-webkit-transition: background 0.3s;
transition: background 0.3s;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::before,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina::before,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina > span {
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina > span {
display: inline-block;
color: var(--ha-ctv-btn-txt-clr);
opacity: 0;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::before,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina::before {
position: absolute;
top: 0;
left: 0;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina::before {
padding: 25px 80px;
content: attr(data-text);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina:hover::before {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--nina:hover > span {
color: var(--ha-ctv-btn-txt-hvr-clr);
opacity: 1;
-webkit-transition-delay: var(--delay, 0.045s);
transition-delay: var(--delay, 0.045s);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman {
padding: 25px 80px;
border-width: 0;
background: var(--ha-ctv-btn-bg-hvr-clr);
--ha-ctv-btn-bg-clr: #4243DC;
--ha-ctv-btn-bg-hvr-clr: #fff;
--ha-ctv-btn-border-clr: #fff;
--ha-ctv-btn-border-hvr-clr: #4243DC;
--ha-ctv-btn-txt-clr: #fff;
--ha-ctv-btn-txt-hvr-clr: #4243DC;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::after,
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::before {
z-index: -1;
border-radius: inherit;
content: "";
pointer-events: none;
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::before {
width: 100%;
height: 100%;
border-width: 2px;
border-style: solid;
border-color: var(--ha-ctv-btn-border-hvr-clr);
opacity: 0;
-webkit-transform: scale3d(1.2, 1.2, 1);
transform: scale3d(1.2, 1.2, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman::after {
width: 100%;
height: 100%;
background: var(--ha-ctv-btn-bg-clr);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman:hover::before {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--antiman:hover::after {
opacity: 0;
-webkit-transform: scale3d(0.8, 0.8, 1);
transform: scale3d(0.8, 0.8, 1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--sacnite {
overflow: hidden;
padding: 25px 80px;
background: var(--ha-ctv-btn-bg-clr);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--sacnite::before {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
border-radius: inherit;
background: var(--ha-ctv-btn-bg-hvr-clr);
content: "";
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
-webkit-transform: scale3d(0, 0, 0);
transform: scale3d(0, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--sacnite:hover::before {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
.mas-creative-btn-wrap .mas-stl--montino.mas-eft--sacnite > span {
pointer-events: none;
}
.mas-creative-btn-wrap .mas-stl--hermosa {
padding: 25px 80px;
color: var(--ha-ctv-btn-txt-clr);
}
.mas-creative-btn-wrap .mas-stl--hermosa:active,
.mas-creative-btn-wrap .mas-stl--hermosa:hover {
color: var(--ha-ctv-btn-txt-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--hermosa::after,
.mas-creative-btn-wrap .mas-stl--hermosa::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--expandable {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
overflow: hidden;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
padding: 20px 25px;
border-width: 2px;
border-style: solid;
border-radius: 0;
background: var(--ha-ctv-btn-bg-clr);
color: var(--ha-ctv-btn-txt-clr);
font-weight: 700;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--expandable span {
position: relative;
display: inline-block;
overflow: hidden;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--expandable span.text {
width: 0;
white-space: nowrap;
-webkit-transition: width 0.2s;
transition: width 0.2s;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--expandable:hover span.text {
margin-right: 10px;
width: auto;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--upward {
overflow: hidden;
border-width: 2px;
border-style: solid;
border-radius: 3em;
font-weight: 700;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--upward span {
position: relative;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie::before,
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--upward::before {
background: var(--ha-ctv-btn-bg-clr);
content: "";
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1),
-webkit-transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--upward:hover::before {
-webkit-transform: translate(0, -100%);
-ms-transform: translate(0, -100%);
transform: translate(0, -100%);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie {
overflow: hidden;
padding: 25px 80px;
border-width: 2px;
border-style: solid;
font-weight: 500;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie span {
position: relative;
display: block;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie > span,
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie > span > span {
overflow: hidden;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie:hover > span > span {
-webkit-animation: HaCtvBtn_Newbie_MoveUpInitial 0.2s forwards,
HaCtvBtn_Newbie_MoveUpEnd 0.2s forwards 0.2s;
animation: HaCtvBtn_Newbie_MoveUpInitial 0.2s forwards,
HaCtvBtn_Newbie_MoveUpEnd 0.2s forwards 0.2s;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie::before {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--newbie:hover::before {
-webkit-transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
-webkit-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
transform-origin: 0 50%;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--render {
overflow: hidden;
border-width: 2px;
border-style: solid;
border-color: var(--ha-ctv-btn-border-clr);
border-radius: 0.5em;
background: var(--ha-ctv-btn-bg-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--render > span {
position: relative;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--render::before {
left: -10%;
width: 120%;
background: var(--ha-ctv-btn-bg-clr);
content: "";
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1),
-webkit-transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
-webkit-transform: skew(30deg);
-ms-transform: skew(30deg);
transform: skew(30deg);
}
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--downhill:hover
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--downhill:active,
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--exploit:hover
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--exploit:active,
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--render:hover
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--render:active {
border-color: var(--ha-ctv-btn-border-hvr-clr);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--render:hover::before {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
box-sizing: border-box;
padding: 1.5em 3em;
width: 175px;
height: 120px;
background: 0 0;
--ha-ctv-btn-bg-clr: #4243DC;
--ha-ctv-btn-bg-hvr-clr: #562dd4;
--ha-ctv-btn-txt-clr: #fff;
--ha-ctv-btn-txt-hvr-clr: #fff;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape::before {
background: var(--ha-ctv-btn-bg-clr);
content: "";
-webkit-transition: background 0.5s ease,
-webkit-clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55);
transition: clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55),
background 0.5s ease;
transition: clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55),
background 0.5s ease,
-webkit-clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55);
-webkit-clip-path: path(
"M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z"
);
clip-path: path(
"M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z"
);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape:hover::before {
background: var(--ha-ctv-btn-bg-hvr-clr);
-webkit-clip-path: path(
"M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z"
);
clip-path: path(
"M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z"
);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape::after {
top: 5%;
z-index: -1;
width: 97%;
height: 86%;
border-width: 1px;
border-style: solid;
border-color: var(--ha-ctv-btn-bg-clr);
border-radius: 58% 42% 55% 45%/56% 45% 55% 44%;
content: "";
-webkit-transition: -webkit-transform 0.5s
cubic-bezier(0.585, 2.5, 0.645, 0.55);
transition: transform 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55);
transition: transform 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55),
-webkit-transform 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55);
-webkit-transform: rotate(-20deg);
-ms-transform: rotate(-20deg);
transform: rotate(-20deg);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape:hover::after {
border-color: var(--ha-ctv-btn-bg-hvr-clr);
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape > span {
z-index: 1;
display: block;
-webkit-transition: -webkit-transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--reshape:hover span {
-webkit-transform: translate(0, -10px);
-ms-transform: translate(0, -10px);
transform: translate(0, -10px);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit {
overflow: hidden;
border-width: 2px;
border-style: solid;
border-color: var(--ha-ctv-btn-border-clr);
border-radius: 0.85em;
background: var(--ha-ctv-btn-bg-clr);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit > span {
position: relative;
z-index: 10;
display: block;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit:hover span {
-webkit-animation: HaCtvBtn_Exploit_MoveScaleUpInitial 0.3s forwards,
HaCtvBtn_Exploit_MoveScaleUpEnd 0.3s forwards 0.3s;
animation: HaCtvBtn_Exploit_MoveScaleUpInitial 0.3s forwards,
HaCtvBtn_Exploit_MoveScaleUpEnd 0.3s forwards 0.3s;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit::before {
top: -110%;
left: -10%;
padding-bottom: 120%;
width: 120%;
height: 0;
border-radius: 50%;
background: var(--ha-ctv-btn-bg-hvr-clr);
content: "";
-webkit-transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit::after,
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit:hover::before {
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1),
-webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit:hover::before {
-webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit::after {
background: var(--ha-ctv-btn-bg-hvr-clr);
content: "";
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--exploit:hover::after {
-webkit-transition-delay: 0.4s;
transition-delay: 0.4s;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
-webkit-transition-duration: 0.05s;
transition-duration: 0.05s;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--downhill {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
overflow: hidden;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
box-sizing: border-box;
padding: 0;
width: 100px;
height: 100px;
border-width: 2px;
border-style: solid;
border-color: var(--ha-ctv-btn-border-clr);
border-radius: 50%;
font-weight: 500;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--downhill span {
position: relative;
display: block;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--downhill > span {
overflow: hidden;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--downhill:hover > span > span {
-webkit-animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--downhill::before {
padding-bottom: 100%;
width: 100%;
height: 0;
border-radius: 50%;
background: var(--ha-ctv-btn-bg-clr);
content: "";
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--downhill:hover::before {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom {
padding: 0 !important;
border-width: 0 !important;
background: 0 0;
--ha-ctv-btn-bg-clr: #4243DC;
--ha-ctv-btn-bg-hvr-clr: #fff;
--ha-ctv-btn-txt-clr: #fff;
--ha-ctv-btn-txt-hvr-clr: #4243DC;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom div,
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom:hover div::before {
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1),
-webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom div {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
width: 100%;
height: 100%;
border-width: 2px;
border-style: solid;
border-color: var(--ha-ctv-btn-border-clr);
border-radius: 0.85em;
background: var(--ha-ctv-btn-bg-clr);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom:hover div {
border-color: var(--ha-ctv-btn-border-hvr-clr);
-webkit-transform: scale3d(1.2, 1.2, 1);
transform: scale3d(1.2, 1.2, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom div::after,
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom div::before {
position: absolute;
background: var(--ha-ctv-btn-bg-hvr-clr);
content: "";
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom div::before {
top: 50%;
left: 50%;
padding-bottom: 110%;
width: 110%;
height: 0;
border-radius: 50%;
-webkit-transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom:hover div::before {
-webkit-transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom div::after {
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom:hover div::after {
opacity: 1;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
-webkit-transition-duration: 0.01s;
transition-duration: 0.01s;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--bloom span {
position: relative;
display: block;
padding: 1.5em 3em;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
padding: 0;
width: 120px;
height: 120px;
border-width: 0 !important;
background: 0 0;
font-weight: 700;
--ha-ctv-btn-border-clr: #e8e8e8;
--ha-ctv-btn-border-hvr-clr: #4243DC;
--ha-ctv-btn-stroke-width: 1px;
--ha-ctv-btn-txt-clr: #4243DC;
--ha-ctv-btn-txt-hvr-clr: #4243DC;
-webkit-clip-path: circle(50% at 50% 50%);
clip-path: circle(50% at 50% 50%);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup .progress {
position: absolute;
top: 50%;
left: 50%;
width: calc(120px - ((120px / 100) * 20));
height: calc(120px - ((120px / 100) * 20));
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1),
-webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup:hover .progress {
-webkit-transform: translate(-50%, -50%) scale3d(1.2, 1.2, 1);
transform: translate(-50%, -50%) scale3d(1.2, 1.2, 1);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup .progress__circle {
fill: none;
stroke: var(--ha-ctv-btn-border-clr);
stroke-width: var(--ha-ctv-btn-stroke-width, 1px);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup .progress__path {
fill: none;
stroke-width: var(--ha-ctv-btn-stroke-width, 1px);
}
.mas-creative-btn-wrap
.mas-stl--hermosa.mas-eft--roundup:focus-visible
.progress__circle {
fill: rgba(252, 196, 63, 0.4);
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup .progress__path {
-webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
stroke: var(--ha-ctv-btn-border-hvr-clr);
stroke-dasharray: 1;
stroke-dashoffset: 1;
}
.mas-creative-btn-wrap .mas-stl--hermosa.mas-eft--roundup:hover .progress__path {
stroke-dashoffset: 0;
}
@-webkit-keyframes HaCtvBtn_Newbie_MoveUpInitial {
to {
-webkit-transform: translate3d(0, -105%, 0);
transform: translate3d(0, -105%, 0);
}
}
@keyframes HaCtvBtn_Newbie_MoveUpInitial {
to {
-webkit-transform: translate3d(0, -105%, 0);
transform: translate3d(0, -105%, 0);
}
}
@-webkit-keyframes HaCtvBtn_Newbie_MoveUpEnd {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes HaCtvBtn_Newbie_MoveUpEnd {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes HaCtvBtn_Exploit_MoveScaleUpInitial {
to {
opacity: 0;
-webkit-transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
}
}
@keyframes HaCtvBtn_Exploit_MoveScaleUpInitial {
to {
opacity: 0;
-webkit-transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
}
}
@-webkit-keyframes HaCtvBtn_Exploit_MoveScaleUpEnd {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes HaCtvBtn_Exploit_MoveScaleUpEnd {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}.mas-cig {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
vertical-align: middle;
}
.mas-cig-item {
position: relative;
display: inline-block;
border-radius: 100%;
text-decoration: none;
line-height: 100%;
}
.mas-cig-item a.mas-cig-item-outline,
.mas-cig-item-outline {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.mas-cig-item .fw-svg-wrap,
.mas-cig-item i,
.mas-cig-item img {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
overflow: hidden;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
max-width: 100%;
width: 60px;
height: 60px;
border: 3px solid #fff;
border-radius: 50%;
background: #fff;
-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
-o-object-fit: cover;
object-fit: cover;
}
.mas-cig-item:not(:first-child) {
margin-left: -30px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.mas-cig-item:not(:last-child) {
margin-right: 5px;
}
.mas-cig:hover .mas-cig-item {
margin-left: 0;
}
[tooltip] {
position: relative;
}
[tooltip]::after,
[tooltip]::before {
position: absolute;
display: none;
text-transform: none;
font-size: 0.8em;
line-height: 1;
opacity: 0;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
[tooltip]::before {
z-index: 1001;
border: 5px solid transparent;
content: "";
}
[tooltip]::after {
z-index: 1000;
overflow: hidden;
padding: 1ch 1.5ch;
min-width: 3em;
max-width: 21em;
border-radius: 0.3ch;
background: #333;
box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
color: #fff;
content: attr(tooltip);
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
font-family: Helvetica, sans-serif;
}
[tooltip]:hover::after,
[tooltip]:hover::before {
display: block;
}
[tooltip=""]::after,
[tooltip=""]::before {
display: none !important;
}
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
bottom: 100%;
border-top-color: var(--caret-color, #333);
border-bottom-width: 0;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::after,
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::after,
[tooltip][flow^="up"]::before {
left: 50%;
-webkit-transform: translate(-50%, -0.5em);
-ms-transform: translate(-50%, -0.5em);
transform: translate(-50%, -0.5em);
}
[tooltip][flow^="down"]::before {
top: 100%;
border-top-width: 0;
border-bottom-color: var(--caret-color, #333);
}
[tooltip][flow^="down"]::after {
top: calc(100% + 5px);
}
[tooltip][flow^="down"]::after,
[tooltip][flow^="down"]::before {
left: 50%;
-webkit-transform: translate(-50%, 0.5em);
-ms-transform: translate(-50%, 0.5em);
transform: translate(-50%, 0.5em);
}
[tooltip][flow^="left"]::after,
[tooltip][flow^="left"]::before {
top: 50%;
-webkit-transform: translate(-0.5em, -50%);
-ms-transform: translate(-0.5em, -50%);
transform: translate(-0.5em, -50%);
}
[tooltip][flow^="left"]::before {
left: calc(0em - 5px);
border-right-width: 0;
border-left-color: var(--caret-color, #333);
}
[tooltip][flow^="left"]::after {
right: calc(100% + 5px);
}
[tooltip][flow^="right"]::after,
[tooltip][flow^="right"]::before {
top: 50%;
-webkit-transform: translate(0.5em, -50%);
-ms-transform: translate(0.5em, -50%);
transform: translate(0.5em, -50%);
}
[tooltip][flow^="right"]::before {
right: calc(0em - 5px);
border-right-color: var(--caret-color, #333);
border-left-width: 0;
}
[tooltip][flow^="right"]::after {
left: calc(100% + 5px);
}
@-webkit-keyframes tooltips-vert {
to {
opacity: 0.9;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
}
@keyframes tooltips-vert {
to {
opacity: 0.9;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
}
@-webkit-keyframes tooltips-horz {
to {
opacity: 0.9;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
}
}
@keyframes tooltips-horz {
to {
opacity: 0.9;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
}
}
[tooltip]:not([flow]):hover::after,
[tooltip]:not([flow]):hover::before,
[tooltip][flow^="down"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="up"]:hover::before {
-webkit-animation: tooltips-vert 300ms ease-out forwards;
animation: tooltips-vert 300ms ease-out forwards;
}
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="right"]:hover::after,
[tooltip][flow^="right"]:hover::before {
-webkit-animation: tooltips-horz 300ms ease-out forwards;
animation: tooltips-horz 300ms ease-out forwards;
}@media only screen and (min-width: 1115px) and (max-width: 5000px) {
.techza-main-menu-wrap .techza-header-buttons {
min-width: fit-content;
display: flex;
align-items: center;
} .main-navigation {
display: flex;
width: 100%;
}
}
a.techza-dual-button-primary {
display: inline-flex;
justify-content: center;
align-items: center;
}
a.techza-dual-button-secondary {
display: inline-flex;
justify-content: center;
align-items: center;
} .techza-service-widget-item {
transition: 0.4s;
padding: 40px;
}
@media (max-width: 1199px) {
.techza-service-widget-item {
padding: 30px;
}
}
.style-one .content-service-wrap {
display: flex;
}
.service-thumbnail-wrapper {
flex-shrink: 0;
margin-right: 40px;
}
@media (max-width: 1199px) {
.service-thumbnail-wrapper {
margin-right: 27px;
}
}
.btn-icon {
transition: all 0.4s;
}
.service-thumbnail-wrapper a img {
image-rendering: pixelated;
}
@media (max-width: 767px) {
.style-one .content-service-wrap {
display: block;
}
} .screenshot-slider-arrow .slick-prev:before,
.screenshot-slider-arrow .slick-next:before {
display: none;
}
.screenshot-slider-arrow button button {
display: none;
}
.screenshot-slider-arrow.slick-active {
color: #1D263A;
}
.screenshot-slider-arrow .prev {
position: absolute;
left: 0;
bottom: 0px;
}
.screenshot-slider-arrow .next {
position: absolute;
right: 0;
bottom: 0px;
}
.screenshot-slider-arrow .slick-active {
background: #2C4BFF;
color: #fff;
}
.screenshot-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;
}
.screenshot-slider-arrow button:hover {
background-color: #1D263A;
color: #fff;
}
.screenshot-slider-wrapper {
position: relative;
margin-top: 20px;
}
.screenshots-dots .slick-dots {
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.screenshots-dots .slick-dots li {
list-style: none;
display: inline-block;
margin: 0 5px;
width: 11px;
height: 11px;
border-radius: 50%;
transition: 0.4s;
}
.screenshots-dots .slick-dots li button {
border: none;
list-style: none;
width: 11px;
height: 11px;
border-radius: 50%;
background-color: #f7f9fc;
color: transparent;
opacity: 0.2;
}
.screenshots-dots .slick-dots li button:focus {
outline: none;
box-shadow: none;
}
.screenshots-dots .slick-dots li.slick-active {
background-color: #ffd166 !important;
}
.screenshot-image {
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
overflow: hidden;
min-height: 720px !important;
max-height: 720px !important;
}
@media (min-width: 690px) {
.screenshot-image {
width: 283px;
min-height: 720px !important;
max-height: 720px !important;
margin-bottom: 18.5px;
}
.bg-purple-heart .slick-dotted.slick-slider {
margin-bottom: 0px;
}
}
@media (min-width: 690px) {
.screenshot-image img {
width: 100%;
border-radius: 20px;
}
}
.phone-bg-img {
position: absolute;
left: 50%;
top: 50%;
z-index: 11;
display: none;
}
@media (min-width: 690px) {
.phone-bg-img {
display: block;
transform: translate(-50%, -50%);
}
}
.screenshot-slider .slick-list {
margin: 0 -23.5px;
}
.screenshot-slider .slick-slide {
opacity: .5;
transition: 0.4s;
}
.screenshot-slider .slick-center {
opacity: 1;
border-radius: 40px;
max-height: 720px !important;
transform: scale(1.1);
min-height: 690px;
}
.screenshot-slider .slick-center img {
border-radius: 40px;
} .techza-crypto-widget-item {
padding: 30px;
background-color: #fff;
transition: 0.4s;
border-radius: 3px;
}
.techza-crypto-top {
display: flex;
align-items: center;
border-bottom: 1px solid rgba(97, 118, 134, 0.1);
margin-bottom: 24px;
padding-bottom: 24px;
}
.crypto-thumbnail-wrapper {
margin-right: 15px;
}
.crypto-title {
font-size: 24p;
}
.techza-crypto-top-content h3 {
margin-bottom: 0;
font-size: 18px;
}
.techza-crypto-widget-item .crypto-content p {
margin-bottom: 40px;
}
.techza-crypto-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.techza-crypto-button {
font-size: 16px;
border: 2px solid #1A1AFF;
line-height: 26px;
padding: 8px 26px;
color: #1A1AFF;
transition: 0.4s;
border-radius: 3px;
}
.techza-crypto-button:hover {
background-color: #1A1AFF;
color: #fff;
border-radius: 3px;
} .techza-content-box span {
display: block;
border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-ms-border-radius: 10px 10px 0px 0px;
-o-border-radius: 10px 10px 0px 0px;
}
.techza-content-box {
box-shadow: 0px 4px 40px rgba(43, 89, 255, 0.08);
padding: 20px;
border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-ms-border-radius: 0px 0px 10px 10px;
-o-border-radius: 0px 0px 10px 10px;
}
.techza-dr-thum img {
width: 100%;
border-radius: 10px 10px 0px 0px;
object-fit: contain;
object-position: center top;
}
.techza-dr-rating {
position: absolute;
top: 18px;
border: 0.5px solid #00BB98;
border-radius: 10px;
background-color: #fff;
padding: 3px 13px;
left: 20px;
}
.techza-dr-thum {
position: relative;
}
.techza-dr-rating i {
color: #00BB98;
margin-right: 10px;
}
.techza-dr-rating-number {
font-size: 16px;
line-height: 26px;
font-weight: 600;
color: #00BB98;
}
.techza-content-box .techza-dr-name {
color: #000B33;
font-size: 16px;
text-transform: capitalize;
font-weight: 600;
line-height: 24px;
margin-bottom: 10px;
}
.techza-content-box span.techza-dr-catgory {
color: #2B59FF;
font-weight: 600;
margin-bottom: 10px;
font-size: 16px;
line-height: 24px;
}
.techza-content-box .techza-dr-Designation {
color: #000B33;
font-size: 16px;
line-height: 26px;
margin-bottom: 3px;
}
.techza-content-box .techza-dr-deggre {
color: #000B33;
font-size: 14px;
line-height: 21px;
margin-bottom: 20px;
}
.techza-contetn-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.techza-contetn-bottom .techza-dr-available {
color: #00BB98;
font-size: 14px;
font-weight: 600;
line-height: 21px;
}
.techza-dr-btn {
min-width: 101px;
text-align: center;
background: #FD4C5C;
border-radius: 3px;
font-size: 16px;
color: #fff !important;
min-height: 30px;
align-items: center;
line-height: 30px;
} .techza-step-single-item {
display: flex;
padding-bottom: 40px;
position: relative;
flex-wrap: wrap;
}
.techza-step-text-box {
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
background-color: #781BFF;
margin-right: 30px;
text-align: center;
display: inline-table;
}
.techza-step-text-box span {
font-size: 20px;
color: #fff;
line-height: 1.3em;
font-weight: 600;
}
.techza-setp-content .setp-headding {
color: #000B33;
margin-bottom: 5px;
line-height: 1.3em;
font-weight: 600;
font-size: 20px;
}
.techza-step-single-item:last-child {
padding-bottom: 0;
}
.techza-setp-content p {
margin-bottom: 0;
color: rgba(0, 10, 45, 0.7);
font-size: 16px;
line-height: 1.625em;
}
.techza-setp-content {
width: calc(100% - 80px);
}
.techza-step-text-box:after {
position: absolute;
left: 0;
bottom: 0;
}
.techza-step-single-item:after {
position: absolute;
left: 23.5px;
top: 55px;
height: calc(100% - 60px);
content: "";
width: 2px;
background: #1A1AFF;
}
.techza-step-single-item:last-child:after {
display: none;
} .salary-range {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.salary-range span svg,
.salary-range span i {
margin-right: 5px;
}
.salary-range {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.jobs-area {
padding-top: 55px;
padding-bottom: 60px;
}
@media (max-width: 768px) {
.salary-range {
display: block;
}
.salary-range span {
margin-bottom: 15px;
}
}
@media (min-width: 768px) {
.jobs-area {
padding-top: 75px;
padding-bottom: 80px;
}
}
@media (min-width: 992px) {
.jobs-area {
padding-top: 110px;
padding-bottom: 95px;
}
}
@media (max-width: 991px) {
.jobs-filter {
margin-bottom: 50px;
}
}
.jobs-filter__title {
font-size: 21px;
font-weight: 500;
letter-spacing: normal;
line-height: 1.4285;
margin-bottom: 30px;
}
.jobs-filter__menu {
padding: 0;
margin: 0;
display: block;
}
.jobs-filter__menu ul li {
font-size: 18px;
font-weight: 500;
letter-spacing: normal;
line-height: 30px;
color: #262729;
display: block;
transition: 0.4s;
position: relative;
background-color: transparent;
border: none;
cursor: pointer;
border-bottom: 1px solid rgba(44, 75, 255, 0.1);
padding: 15px 0px 15px 0px;
}
.jobs-filter__menu ul li:last-child {
border: none;
}
.jobs-filter__menu ul li:hover,
.jobs-filter__menu ul li:active {
color: #2C4BFF;
}
.jobs-area__tab .card {
display: inherit;
}
.jobs-area__tab .card--single {
border-radius: 10px;
border: 1px solid rgba(181, 181, 181, 0.2);
border-radius: 10px;
background-color: #fff;
padding-top: 35px;
padding-bottom: 40px;
padding-left: 50px;
padding-right: 35px;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
-ms-transition: .4s;
-o-transition: .4s;
position: relative;
}
.jobs-area__tab .card--single:hover {
box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
border: 1px solid transparent;
}
.jobs-area__tab .card--single:hover .job-icon i {
margin-left: 10px;
}
.career-details-box {
padding-left: 50px;
padding-right: 50px;
}
.job-details-page .card-jobs__content ul li {
font-family: var(--body-font);
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 28px;
letter-spacing: -0.500211px;
color: #696871;
}
.job-details-page .card-jobs__content .job_type_meta {
font-family: var(--body-font);
font-style: normal;
font-weight: 450;
font-size: 13px;
line-height: 16px;
padding: 7px 10px;
border-radius: 5px;
margin-left: 60px;
}
.job-details-page h2.card-jobs__content__heading {
font-family: var(--body-font);
font-style: normal;
font-weight: bold;
font-size: 80px;
line-height: 1.05em;
text-align: center;
letter-spacing: -2.50105px;
color: var(--heading-color);
margin-bottom: 40px;
margin-top: 20px;
}
.job-details-page .career-details-box p {
font-family: var(--body-font);
font-style: normal;
font-weight: 450;
font-size: 16px;
line-height: 28px;
letter-spacing: -0.500211px;
color: var(--text-color);
margin-bottom: 25px;
}
.job-details-page .career-details-box strong {
font-family: var(--body-font);
font-style: normal;
font-weight: bold;
font-size: 21px;
line-height: 28px;
letter-spacing: -0.656526px;
color: var(--heading-color);
display: inline-block;
margin-top: 35px;
}
.job-details-page .career-deatils__content ul li {
font-family: var(--body-font);
font-style: normal;
font-weight: 450;
font-size: 16px;
letter-spacing: -0.500211px;
color: var(--heading-color);
position: relative;
margin-bottom: 15px;
}
.job-details-page .career-deatils__content ul li:before {
content: "";
position: absolute;
left: 0;
top: 12px;
width: 9px;
height: 9px;
border-radius: 50%;
display: inline-block;
background-color: var(--heading-color);
}
.jobs-area__tab .card--single .card__list {
display: flex;
margin-bottom: 0;
}
a.techza-job-btn {
color: #FFFFFF;
}
a.techza-job-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 42px;
font-family: var(--body-font);
font-style: normal;
font-weight: 500;
font-size: 21px;
line-height: 1.28em;
text-align: center;
letter-spacing: -0.656526px;
color: #FFFFFF;
background: var(--accent-color);
border: 1px solid #C31A12;
border-radius: 10px;
}
.techza-job-search-form .input-wrap {
position: relative;
}
.techza-job-search-form input,
.techza-job-search-form select {
width: 100%;
}
.techza-job-search-form .input-wrap .input-wrap-icon {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
z-index: 99;
}
.techza-job-search-form .nice-select .current {
display: flex;
align-items: center;
height: 100%;
}
.techza-job-search-form .nice-select:after {
right: 25px;
}
.techza-job-search-form form {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.job-categories-wrap .techza-job-cat {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
transition: 0.4s;
}
.job-categories-wrap .techza-job-cat:hover {
background: linear-gradient(90deg, #FF176F 0.01%, #FF573E 100%);
}
.job-categories-wrap .techza-cat-contnt {
width: 100%;
}
.job-categories-wrap .techza-job-cat-title {
transition: 0.4s;
}
.techza-icon-positions-top {
flex-direction: column;
}
.techza-icon-positions-top .techza-cat-icon {
width: 100%;
flex: 0 0 100%;
}
.techza-icon-positions-bottom {
flex-direction: column-reverse;
}
.techza-icon-positions-bottom .techza-cat-icon {
width: 100%;
flex: 0 0 100%;
}
.techza-icon-positions-bottom .techza-cat-contnt {
width: inherit;
min-width: 100%;
flex: 0 0 100%;
}
.techza-icon-positions-left {
justify-content: start;
}
.techza-icon-positions-left .techza-cat-icon {
width: 30%;
flex: 0 0 30%;
}
.techza-icon-positions-left .techza-cat-contnt {
width: inherit;
min-width: 70%;
flex: 0 0 70%;
}
.techza-icon-positions-right {
justify-content: end !important;
text-align: right;
flex-direction: row-reverse;
}
.techza-icon-positions-right .techza-cat-icon {
width: 30%;
flex: 0 0 30%;
}
.techza-icon-positions-right .techza-cat-contnt {
width: inherit;
min-width: 70%;
flex: 0 0 70%;
}
.job-thumb-yes {
display: flex;
align-items: center;
justify-content: center;
transition: 0.4s;
}
@media (max-width: 1024px) {
.job-details-page h2.card-jobs__content__heading {
font-size: 60px;
}
}
@media (max-width: 767px) {
.job-details-page h2.card-jobs__content__heading {
font-size: 40px;
margin-bottom: 30px;
}
.career-details-box {
padding-left: 15px;
padding-right: 15px;
}
.job-details-page .career-details-box strong {
margin-top: 15px;
}
.techza-job-btn {
padding: 12px 35px;
font-size: 18px;
}
}  .newsletter--inner-career {
background-color: #fff;
border-radius: 50px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
}
.newsletter--inner-career form {
display: flex;
align-items: center;
justify-content: space-between;
}
.newsletter--inner-career form input {
height: 75px;
border: none;
width: 100%;
border-radius: 9px;
font-size: 16px;
font-weight: 400;
letter-spacing: normal;
line-height: 30px;
color: rgba(38, 39, 41, 0.7);
}
.newsletter--inner-career form input:focus {
outline: none;
box-shadow: none;
}
.newsletter--inner-career form button {
border: none;
background-color: #FF5722;
color: #fff;
font-size: 15px;
line-height: 26px;
padding: 15px 35px;
box-shadow: 0px 10px 20px rgba(255, 87, 34, 0.25);
}
.newsletter--inner-career form button:focus {
outline: none;
box-shadow: none;
}
.newsletter-form--countdown {
max-width: inherit;
}
@media (min-width: 480px) {
.newsletter-form--countdown {
background-color: #fff;
}
}
.newsletter--inner-career form {
text-align: center;
border-radius: 50px;
padding: 0 10px;
}
@media (min-width: 480px) {
.newsletter--inner-career form {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #fff;
text-align: left;
}
;
}
.newsletter--inner-career form .form-control {
background-color: #fff !important;
display: flex;
align-items: center;
border: none;
height: 72px;
border-radius: 50px;
}
@media (min-width: 480px) {
.newsletter--inner-career form .form-control {
background-color: transparent;
margin-bottom: 0;
}
}
.newsletter--inner-career form .form-control i {
margin-right: 10px;
color: #5034FC;
margin-left: 20px;
}
.newsletter--inner-career form .form-control input {
height: 100%;
background-color: transparent;
border: none;
width: 100%;
display: block;
font-family: 'Rubik';
}
.newsletter--inner-career form .form-control input:focus {
border: none;
outline: none;
}
@media (max-width: 767px) {
.newsletter--inner-career form .form-control i {
margin-left: 0;
}
} span.salary-icon {
width: 15%;
}
h5.salary {
width: 85%;
}
.card-jobs {
box-shadow: 0 4px 56px rgba(0, 0, 0, 0.07);
border-radius: 10px;
border: 1px solid rgba(181, 181, 181, 0.2);
background-color: #fff;
padding: 30px 30px;
}
@media (min-width: 576px) {
.card-jobs {
padding: 26px 50px;
}
}
.card-jobs .card-jobs__content__heading {
font-size: 32px;
font-weight: 500;
letter-spacing: normal;
line-height: 1.38095;
color: #262729;
margin-bottom: 10px;
font-family: 'Rubik';
}
@media (min-width: 768px) {
.card-jobs .card-jobs__content__heading {
font-size: 35px;
margin-bottom: 20px;
}
}
@media (min-width: 992px) {
.card-jobs .card-jobs__content__heading {
font-size: 42px;
}
}
.card-jobs .card-jobs__content__details {
margin: 0;
padding: 0;
}
.card-jobs .card-jobs__content__details li {
font-size: 18px;
font-weight: 400;
letter-spacing: normal;
line-height: 32px;
color: rgba(38, 39, 41, 0.7);
margin-right: 15px;
}
.card-jobs .card-jobs__content__details li i {
margin-right: 5px;
color: #5034fc;
}
.card-job__btn a.falsland-job-btn {
padding: 15px 42px;
display: block;
margin-top: 13px;
background-color: #FF5722;
box-shadow: 0px 10px 20px rgba(255, 87, 34, 0.25);
color: #fff;
}
a.falsland-job-btn.border {
background-color: transparent;
color: #FF5722;
border: 1px solid #FF5722 !important;
box-shadow: inherit;
}
.career-deatils__content__heading {
font-size: 24px;
font-weight: 500;
letter-spacing: normal;
line-height: 40px;
color: var(--heading-color);
margin-bottom: 20px;
}
.career-deatils__content__text {
font-size: 18px;
font-weight: 400;
letter-spacing: normal;
line-height: 32px;
color: var(--text-color);
}
.career-deatils__content ul {
padding: 0;
margin: 0;
}
.career-deatils__content ul li {
font-size: 18px;
font-weight: 400;
letter-spacing: normal;
line-height: 32px;
list-style: none;
padding-left: 25px;
position: relative;
margin-bottom: 15px;
}
.career-deatils__content ul li:before {
content: "";
position: absolute;
left: 0;
top: 12px;
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
background-color: #5034fc;
}
.job-details-page {
background-color: #F3F4F6;
margin-top: -100px;
padding-top: 150px;
} .techza-single-job-meta-widget ul {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
.job-meta-label {
font-weight: 600;
margin-right: 5px;
}
ul.job-meta li {
display: inline-block;
}
.techza-single-job-meta-widget {
padding: 40px 30px;
}
.techza-single-job-meta-widget.style-two span.job-meta-label {
display: block;
}  .techza-portfolio-item {
display: block;
}
.techza-addons-portfolio-item {
position: relative;
overflow: hidden;
}
.techza-addons-portfolio-item img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
width: 100%;
object-fit: cover; margin-bottom: 0 !important;
}
a.techza-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.techza-addons-portfolio-content .techza-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.techza-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;
}
.techza-addons-portfolio-item:hover a.techza-addons-portfolio-content.content-postion-on-image {
opacity: 1;
transform: translate(0);
}
ul.pf-isotope-nav {
list-style: none;
padding: 0;
margin: 0;
flex-wrap: wrap;
display: flex;
justify-content: space-between;
margin-bottom: 60px;
}
ul.pf-isotope-nav:last-child li {
margin-right: 0;
}
ul.pf-isotope-nav li { color: #fff;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
display: inline-block;
margin-right: 55px;
cursor: pointer;
transition: .3s;
}
@media (max-width: 767px) {
ul.pf-isotope-nav li {
flex: 0 0 33%;
text-align: center;
}
}
ul.pf-isotope-nav.style-one li {
background: linear-gradient(to right, #ff00d4, #7d41ea, #0080ff);
}
ul.pf-isotope-nav li span {
display: flex;
height: 55px;
align-items: center;
padding: 10px 20.5px;
background-color: #13111A;
}
ul.pf-isotope-nav li span img {
margin-right: 10px;
}
ul.pf-isotope-nav.style-one li.active span {
background: linear-gradient(to right, #ff00d4, #7d41ea, #0080ff);
}
a.techza-addons-portfolio-content.content-postion-below-image {
display: block;
position: relative;
padding: 40px 30px;
}
.techza-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);
}
.techza-addons-hover-rotate .techza-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);
}
.techza-addons-hover-rotate .techza-addons-portfolio-item img {
transition: .4s;
}
a.techza-addons-portfolio-content.content-postion-disabled {
display: none;
}
ul.jf-isotope-nav {
list-style: none;
padding: 0;
margin: 0;
margin-bottom: 60px;
}
ul.jf-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;
-webkit-transition: .3s;
transition: .3s;
}
ul.jf-isotope-nav li.active,
ul.jf-isotope-nav li:hover {
color: var(--accent-color);
}
.techza-portfolio-content.content-postion-below-image {
display: block;
position: relative;
padding: 40px 30px;
}
.techza-jf-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);
} ul.pf-meta {
padding: 0;
display: flex;
justify-content: space-between;
margin: 0;
}
ul.pf-meta li span {
display: block;
}
@media only screen and (min-width: 320px) and (max-width:767px) {
ul.pf-meta {
display: block;
}
}       .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;
}
@media (min-width: 1200px) {
.team-area-style-01 .slick-list {
width: 155%;
}
}
.team-wrapper img {
width: 100%;
object-fit: cover;
object-position: center top;
transition: 0.4s;
} .team-area .slick-prev:before,
.team-area .slick-next:before {
display: none;
}
.team-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;
}
}
.team-single-item {
margin-bottom: 12px;
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);
} .team-wrapper {
position: relative;
}
.user-identity .team-single-item {
margin: 0;
}
.team-single-item {
display: block;
position: relative;
}
.social-icons ul {
margin: 0;
padding: 0;
list-style: none;
}
.team-wrapper .social-icons ul li {
margin: 0px 5px;
}
.team-wrapper .social-icons ul li:last-child {
margin-right: 0;
}
.team-wrapper .social-icons ul li:first-child {
margin-left: 0;
}
.team-wrapper .social-icons ul li i {
color: #13111A;
transition: all 0.4s;
}
.team-wrapper .social-icons ul li:hover i {
color: #FFE03B;
}
.team-wrapper img {
border-radius: 10px;
}
.team-wrapper .user-identity h6 {
font-family: Inter;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 25px;
color: #000000;
margin-top: 15px;
margin-bottom: 5px;
}
.team-wrapper .user-identity span {
font-family: Inter;
font-style: normal;
font-weight: normal;
font-size: 13px;
line-height: 20px;
color: #000000;
opacity: 0.8;
} .style-two .team-single-item{
position: relative;
}
.team-single-item a{
display: block;
}
.style-two .team-single-item:before{
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
position: absolute;
transition: all 0.4s;
background: linear-gradient(180deg, rgba(0, 38, 153, 0) 0%, #002699 100%);
}
.style-two .team-single-item:hover:before{
opacity: 1;
visibility: visible;
}
.style-two .user-identity {
position: absolute;
bottom: 0;
left: 20px;
opacity: 0;
transition: 0.5s;
visibility: hidden;
width: calc(100% - 35px);
display: flex;
flex-direction: column;
}
.style-two .team-single-item:hover .user-identity{
opacity: 1;
bottom: 20px;
visibility: visible;
}
.style-two .social-icons {
position: absolute;
right: 0;
bottom: 20px;
opacity: 0;
visibility: hidden;
transition: 0.6s;
}
.style-two .team-single-item:hover .social-icons{
opacity: 1;
right: 20px;
visibility: visible;
}
.style-two .social-icons ul li a i, 
.style-three .social-icons ul li a i, 
.style-four .social-icons ul li a i, 
.style-five .social-icons ul li a i{
width: 30px;
height: 30px;
display: flex;
color: #010E37;
font-size: 14px;
border-radius: 100%;
align-items: center;
justify-content: center;
background: #F7F7F9;
transition: all 0.4s;
}
.style-two .team-single-item .social-icons ul li:hover i, 
.style-three .team-single-item .social-icons ul li:hover i {
color: #fff;
background: #1268FB;
}
.style-two .social-icons ul li{
margin: 0 0 17px;
}
.social-icons ul li:last-child{
margin: 0!important;
} .style-three .social-icons {
height: 0;
opacity: 0;
margin-top: 13px;
visibility: hidden;
transition: all 0.4s;
}
.style-three .team-single-item:hover .social-icons {
height: auto;
opacity: 1;
visibility: visible;
}
.style-three .social-icons ul li, 
.style-five .social-icons ul li{
display: inline-block;
margin-right: 15px;
}
.style-three .user-identity {
position: absolute;
bottom: -40px;
height: 100px;
width: calc(100% - 40px);
left: 20px;
transition: all 0.4s;
}
.style-three .user-identity h6, 
.style-three .user-identity span{
transition: all 0.4s;
}
.style-three .team-single-item:hover .user-identity{
background-color: #002699!important;
height: 150px;
}
.style-three .team-single-item:hover .user-identity h6{
color: white!important;
}
.style-three .team-single-item:hover .user-identity span{
color: rgba(255, 255, 255, 0.8)!important;
}
.style-three .team-image img{
border-radius: 10px;
} .style-four .team-single-item {
overflow: hidden;
transition: all 0.4s;
}
.style-four .user-identity {
display: flex;
align-items: flex-end;
justify-content: space-between;
}
.style-four .social-icons ul li{
display: inline-block;
margin-right: 15px;
}
.style-four .user-identity h6, 
.style-four .user-identity span{
transition: all 0.4s;
}
.style-four .team-single-item:hover .user-identity h6{
color: white!important;
}
.style-four .team-single-item:hover .user-identity span{
color: rgba(255, 255, 255, 0.8)!important;
} .style-five .social-icons ul li a i{
width: 30px;
height: 30px;
display: flex;
color: #010E37;
font-size: 14px;
border-radius: 100%;
align-items: center;
justify-content: center;
background: #FFFFFF;
}
.style-five .team-single-item .social-icons ul li:hover i {
color: #fff;
background: #5F2DEE;
}
.style-five .team-thumb {
position: relative;
}
.style-five .social-icons {
background-color: #010E37;
text-align: center;
padding: 20px;
border-radius: 3px;
width: calc(100% - 80px);
position: absolute;
bottom: 0;
left: 40px;
transition: all 0.5s;
opacity: 0;
visibility: hidden;
}
.style-five .team-single-item:hover .social-icons{
opacity: 1;
visibility: visible;
bottom: 20px;
} .style-six .social-icons {
height: 0;
opacity: 0;
margin-top: 13px;
visibility: hidden;
padding-top: 15px;
transition: all 0.4s;
border-top: 1px solid rgba(225, 225, 225, 0.1);
}
.style-six .team-single-item:hover .social-icons {
height: auto;
opacity: 1;
visibility: visible;
}
.style-six .social-icons ul{
line-height: 1;
}
.style-six .social-icons ul li{
display: inline-block;
margin-right: 10px;
line-height: 1;
}
.style-six .user-identity {
position: absolute;
bottom: 20px;
height: 100px;
width: calc(100% - 40px);
left: 20px;
overflow: hidden;
transition: all 0.4s;
}
.style-six .team-single-item:hover .user-identity{
height: 150px;
} .team-slider-arrow .prev {
position: absolute;
left: 0;
bottom: 0px;
}
.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;
} .techza--tn-dis p:last-child {
margin-bottom: 0px !important;
}
.testimonial-slider-arrow {
position: absolute;
width: 100%;
} .techza--tn-single.style-one {
text-align: left !important;
}
.techza--tn-single.style-one .techza--tn-icon {
margin-bottom: 30px;
position: unset;
}
.techza--tn-single.style-one .techza--tn-name {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
color: #000B33;
} .techza--tn-single.style-two {
background-color: #fff;
box-shadow: 0px 4px 40px rgba(43, 89, 255, 0.08);
border-radius: 10px;
padding: 30px;
text-align: left !important;
margin-top: 55px;
}
.techza--tn-single.style-two .techza--t-thumb:after {
background: linear-gradient(90deg, #8C30F5 0%, #FF4B5C 100%);
opacity: 0.8;
width: 90px;
height: 90px;
border-radius: 50%;
content: "";
position: absolute;
top: -6px;
left: -6px;
z-index: -1;
}
.techza--tn-single.style-two .techza--t-thumb img {
width: 78px !important;
height: 78px !important;
z-index: 3;
object-position: center top;
}
.techza--tn-single.style-two .techza--t-thumb {
position: absolute;
z-index: 1;
top: -45px;
}
.techza-tn-bottom-style-two {
margin-top: 30px;
margin-bottom: 16px;
}
.techza--tn-single.style-two .techza--tn-icon {
position: absolute;
right: 30px;
top: 84px;
color: #FD4C5C;
}
.techza-tn-bottom-style-two .techza--tn-icon {
position: absolute;
}
.techza--tn-single {
position: relative;
} .techza--tn-single.style-three .techza--tn-dis {
padding: 30px;
background-color: #fff;
border: 1px solid #E9E5EF;
border-radius: 10px;
margin-bottom: 35px;
position: relative;
box-shadow: 0px 30px 40px rgba(212, 217, 232, 0.2);
}
.techza--tn-single.style-three .techza--tn-dis p {
margin-bottom: 0px;
text-align: left;
}
.techza-tn-bottom-style-three .techza--t-thumb img {
margin: 0 auto;
}
.techza--tn-single.style-three .techza--tn-dis:after {
position: absolute;
width: 25px;
height: 25px;
background-color: #fff;
content: "";
transform: rotate(45deg);
left: calc(50% - 13px);
border-bottom: 1px solid #E9E5EF;
bottom: -13px;
border-left: 1px;
border-right: 1px solid #E9E5EF;
} .techza--tn-single.style-four {
border-radius: 10px;
background-color: #fff;
}
.techza-tn-bottom-style-four {
display: flex;
align-items: center;
justify-content: space-between;
}
.techza-tn-bottom-style-four .techza--tn-user-identity {
display: flex;
align-items: center;
}
.techza-tn-bottom-style-four .techza--tn-name-title {
margin-bottom: 0px;
}
.techza--tn-single.style-four {
padding: 40px;
}
.techza--tn-dis p {
margin-bottom: 0px;
}
.style-four .testimonial-slider .slick-list {
box-sizing: initial;
} .techza-tn-bottom-style-five .techza--tn-top .techza--t-thumb img {
width: 95px !important;
height: 95px !important;
display: inline-block;
margin-right: 20px;
max-width: fit-content;
}
@media only screen and (min-width: 992px) and (max-width: 2550px) {
.techza-tn-bottom-style-five {
display: flex;
}
.techza--tn-single.style-five .techza--tn-top {
width: 21.5%;
}
.techza--tn-single.style-five .techza--tn-right {
width: 79.5%;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
.techza--tn-single.style-five .techza--tn-right {
margin-left: 25px;
}
}
@media only screen and (min-width: 320px) and (max-width:767px) {
.techza--tn-single.style-five .techza--tn-right {
margin-top: 25px;
}
ul.pf-isotope-nav {
margin-bottom: 40px;
display: block;
}
}
@media only screen and (min-width: 768px) and (max-width:1024px) {
.techza--tn-single.style-five .techza--tn-right {
margin-top: 25px;
}
.techza-tn-bottom-style-five {
display: inline-block !important;
}
}   .techza-tn-bottom-style-five .techza--tn-name-title {
margin-bottom: 0;
} .style-eight-top {
padding: 40px;
box-shadow: 0px 4px 40px rgba(43, 89, 255, 0.08);
border-radius: 10px;
background-color: #fff;
position: relative;
text-align: left;
}
.style-eight-top:after {
position: absolute;
left: 5%;
bottom: -28px;
content: "";
border-left: 15px solid transparent;
border-right: 15px solid #fff;
z-index: 99;
border-top: 15px solid #fff;
border-bottom: 15px solid transparent; border-radius: 2px;
}
.techza-tn-bottom-style-eight {
display: flex;
align-items: center;
margin-top: 40px;
margin-left: 25px;
text-align: left;
}
.style-eight-top .techza--tn-icon {
position: initial;
margin-top: 30px;
color: #FD4C5C;
}
.style-eight-top .techza--tn-icon i {
margin-right: 4px;
}
.techza-tn-bottom-style-eight .techza--tn-name-title {
margin-bottom: 0;
} .techza--tn-single.style-nine .techza--tn-icon {
position: static;
}
.techza-tn-bottom-style-nine {
display: flex;
}
.techza--tn-single.style-nine {
background-color: #fff;
box-shadow: 0px 4px 40px rgba(43, 89, 255, 0.08);
border-radius: 10px;
padding: 40px;
}
.techza--tn-single.style-nine .techza--t-thumb img {
width: 70px !important;
height: 70px !important;
margin-right: 0px;
margin-bottom: 15px;
}
.techza--tn-name-title {
margin-bottom: 20px;
}
.techza--tn-single.style-nine .techza--tn-dis {
font-size: 18px;
color: #000B33;
} .techza--tn-single.style-ten {
padding: 40px;
box-shadow: 0px 9px 11px rgb(43 89 255 / 8%);
background-color: #fff;
text-align: left;
}
.techza-tn-bottom-style-style-ten {
display: flex;
align-items: center;
text-align: left;
}
.techza--tn-single.style-ten .techza--tn-dis p {
margin-bottom: 40px;
text-align: left;
}
.techza--tn-single.style-ten .techza--tn-icon {
color: #FFC83E;
position: absolute;
}
.techza--tn-single.style-ten .style-eight-top:after {
display: none;
}
.techza-tn-bottom-style-style-ten .techza--tn-name-title {
margin-bottom: 0;
}
.techza--tn-single,
.techza--t-thumb img,
.techza--tn-name,
.techza--tn-title,
.techza--tn-icon,
.techza--tn-bottm p,
.techza-tn-bottom-style-three {
transition: ease-in-out 0.4s;
-webkit-transition: ease-in-out 0.4s;
-moz-transition: ease-in-out 0.4s;
-ms-transition: ease-in-out 0.4s;
-o-transition: ease-in-out 0.4s;
}
.techza--t-thumb img {
width: 50px !important;
height: 50px !important;
object-fit: cover;
border-radius: 50% !important;
margin-right: 13px;
-webkit-border-radius: 50% !important;
-moz-border-radius: 50% !important;
-ms-border-radius: 50% !important;
-o-border-radius: 50% !important;
object-position: center top;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
.style-three .testimonial-slider-arrow .slick-prev {
position: absolute;
top: 104%;
left: 30%;
transform: translate(-50%, -50%);
}
.style-three .testimonial-slider-arrow .slick-next {
position: absolute;
top: 104%;
right: 30%;
transform: translate(-50%, -50%);
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.style-three .testimonial-slider-arrow .slick-next {
position: absolute;
top: 104%;
right: 43%;
transform: translate(-50%, -50%);
}
.style-three .testimonial-slider-arrow .slick-prev {
position: absolute;
top: 104%;
left: 43%;
transform: translate(-50%, -50%);
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.style-three .testimonial-slider-arrow .slick-prev {
position: absolute;
top: 100%;
left: 35%;
transform: translate(-50%, -50%);
}
.style-three .testimonial-slider-arrow .slick-next {
position: absolute;
top: 100%;
right: 50%;
transform: translate(-50%, -50%);
}
}
@media only screen and (min-width: 1200px) and (max-width: 2500px) {
.style-three .testimonial-slider-arrow .slick-prev {
position: absolute;
top: 95%;
left: 42%;
transform: translate(-50%, -50%);
}
.style-three .testimonial-slider-arrow .slick-next {
position: absolute;
top: 95%;
right: 50%;
transform: translate(-50%, -50%);
}
}
.testimonial-slider:focus {
outline: none;
box-shadow: none;
}
.testimonial-slider ul.testimonial-slider-dot-list {
margin-top: 25px;
text-align: center;
display: flex;
justify-content: center;
}
.testimonial-slider ul.testimonial-slider-dot-list {
list-style: none;
left: 0;
bottom: 0;
margin-bottom: 0px;
padding: 0;
}
.testimonial-slider ul.testimonial-slider-dot-list li.slick-active {
width: 10px !important;
height: 10px !important;
background: #2C4BFF !important;
opacity: 1;
transition: .4s ease-in-out;
-webkit-transition: .4s ease-in-out;
-moz-transition: .4s ease-in-out;
-ms-transition: .4s ease-in-out;
-o-transition: .4s ease-in-out;
}
.testimonial-slider ul.testimonial-slider-dot-list li {
border-radius: 50%;
width: 10px;
height: 10px;
opacity: .3;
margin: 0 4px;
background: #1E3D59;
cursor: pointer;
}
.testimonial-slider ul.testimonial-slider-dot-list li button {
display: none;
}
.team-slider-arrow .slick-active {
color: #1D263A;
}
@media (min-width: 1200px) {
.testimonial-slider ul.testimonial-slider-dot-list {
margin-top: 40px;
}
} .testimonial-slider-arrow .slick-prev:before,
.testimonial-slider-arrow .slick-next:before {
display: none;
}
.testimonial-slider-arrow.slick-active {
color: #1D263A;
}
.testimonial-slider-arrow .prev {
position: absolute;
left: 0;
bottom: 0px;
}
.testimonial-slider-arrow .next {
position: absolute;
right: 0;
bottom: 0px;
}
.testimonial-slider-arrow .slick-active {
background: #2C4BFF;
color: #fff;
}
.testimonial-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;
}
.testimonial-slider-arrow button:hover {
background-color: #1D263A;
color: #fff;
} .portfolio-slider-arrow .slick-arrow.slick-hidden {
display: block !important;
}
.portfolio-slider-arrow {
position: absolute;
width: 100%;
}
.portfolio-slider:focus {
outline: none;
box-shadow: none;
}
.portfolio-slider ul.portfolio-slider-dot-list {
margin-top: 25px;
text-align: center;
display: flex;
justify-content: center;
}
.portfolio-slider ul.portfolio-slider-dot-list {
list-style: none;
left: 0;
bottom: 0;
margin-bottom: 0px;
padding: 0;
}
.portfolio-slider ul.portfolio-slider-dot-list li.slick-active {
width: 10px !important;
height: 10px !important;
background: #2C4BFF !important;
opacity: 1;
transition: .4s ease-in-out;
-webkit-transition: .4s ease-in-out;
-moz-transition: .4s ease-in-out;
-ms-transition: .4s ease-in-out;
-o-transition: .4s ease-in-out;
}
.portfolio-slider ul.portfolio-slider-dot-list li {
border-radius: 50%;
width: 10px;
height: 10px;
opacity: .3;
margin: 0 4px;
background: #1E3D59;
cursor: pointer;
}
.portfolio-slider ul.portfolio-slider-dot-list li button {
display: none;
}
@media (min-width: 1200px) {
.portfolio-slider ul.portfolio-slider-dot-list {
margin-top: 40px;
}
} .portfolio-slider-arrow .slick-prev:before,
.portfolio-slider-arrow .slick-next:before {
display: none;
}
.portfolio-slider-arrow.slick-active {
color: #1D263A;
}
.portfolio-slider-arrow .prev {
position: absolute;
left: 0;
bottom: 0px;
}
.portfolio-slider-arrow .next {
position: absolute;
right: 0;
bottom: 0px;
}
.portfolio-slider-arrow .slick-active {
background: #2C4BFF;
color: #fff;
}
.portfolio-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;
}
.portfolio-slider-arrow button:hover {
background-color: #1D263A;
color: #fff;
} .circle-126 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 106px;
max-width: 106px;
min-height: 106px;
max-height: 106px;
}
@media (min-width: 768px) {
.circle-126 {
min-width: 126px;
max-width: 126px;
min-height: 126px;
max-height: 126px;
}
}
.circle-91 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 91px;
max-width: 91px;
min-height: 91px;
max-height: 91px;
}
.circle-103 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 90px;
max-width: 90px;
min-height: 90px;
max-height: 90px;
}
@media (min-width: 768px) {
.circle-103 {
min-width: 103px;
max-width: 103px;
min-height: 103px;
max-height: 103px;
}
}
.circle-98 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 98px;
max-width: 98px;
min-height: 98px;
max-height: 98px;
}
.circle-99 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 99px;
max-width: 99px;
min-height: 99px;
max-height: 99px;
}
@media (min-width: 768px) {
.circle-99 {
min-width: 99px;
max-width: 99px;
min-height: 99px;
max-height: 99px;
}
}
.circle-95 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 85px;
max-width: 85px;
min-height: 85px;
max-height: 85px;
}
@media (min-width: 768px) {
.circle-95 {
min-width: 95px;
max-width: 95px;
min-height: 95px;
max-height: 95px;
}
}
.circle-113 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 95px;
max-width: 95px;
min-height: 95px;
max-height: 95px;
}
@media (min-width: 768px) {
.circle-113 {
min-width: 113px;
max-width: 113px;
min-height: 113px;
max-height: 113px;
}
}
.circle-88 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 78px;
max-width: 78px;
min-height: 78px;
max-height: 78px;
}
@media (min-width: 768px) {
.circle-88 {
min-width: 88px;
max-width: 88px;
min-height: 88px;
max-height: 88px;
}
}
.circle-108 {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
min-width: 98px;
max-width: 98px;
min-height: 98px;
max-height: 98px;
}
@media (min-width: 768px) {
.circle-108 {
min-width: 108px;
max-width: 108px;
min-height: 108px;
max-height: 108px;
}
}
.brand-area--l2 {
padding-top: 50px;
padding-bottom: 0px;
}
@media (min-width: 768px) {
.brand-area--l2 {
padding-top: 100px;
padding-bottom: 80px;
}
}
@media (min-width: 992px) {
.brand-area--l2 {
padding-top: 123px;
padding-bottom: 135px;
}
}
.brand-group-image-l2 {
margin-left: -22px;
}
@media (min-width: 576px) {
.brand-group-image-l2 {
transform: scale(0.8);
}
}
@media (min-width: 768px) {
.brand-group-image-l2 {
margin-top: 40px;
transform: scale(1);
}
}
@media (min-width: 992px) {
.brand-group-image-l2 {
margin-top: 100px;
}
}
.brand-image-group--l2 {
display: flex;
align-items: center;
justify-content: center;
min-height: 503px;
transform: scale(0.9);
}
@media (min-width: 768px) {
.brand-image-group--l2 {
transform: scale(0.9);
}
}
@media (min-width: 992px) {
.brand-image-group--l2 {
transform: scale(1);
}
}
.brand-image-group--l2__single {
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.brand-image-group--l2__image--main {
width: 5%;
position: relative;
border: 6px solid #ffffff;
background-color: #ff5722;
border-radius: 50%;
z-index: 1;
}
.brand-image-group--l2__img-1 {
position: absolute;
left: 37%;
top: 7%;
width: 10%;
z-index: 2;
}
@media (min-width: 480px) {
.brand-image-group--l2__img-1 {
left: 47%;
}
}
.brand-image-group--l2__img-2 {
position: absolute;
right: -8%;
top: 16%;
width: 11%;
z-index: 1;
}
@media (min-width: 768px) {
.brand-image-group--l2__img-2 {
right: -12%;
top: 10%;
}
}
.brand-image-group--l2__img-3 {
position: absolute;
right: -10%;
top: 50%;
transform: translateY(-50%);
width: 11%;
z-index: 1;
}
@media (min-width: 576px) and (max-width: 768px) {
.brand-image-group--l2__img-3 {
right: -9%;
}
}
@media (min-width: 768px) {
.brand-image-group--l2__img-3 {
right: -28%;
}
}
.brand-image-group--l2__img-4 {
position: absolute;
right: 0;
bottom: 20%;
width: 10%;
z-index: 1;
}
.brand-image-group--l2__img-5 {
position: absolute;
left: 38%;
} .elementor-109 .elementor-element.elementor-element-75dd13e img {
object-position: center top;
}
@media only screen and (min-width: 1025px) and (max-width:1300px) {
h1.elementor-heading-title {
font-size: 60px !important;
}
.elementor-element-dacafd5 {
display: none;
}
.blog-breadcrumb h1.post__title {
font-size: 60px;
}
.blog-breadcrumb p.post__caption {
padding: 0px 50px;
}
}
.elementor-109 .elementor-element.elementor-element-75dd13e img {
image-rendering: pixelated;
} @media (min-width: 992px) and (max-width: 1570px) {
.elementor-109 .elementor-element.elementor-element-75dd13e {
right: 0;
}
}
@media (min-width: 992px) and (max-width: 1349px) {
.elementor-109 .elementor-element.elementor-element-75dd13e {
bottom: -134px !important;
}
.elementor-109 .elementor-element.elementor-element-0f056ed .elementor-heading-title {
font-size: 50px !important;
}
.elementor-109 .elementor-element.elementor-element-75dd13e img {
height: 600px !important;
width: 80% !important;
}
}
@media (min-width: 1024px) and (max-width: 1350px) {
.elementor-109 .elementor-element.elementor-element-c0983b7 {
padding-bottom: 113px !important;
}
}.techza-woocommer-top-righ-wraper ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
align-items: center;
justify-content: end;
}
.techza-woocommer-top-righ-wraper ul li a {
position: relative;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.techza-woocommer-top-righ-wraper ul li a span {
background-color: #222;
color: #fff;
width: 20px;
text-align: center;
line-height: 20px;
height: 20px;
font-size: 12px;
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
font-weight: 700;
transform: translate(25px, 9px);
}
.techza-woocommer-top-righ-wraper ul li a svg path {
stroke: transparent !important;
}@font-face {
font-family: 'ClashDisplay-Semibold';
src: url(//mezratech.com/wp-content/plugins/techza-helper/assets/fonts/ClashDisplay-Semibold.woff2) format('woff2'),
url(//mezratech.com/wp-content/plugins/techza-helper/assets/fonts/ClashDisplay-Semibold.woff) format('woff'),
url(//mezratech.com/wp-content/plugins/techza-helper/assets/fonts/ClashDisplay-Semibold.ttf) format('truetype');
font-weight: 600;
font-display: swap;
font-style: normal;
}.techza-text-slider-data {
display: flex !important;
align-items: center;
justify-content: center;
margin: 0 10px;
}
.techza-text-slider-data h3 {
font-weight: 700;
font-size: 30px;
letter-spacing: 2px;
display: inline-block;
margin: 0 15px;
color: #fff;
}
.techza-text-slider-icon {
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s;
}
.techza-text-slider-icon i,
.techza-text-slider-icon path {
transition: all 0.4s;
font-size: 30px;
} .techza-card-wrap {
border-radius: 10px;
padding: 20px;
transition: all 0.4s;
position: relative;
background: #201C2C;
}
.techza-card-thumb {
overflow: hidden;
border-radius: 10px;
}
.techza-portfolio-image {
overflow: hidden;
}
.techza-card-thumb img,
.techza-portfolio-image img {
width: 100%;
object-fit: cover;
object-position: center top;
transition: all 0.4s;
}
.techza-card-wrap:hover .techza-card-thumb img,
.techza-portfolio-item:hover .techza-portfolio-image img {
transform: scale(1.05) rotate(1deg);
}
.techza-card-data,
.techza-portfolio-content {
margin-top: 20px;
}
.techza-card-data h3,
.techza-portfolio-content h3 {
font-weight: 600;
font-size: 20px;
line-height: 28px;
color: #FFFFFF;
margin: 0 0 5px;
font-family: Inter, sans-serif;
}
.techza-card-data p,
.pf-pre-sale {
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #FFFFFF;
opacity: 0.4;
margin: 0;
}
.techza-card-footer,
.portfolio-content-bottom {
margin-top: 30px;
display: flex;
align-items: center;
justify-content: space-between;
}
.techza-card-footer-data h4 {
font-weight: 700;
font-size: 20px;
line-height: 28px;
color: #FFFFFF;
margin: 0;
}
.techza-card-btn,
.portfolio-btn {
background: #70DFE6;
border-radius: 10px;
display: inline-block;
padding: 10px 24.4px;
font-weight: 700;
font-size: 14px;
line-height: 20px;
text-align: center;
color: #13111A;
z-index: 0;
transition: all 0.4s;
position: relative;
}
.techza-card-wrap:hover .techza-card-btn {
color: #fff;
}
.techza-portfolio-item:hover .portfolio-btn {
color: #fff;
} .techza-btn {
font-size: 16px;
line-height: 24px;
border-radius: 10px;
padding: 15.5px 36px;
font-weight: 700;
font-family: Inter, sans-serif;
width: fit-content;
position: relative;
z-index: 1;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
min-width: 180px;
text-align: center;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
overflow: hidden;
}
.techza-btn.bg-gray {
color: #fff;
background-color: #26242C;
}
.techza-btn.active:before {
opacity: 1;
}
.techza-btn:before {
content: "";
left: 0;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
position: absolute;
transition: all .4s;
opacity: 0;
background: linear-gradient(225deg, #30FFC7 0%, #512FE7 100%)
}
.techza-btn:hover:before {
opacity: 1;
}
.techza-btn.active:hover:before {
width: 200%;
}
.techza-outline-btn {
padding: 2px;
border-radius: 10px;
display: inline-block;
color: #fff !important;
background: linear-gradient(225deg, #30FFC7 0%, #512FE7 100%)
}
.techza-outline-btn span {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
padding: 15.5px 38px;
border-radius: 10px;
background-color: #13111A;
transition: all .4s;
}
.techza-outline-btn:hover span {
background-color: transparent;
} .techza-text-slider-section {
padding: 22px 0;
overflow: hidden;
background: linear-gradient(225deg, #0080ff 0, #7d41ea 46.35%, #ff00d4 100%);
}
.techza-text-slider-data {
display: flex !important;
align-items: center;
justify-content: center;
margin: 0 10px;
flex-direction: row-reverse;
}
.techza-text-slider-data h3 {
font-weight: 700;
font-size: 30px;
letter-spacing: 2px;
display: inline-block;
margin: 0 15px;
color: #fff;
line-height: 36px;
}
@media (max-width: 600px) {
.techza-text-slider-data {
text-align: center;
display: block !important;
}
}
@media (max-width: 600px) {
.techza-text-slider-icon {
margin-bottom: 10px;
}
} .techza-nft-slider .slick-slide {
margin: 0 12px;
} .techza-hero-thumb {
transform: rotate(3deg);
padding-left: 150px;
}
@media (max-width: 1399px) {
.techza-hero-thumb {
padding-left: 50px;
}
}
@media (max-width: 1024px) {
.techza-hero-thumb {
padding-left: 0px;
transform: rotate(0deg);
}
}
.techza-footer-address li.elementor-icon-list-item {
display: flex;
} .fugo-counter-section .elementor-counter {
width: 250px;
height: 250px;
border: 1px solid #fff;
border-radius: 100%;
display: flex;
padding: 40px;
align-items: center;
justify-content: center;
flex-direction: column;
}
@media (max-width: 1207px) {
.fugo-counter-section .elementor-counter {
width: 210px;
height: 210px;
padding: 20px;
}
} .techza-iconbox-border {
position: relative;
}
.techza-iconbox-border:before {
content: "";
top: 45px;
left: 50%;
width: calc(100% - 30%);
height: 1px;
position: absolute;
transform: translateX(-50%);
border: 1px dashed rgba(19, 17, 26, .1);
}
@media (max-width: 1023px) {
.techza-iconbox-border:before {
width: calc(100% - 50%);
}
}
@media (max-width: 767px) {
.techza-iconbox-border:before {
content: none;
}
} a.techza-portfolio-item.style-two {
position: relative;
overflow: hidden;
border-radius: 10px;
}
a.techza-portfolio-item.style-two:before {
content: "";
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
z-index: 1;
border-radius: 10px;
visibility: hidden;
position: absolute;
transition: all .4s;
background: linear-gradient(180deg, rgba(0, 38, 153, 0) 0%, #002699 100%);
}
a.techza-portfolio-item.style-two:hover:before {
opacity: 1;
visibility: visible;
}
.techza-portfolio-content.content-postion-on-image {
position: absolute;
left: 0;
bottom: 30px;
z-index: 1;
opacity: 0;
border-radius: 10px;
visibility: hidden;
transition: all .4s;
}
.style-two .techza-portfolio-content.content-postion-on-image {
opacity: 0;
left: 20px;
width: 100%;
bottom: 0;
margin: 0;
transition: all 0.4s;
visibility: hidden;
}
a.techza-portfolio-item.style-two:hover .techza-portfolio-content.content-postion-on-image {
opacity: 1;
bottom: 20px;
visibility: visible;
}
.style-two .portfolio-content-bottom {
display: block;
position: absolute;
top: 15px;
right: 0;
margin: 0;
opacity: 0;
visibility: hidden;
transition: all 0.4s;
}
a.techza-portfolio-item.style-two:hover .portfolio-content-bottom{
opacity: 1;
right: 20px;
visibility: visible;
} a.techza-portfolio-item.style-three {
position: relative;
overflow: hidden;
}
a.techza-portfolio-item.style-three:before {
content: "";
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
z-index: 1;
visibility: hidden;
position: absolute;
transition: all .4s;
background: linear-gradient(180deg, rgba(0, 38, 153, 0) 0%, #002699 100%);
}
a.techza-portfolio-item.style-three:hover:before {
opacity: 1;
visibility: visible;
}
.style-three .techza-portfolio-content.content-postion-on-image {
transform: translate(-50%, -50%);
opacity: 0;
width: 100%;
top: 55%;
left: 50%;
margin: 0;
visibility: hidden;
text-align: center;
}
a.techza-portfolio-item.style-three:hover .techza-portfolio-content.content-postion-on-image {
opacity: 1;
top: 50%;
visibility: visible;
}
.style-three .portfolio-content-bottom {
margin-top: 20px;
justify-content: center;
} .style-two .testi-meta {
display: flex;
align-items: center;
}
.style-two .testi-image {
flex-shrink: 0;
} .coming-soong-page .mas-addons-countdown li {
width: 200px;
height: 200px;
display: flex !important;
align-items: center;
justify-content: center;
flex-direction: column;
}
@media (max-width: 1023px) {
.coming-soong-page .mas-addons-countdown li {
width: 170px;
height: 170px;
}
}
.coming-soong-page .mas-addons-countdown li:nth-child(2),
.coming-soong-page .mas-addons-countdown li:nth-child(3),
.coming-soong-page .mas-addons-countdown li:nth-child(4) {
margin-left: -30px;
}
@media (max-width: 767px) {
.coming-soong-page .mas-addons-countdown {
justify-content: center;
}
.coming-soong-page .mas-addons-countdown li:nth-child(2),
.coming-soong-page .mas-addons-countdown li:nth-child(3),
.coming-soong-page .mas-addons-countdown li:nth-child(4) {
margin-left: 0;
}
} .techza-t-infinite-slider-wrap{
transition: all 0.4s;
}
.techza-t-infinite-slider-author-wrap {
display: flex;
align-items: center;
}
.techza-t-infinite-slider-author {
flex-shrink: 0;
}
.techza-t-infinite-slider-author img {
object-fit: cover;
margin-right: 15px;
object-position: center top;
}
.techza-testimonial-infinite-slider .slick-slide {
margin: 0 12px;
}
@media (max-width: 767px) {
.techza-testimonial-infinite-slider .slick-slide {
margin: 0;
}
}
.techza-testimonial-infinite-slider .slick-dots {
position: static;
} .card-slider-arrow .slick-prev,
.card-slider-arrow .slick-next {
left: -75px;
top: 50%;
z-index: 9;
position: absolute;
transform: translateY(-50%);
}
@media (max-width: 767px) {
.card-slider-arrow .slick-prev,
.card-slider-arrow .slick-next {
display: none;
}
}
.card-slider-arrow button {
width: 60px;
height: 60px;
color: #201C2C;
font-size: 20px;
cursor: pointer;
border-radius: 100%;
background-size: 10px;
background-position: center;
background-repeat: no-repeat;
background-color: #FFFFFF;
border: 5px solid #13111A;
transition: all 0.4s;
}
.card-slider-arrow .slick-next {
left: auto;
right: -75px;
}
.card-slider-arrow .slick-prev:before,
.card-slider-arrow .slick-next:before {
content: none;
} .techza-slider-item{
z-index: 0;
position: relative;
background-size: cover;
background-position: center;
}
.techza-slider-item:before{
content: '';
left: 0;
top: 0;
z-index: -1;
width: 100%;
height: 100%;
position: absolute;
mix-blend-mode: multiply;
background-color: rgba(18, 104, 251, 0.6);
}
.techza-hero-content {
width: 840px;
margin: 0 auto;
}
.hero-slider-arrow .slick-prev,
.hero-slider-arrow .slick-next {
left: 150px;
top: 60%;
z-index: 9;
position: absolute;
transform: translateY(-50%);
}
.hero-slider-arrow .slick-next {
left: auto;
right: 150px;
}
@media (max-width: 1300px) {
.hero-slider-arrow .slick-prev,
.hero-slider-arrow .slick-next {
left: 30px;
}
.hero-slider-arrow .slick-next {
left: auto;
right: 30px;
}
}
@media (max-width: 767px) {
.hero-slider-arrow .slick-prev,
.hero-slider-arrow .slick-next {
display: none!important;
}
}
.hero-slider-arrow button {
width: 50px;
height: 50px;
color: #201C2C;
font-size: 20px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
border-radius: 3px;
background-position: center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 0.3);
transition: all 0.4s;
}
.hero-slider-arrow .slick-prev:before,
.hero-slider-arrow .slick-next:before {
content: none;
}
.hero-slider-arrow .slick-prev:hover, 
.hero-slider-arrow .slick-prev:focus, 
.hero-slider-arrow .slick-next:hover, 
.hero-slider-arrow .slick-next:focus{
background-color: rgba(255, 255, 255, 0.3);
} .techza-t-slider-wrap {
margin: 0 110px;
}
@media (max-width: 1199px) {
.techza-t-slider-wrap {
margin: 0 60px;
}
}
.techza-t-author img{
margin: 0 auto;
}
.t-slider-arrow  button{
display: flex;
align-items: center;
justify-content: center;
}
.t-slider-arrow .slick-prev,
.t-slider-arrow .slick-next {
left: 0;
top: 50%;
z-index: 9;
position: absolute;
transform: translateY(-50%);
}
.t-slider-arrow .slick-next {
left: auto;
right: 0;
}
.t-slider-arrow .slick-prev:before,
.t-slider-arrow .slick-next:before {
content: none;
}
.t-slider-arrow .slick-prev:hover, 
.t-slider-arrow .slick-prev:focus, 
.t-slider-arrow .slick-next:hover, 
.t-slider-arrow .slick-next:focus{
background-color: rgba(255, 255, 255, 0.3);
}
.techza-t-slider .slick-slide{
margin: 0 12px;
}
@media (max-width: 767px) {
.t-slider-arrow .slick-prev,
.t-slider-arrow .slick-next {
display: none!important;
}
.techza-t-slider-wrap {
margin: 0px;
}
} .techza-portfolio-slider .slick-slide{
margin: 0 10px;
}
.portfolio-slider-arrows  button{
display: flex;
align-items: center;
justify-content: center;
}
.portfolio-slider-arrows .slick-prev,
.portfolio-slider-arrows .slick-next {
left: 0;
top: 50%;
z-index: 9;
position: absolute;
transform: translateY(-50%);
}
.portfolio-slider-arrows .slick-next {
left: auto;
right: 0;
}
.portfolio-slider-arrows .slick-prev:before,
.portfolio-slider-arrows .slick-next:before {
content: none;
}
@media (max-width: 767px) {
.portfolio-slider-arrows .slick-prev,
.portfolio-slider-arrows .slick-next {
display: none!important;
}
}
.techza-portfolio-slider-wrap {
margin: 0 100px;
}
@media (max-width: 991px) {
.techza-portfolio-slider-wrap {
margin: 0 70px;
}
}
@media (max-width: 767px) {
.techza-portfolio-slider-wrap {
margin: 0px;
}
}
.techza-portfolio-thumb {
position: relative;
}
.techza-portfolio-data {
position: absolute;
bottom: 20px;
width: calc(100% - 40px);
left: 20px;
}
@media (max-width: 1024px) {
.blog-breadcrumb {
padding: 170px 0 75px;
}
}
@media (max-width: 767px) {
.blog-breadcrumb {
padding: 130px 0 55px;
}
} .content-block, 
.blog-content-row  {
padding-top: 120px;
padding-bottom: 110px;
z-index: 1;
}
.blog-content-row {
border-bottom: 1px solid rgba(1, 14, 55, 0.1);
}.header,
.she-header-yes,
.she-header-yes.e-con,
.she-header {
transition: all 0.4s ease-in-out, height 0.4s ease-in-out,
background-color 0.4s ease-in-out, border-bottom-width 0.4s ease-in-out,
border-bottom-color 0.4s ease-in-out, margin 0s !important;
width: 100%;
max-width: 100%;
z-index: 9999;
} .she-header {
margin-bottom: 0;
margin-top: 0; }
.she-header:not(.elementor-sticky) {
position: fixed !important;
top: 0;
} .she-header.she-blur-yes {
-webkit-backdrop-filter: saturate(180%) blur(20px);
backdrop-filter: saturate(180%) blur(20px);
} .headerup {
-ms-transform: translateY(-110vh) !important;
-o-transition: transform 0.4s ease-in-out !important;
-webkit-transform: translateY(-110vh) !important;
-webkit-transition: transform 0.4s ease-in-out !important;
-webkit-transition: -webkit-transform 0.4s ease-in-out !important;
transform: translateY(-110vh) !important;
transition: transform 0.4s ease-in-out !important;
} .she-header-yes .elementor-widget-theme-site-logo,
.she-header-yes .elementor-widget-image,
.she-header-yes .logo,
.she-header-yes .elementor-widget-theme-site-logo img,
.she-header-yes .elementor-widget-image img,
.she-header-yes .logo img {
transition: all 0.4s ease-in-out !important;
} .she-header-transparent-yes,
.elementor-editor-active .she-header-transparent-yes {
transition: all 0.4s ease-in-out, top 0s;
width: 100%;
background-color: rgba(0, 0, 0, 0) !important;
position: absolute !important;
z-index: 99;
} .she-header-yes .elementor-menu-toggle:before,
.she-header-yes .elementor-menu-toggle:after,
.she-header-yes .elementor-menu-toggle i:after {
transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}
.she-header-yes .elementor-menu-toggle {
position: relative;
transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
.she-header-yes .elementor-menu-toggle.elementor-active:before {
transform: translate(-50%, -50%) rotate(-45deg);
}
.she-header-yes .elementor-menu-toggle:after {
transform: translate(-50%, calc(-50% - 0.25em));
}
.she-header-yes .elementor-menu-toggle.elementor-active:after {
transform: translate(-50%, -50%) rotate(45deg);
}
.she-header-yes .elementor-menu-toggle i:after {
transform: translate(-50%, -50%);
} @media screen and (min-width: 783px) {
.admin-bar .she-header:not(.elementor-sticky) {
top: 32px;
}
}@font-face{font-family:elementskit;src:url(//mezratech.com/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/fonts/elementskit.woff?y24e1e) format("woff");font-weight:400;font-style:normal;font-display:swap}.ekit-wid-con .fasicon,.ekit-wid-con .icon,.ekit-wid-con .icon::before,.fasicon,.icon,.icon::before{font-family:elementskit!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ekit-wid-con .fasicon.icon-home::before,.ekit-wid-con .icon.icon-home::before,.icon.icon-home::before{content:"\e800"}.ekit-wid-con .fasicon.icon-advanced-slider::before,.ekit-wid-con .icon.icon-advanced-slider::before,.icon.icon-advanced-slider::before{content:"\e9c8"}.ekit-wid-con .fasicon.icon-image-box::before,.ekit-wid-con .icon.icon-image-box::before,.icon.icon-image-box::before{content:"\ebd1"}.ekit-wid-con .fasicon.icon-image-swap::before,.ekit-wid-con .icon.icon-image-swap::before,.icon.icon-image-swap::before{content:"\eba4"}.ekit-wid-con .fasicon.icon-apartment1::before,.ekit-wid-con .icon.icon-apartment1::before,.icon.icon-apartment1::before{content:"\e801"}.ekit-wid-con .fasicon.icon-pencil::before,.ekit-wid-con .icon.icon-pencil::before,.icon.icon-pencil::before{content:"\e802"}.ekit-wid-con .fasicon.icon-magic-wand::before,.ekit-wid-con .icon.icon-magic-wand::before,.icon.icon-magic-wand::before{content:"\e803"}.ekit-wid-con .fasicon.icon-drop::before,.ekit-wid-con .icon.icon-drop::before,.icon.icon-drop::before{content:"\e804"}.ekit-wid-con .fasicon.icon-lighter::before,.ekit-wid-con .icon.icon-lighter::before,.icon.icon-lighter::before{content:"\e805"}.ekit-wid-con .fasicon.icon-poop::before,.ekit-wid-con .icon.icon-poop::before,.icon.icon-poop::before{content:"\e806"}.ekit-wid-con .fasicon.icon-sun::before,.ekit-wid-con .icon.icon-sun::before,.icon.icon-sun::before{content:"\e807"}.ekit-wid-con .fasicon.icon-moon::before,.ekit-wid-con .icon.icon-moon::before,.icon.icon-moon::before{content:"\e808"}.ekit-wid-con .fasicon.icon-cloud1::before,.ekit-wid-con .icon.icon-cloud1::before,.icon.icon-cloud1::before{content:"\e809"}.ekit-wid-con .fasicon.icon-cloud-upload::before,.ekit-wid-con .icon.icon-cloud-upload::before,.icon.icon-cloud-upload::before{content:"\e80a"}.ekit-wid-con .fasicon.icon-cloud-download::before,.ekit-wid-con .icon.icon-cloud-download::before,.icon.icon-cloud-download::before{content:"\e80b"}.ekit-wid-con .fasicon.icon-cloud-sync::before,.ekit-wid-con .icon.icon-cloud-sync::before,.icon.icon-cloud-sync::before{content:"\e80c"}.ekit-wid-con .fasicon.icon-cloud-check::before,.ekit-wid-con .icon.icon-cloud-check::before,.icon.icon-cloud-check::before{content:"\e80d"}.ekit-wid-con .fasicon.icon-database1::before,.ekit-wid-con .icon.icon-database1::before,.icon.icon-database1::before{content:"\e80e"}.ekit-wid-con .fasicon.icon-lock::before,.ekit-wid-con .icon.icon-lock::before,.icon.icon-lock::before{content:"\e80f"}.ekit-wid-con .fasicon.icon-cog::before,.ekit-wid-con .icon.icon-cog::before,.icon.icon-cog::before{content:"\e810"}.ekit-wid-con .fasicon.icon-trash::before,.ekit-wid-con .icon.icon-trash::before,.icon.icon-trash::before{content:"\e811"}.ekit-wid-con .fasicon.icon-dice::before,.ekit-wid-con .icon.icon-dice::before,.icon.icon-dice::before{content:"\e812"}.ekit-wid-con .fasicon.icon-heart1::before,.ekit-wid-con .icon.icon-heart1::before,.icon.icon-heart1::before{content:"\e813"}.ekit-wid-con .fasicon.icon-star1::before,.ekit-wid-con .icon.icon-star1::before,.icon.icon-star1::before{content:"\e814"}.ekit-wid-con .fasicon.icon-star-half::before,.ekit-wid-con .icon.icon-star-half::before,.icon.icon-star-half::before{content:"\e815"}.ekit-wid-con .fasicon.icon-star-empty::before,.ekit-wid-con .icon.icon-star-empty::before,.icon.icon-star-empty::before{content:"\e816"}.ekit-wid-con .fasicon.icon-flag::before,.ekit-wid-con .icon.icon-flag::before,.icon.icon-flag::before{content:"\e817"}.ekit-wid-con .fasicon.icon-envelope1::before,.ekit-wid-con .icon.icon-envelope1::before,.icon.icon-envelope1::before{content:"\e818"}.ekit-wid-con .fasicon.icon-paperclip::before,.ekit-wid-con .icon.icon-paperclip::before,.icon.icon-paperclip::before{content:"\e819"}.ekit-wid-con .fasicon.icon-inbox::before,.ekit-wid-con .icon.icon-inbox::before,.icon.icon-inbox::before{content:"\e81a"}.ekit-wid-con .fasicon.icon-eye::before,.ekit-wid-con .icon.icon-eye::before,.icon.icon-eye::before{content:"\e81b"}.ekit-wid-con .fasicon.icon-printer::before,.ekit-wid-con .icon.icon-printer::before,.icon.icon-printer::before{content:"\e81c"}.ekit-wid-con .fasicon.icon-file-empty::before,.ekit-wid-con .icon.icon-file-empty::before,.icon.icon-file-empty::before{content:"\e81d"}.ekit-wid-con .fasicon.icon-file-add::before,.ekit-wid-con .icon.icon-file-add::before,.icon.icon-file-add::before{content:"\e81e"}.ekit-wid-con .fasicon.icon-enter::before,.ekit-wid-con .icon.icon-enter::before,.icon.icon-enter::before{content:"\e81f"}.ekit-wid-con .fasicon.icon-exit::before,.ekit-wid-con .icon.icon-exit::before,.icon.icon-exit::before{content:"\e820"}.ekit-wid-con .fasicon.icon-graduation-hat::before,.ekit-wid-con .icon.icon-graduation-hat::before,.icon.icon-graduation-hat::before{content:"\e821"}.ekit-wid-con .fasicon.icon-license::before,.ekit-wid-con .icon.icon-license::before,.icon.icon-license::before{content:"\e822"}.ekit-wid-con .fasicon.icon-music-note::before,.ekit-wid-con .icon.icon-music-note::before,.icon.icon-music-note::before{content:"\e823"}.ekit-wid-con .fasicon.icon-film-play::before,.ekit-wid-con .icon.icon-film-play::before,.icon.icon-film-play::before{content:"\e824"}.ekit-wid-con .fasicon.icon-camera-video::before,.ekit-wid-con .icon.icon-camera-video::before,.icon.icon-camera-video::before{content:"\e825"}.ekit-wid-con .fasicon.icon-camera::before,.ekit-wid-con .icon.icon-camera::before,.icon.icon-camera::before{content:"\e826"}.ekit-wid-con .fasicon.icon-picture::before,.ekit-wid-con .icon.icon-picture::before,.icon.icon-picture::before{content:"\e827"}.ekit-wid-con .fasicon.icon-book::before,.ekit-wid-con .icon.icon-book::before,.icon.icon-book::before{content:"\e828"}.ekit-wid-con .fasicon.icon-bookmark::before,.ekit-wid-con .icon.icon-bookmark::before,.icon.icon-bookmark::before{content:"\e829"}.ekit-wid-con .fasicon.icon-user::before,.ekit-wid-con .icon.icon-user::before,.icon.icon-user::before{content:"\e82a"}.ekit-wid-con .fasicon.icon-users::before,.ekit-wid-con .icon.icon-users::before,.icon.icon-users::before{content:"\e82b"}.ekit-wid-con .fasicon.icon-shirt::before,.ekit-wid-con .icon.icon-shirt::before,.icon.icon-shirt::before{content:"\e82c"}.ekit-wid-con .fasicon.icon-store::before,.ekit-wid-con .icon.icon-store::before,.icon.icon-store::before{content:"\e82d"}.ekit-wid-con .fasicon.icon-cart2::before,.ekit-wid-con .icon.icon-cart2::before,.icon.icon-cart2::before{content:"\e82e"}.ekit-wid-con .fasicon.icon-tag::before,.ekit-wid-con .icon.icon-tag::before,.icon.icon-tag::before{content:"\e82f"}.ekit-wid-con .fasicon.icon-phone-handset::before,.ekit-wid-con .icon.icon-phone-handset::before,.icon.icon-phone-handset::before{content:"\e830"}.ekit-wid-con .fasicon.icon-phone::before,.ekit-wid-con .icon.icon-phone::before,.icon.icon-phone::before{content:"\e831"}.ekit-wid-con .fasicon.icon-pushpin::before,.ekit-wid-con .icon.icon-pushpin::before,.icon.icon-pushpin::before{content:"\e832"}.ekit-wid-con .fasicon.icon-map-marker::before,.ekit-wid-con .icon.icon-map-marker::before,.icon.icon-map-marker::before{content:"\e833"}.ekit-wid-con .fasicon.icon-map::before,.ekit-wid-con .icon.icon-map::before,.icon.icon-map::before{content:"\e834"}.ekit-wid-con .fasicon.icon-location::before,.ekit-wid-con .icon.icon-location::before,.icon.icon-location::before{content:"\e835"}.ekit-wid-con .fasicon.icon-calendar-full::before,.ekit-wid-con .icon.icon-calendar-full::before,.icon.icon-calendar-full::before{content:"\e836"}.ekit-wid-con .fasicon.icon-keyboard::before,.ekit-wid-con .icon.icon-keyboard::before,.icon.icon-keyboard::before{content:"\e837"}.ekit-wid-con .fasicon.icon-spell-check::before,.ekit-wid-con .icon.icon-spell-check::before,.icon.icon-spell-check::before{content:"\e838"}.ekit-wid-con .fasicon.icon-screen::before,.ekit-wid-con .icon.icon-screen::before,.icon.icon-screen::before{content:"\e839"}.ekit-wid-con .fasicon.icon-smartphone::before,.ekit-wid-con .icon.icon-smartphone::before,.icon.icon-smartphone::before{content:"\e83a"}.ekit-wid-con .fasicon.icon-tablet::before,.ekit-wid-con .icon.icon-tablet::before,.icon.icon-tablet::before{content:"\e83b"}.ekit-wid-con .fasicon.icon-laptop::before,.ekit-wid-con .icon.icon-laptop::before,.icon.icon-laptop::before{content:"\e83c"}.ekit-wid-con .fasicon.icon-laptop-phone::before,.ekit-wid-con .icon.icon-laptop-phone::before,.icon.icon-laptop-phone::before{content:"\e83d"}.ekit-wid-con .fasicon.icon-power-switch::before,.ekit-wid-con .icon.icon-power-switch::before,.icon.icon-power-switch::before{content:"\e83e"}.ekit-wid-con .fasicon.icon-bubble::before,.ekit-wid-con .icon.icon-bubble::before,.icon.icon-bubble::before{content:"\e83f"}.ekit-wid-con .fasicon.icon-heart-pulse::before,.ekit-wid-con .icon.icon-heart-pulse::before,.icon.icon-heart-pulse::before{content:"\e840"}.ekit-wid-con .fasicon.icon-construction::before,.ekit-wid-con .icon.icon-construction::before,.icon.icon-construction::before{content:"\e841"}.ekit-wid-con .fasicon.icon-pie-chart::before,.ekit-wid-con .icon.icon-pie-chart::before,.icon.icon-pie-chart::before{content:"\e842"}.ekit-wid-con .fasicon.icon-chart-bars::before,.ekit-wid-con .icon.icon-chart-bars::before,.icon.icon-chart-bars::before{content:"\e843"}.ekit-wid-con .fasicon.icon-gift1::before,.ekit-wid-con .icon.icon-gift1::before,.icon.icon-gift1::before{content:"\e844"}.ekit-wid-con .fasicon.icon-diamond1::before,.ekit-wid-con .icon.icon-diamond1::before,.icon.icon-diamond1::before{content:"\e845"}.ekit-wid-con .fasicon.icon-dinner::before,.ekit-wid-con .icon.icon-dinner::before,.icon.icon-dinner::before{content:"\e847"}.ekit-wid-con .fasicon.icon-coffee-cup::before,.ekit-wid-con .icon.icon-coffee-cup::before,.icon.icon-coffee-cup::before{content:"\e848"}.ekit-wid-con .fasicon.icon-leaf::before,.ekit-wid-con .icon.icon-leaf::before,.icon.icon-leaf::before{content:"\e849"}.ekit-wid-con .fasicon.icon-paw::before,.ekit-wid-con .icon.icon-paw::before,.icon.icon-paw::before{content:"\e84a"}.ekit-wid-con .fasicon.icon-rocket::before,.ekit-wid-con .icon.icon-rocket::before,.icon.icon-rocket::before{content:"\e84b"}.ekit-wid-con .fasicon.icon-briefcase::before,.ekit-wid-con .icon.icon-briefcase::before,.icon.icon-briefcase::before{content:"\e84c"}.ekit-wid-con .fasicon.icon-bus::before,.ekit-wid-con .icon.icon-bus::before,.icon.icon-bus::before{content:"\e84d"}.ekit-wid-con .fasicon.icon-car1::before,.ekit-wid-con .icon.icon-car1::before,.icon.icon-car1::before{content:"\e84e"}.ekit-wid-con .fasicon.icon-train::before,.ekit-wid-con .icon.icon-train::before,.icon.icon-train::before{content:"\e84f"}.ekit-wid-con .fasicon.icon-bicycle::before,.ekit-wid-con .icon.icon-bicycle::before,.icon.icon-bicycle::before{content:"\e850"}.ekit-wid-con .fasicon.icon-wheelchair::before,.ekit-wid-con .icon.icon-wheelchair::before,.icon.icon-wheelchair::before{content:"\e851"}.ekit-wid-con .fasicon.icon-select::before,.ekit-wid-con .icon.icon-select::before,.icon.icon-select::before{content:"\e852"}.ekit-wid-con .fasicon.icon-earth::before,.ekit-wid-con .icon.icon-earth::before,.icon.icon-earth::before{content:"\e853"}.ekit-wid-con .fasicon.icon-smile::before,.ekit-wid-con .icon.icon-smile::before,.icon.icon-smile::before{content:"\e854"}.ekit-wid-con .fasicon.icon-sad::before,.ekit-wid-con .icon.icon-sad::before,.icon.icon-sad::before{content:"\e855"}.ekit-wid-con .fasicon.icon-neutral::before,.ekit-wid-con .icon.icon-neutral::before,.icon.icon-neutral::before{content:"\e856"}.ekit-wid-con .fasicon.icon-mustache::before,.ekit-wid-con .icon.icon-mustache::before,.icon.icon-mustache::before{content:"\e857"}.ekit-wid-con .fasicon.icon-alarm::before,.ekit-wid-con .icon.icon-alarm::before,.icon.icon-alarm::before{content:"\e858"}.ekit-wid-con .fasicon.icon-bullhorn::before,.ekit-wid-con .icon.icon-bullhorn::before,.icon.icon-bullhorn::before{content:"\e859"}.ekit-wid-con .fasicon.icon-volume-high::before,.ekit-wid-con .icon.icon-volume-high::before,.icon.icon-volume-high::before{content:"\e85a"}.ekit-wid-con .fasicon.icon-volume-medium::before,.ekit-wid-con .icon.icon-volume-medium::before,.icon.icon-volume-medium::before{content:"\e85b"}.ekit-wid-con .fasicon.icon-volume-low::before,.ekit-wid-con .icon.icon-volume-low::before,.icon.icon-volume-low::before{content:"\e85c"}.ekit-wid-con .fasicon.icon-volume::before,.ekit-wid-con .icon.icon-volume::before,.icon.icon-volume::before{content:"\e85d"}.ekit-wid-con .fasicon.icon-mic::before,.ekit-wid-con .icon.icon-mic::before,.icon.icon-mic::before{content:"\e85e"}.ekit-wid-con .fasicon.icon-hourglass::before,.ekit-wid-con .icon.icon-hourglass::before,.icon.icon-hourglass::before{content:"\e85f"}.ekit-wid-con .fasicon.icon-undo::before,.ekit-wid-con .icon.icon-undo::before,.icon.icon-undo::before{content:"\e860"}.ekit-wid-con .fasicon.icon-redo::before,.ekit-wid-con .icon.icon-redo::before,.icon.icon-redo::before{content:"\e861"}.ekit-wid-con .fasicon.icon-sync::before,.ekit-wid-con .icon.icon-sync::before,.icon.icon-sync::before{content:"\e862"}.ekit-wid-con .fasicon.icon-history::before,.ekit-wid-con .icon.icon-history::before,.icon.icon-history::before{content:"\e863"}.ekit-wid-con .fasicon.icon-clock1::before,.ekit-wid-con .icon.icon-clock1::before,.icon.icon-clock1::before{content:"\e864"}.ekit-wid-con .fasicon.icon-download::before,.ekit-wid-con .icon.icon-download::before,.icon.icon-download::before{content:"\e865"}.ekit-wid-con .fasicon.icon-upload::before,.ekit-wid-con .icon.icon-upload::before,.icon.icon-upload::before{content:"\e866"}.ekit-wid-con .fasicon.icon-enter-down::before,.ekit-wid-con .icon.icon-enter-down::before,.icon.icon-enter-down::before{content:"\e867"}.ekit-wid-con .fasicon.icon-exit-up::before,.ekit-wid-con .icon.icon-exit-up::before,.icon.icon-exit-up::before{content:"\e868"}.ekit-wid-con .fasicon.icon-bug::before,.ekit-wid-con .icon.icon-bug::before,.icon.icon-bug::before{content:"\e869"}.ekit-wid-con .fasicon.icon-code::before,.ekit-wid-con .icon.icon-code::before,.icon.icon-code::before{content:"\e86a"}.ekit-wid-con .fasicon.icon-link::before,.ekit-wid-con .icon.icon-link::before,.icon.icon-link::before{content:"\e86b"}.ekit-wid-con .fasicon.icon-unlink::before,.ekit-wid-con .icon.icon-unlink::before,.icon.icon-unlink::before{content:"\e86c"}.ekit-wid-con .fasicon.icon-thumbs-up::before,.ekit-wid-con .icon.icon-thumbs-up::before,.icon.icon-thumbs-up::before{content:"\e86d"}.ekit-wid-con .fasicon.icon-thumbs-down::before,.ekit-wid-con .icon.icon-thumbs-down::before,.icon.icon-thumbs-down::before{content:"\e86e"}.ekit-wid-con .fasicon.icon-magnifier::before,.ekit-wid-con .icon.icon-magnifier::before,.icon.icon-magnifier::before{content:"\e86f"}.ekit-wid-con .fasicon.icon-cross::before,.ekit-wid-con .icon.icon-cross::before,.icon.icon-cross::before{content:"\e870"}.ekit-wid-con .fasicon.icon-chevron-up::before,.ekit-wid-con .icon.icon-chevron-up::before,.icon.icon-chevron-up::before{content:"\e873"}.ekit-wid-con .fasicon.icon-chevron-down::before,.ekit-wid-con .icon.icon-chevron-down::before,.icon.icon-chevron-down::before{content:"\e874"}.ekit-wid-con .fasicon.icon-chevron-left::before,.ekit-wid-con .icon.icon-chevron-left::before,.icon.icon-chevron-left::before{content:"\e875"}.ekit-wid-con .fasicon.icon-chevron-right::before,.ekit-wid-con .icon.icon-chevron-right::before,.icon.icon-chevron-right::before{content:"\e876"}.ekit-wid-con .fasicon.icon-arrow-up::before,.ekit-wid-con .icon.icon-arrow-up::before,.icon.icon-arrow-up::before{content:"\e877"}.ekit-wid-con .fasicon.icon-arrow-down::before,.ekit-wid-con .icon.icon-arrow-down::before,.icon.icon-arrow-down::before{content:"\e878"}.ekit-wid-con .fasicon.icon-arrow-left::before,.ekit-wid-con .icon.icon-arrow-left::before,.icon.icon-arrow-left::before{content:"\e879"}.ekit-wid-con .fasicon.icon-arrow-right::before,.ekit-wid-con .icon.icon-arrow-right::before,.icon.icon-arrow-right::before{content:"\e87a"}.ekit-wid-con .fasicon.icon-right-arrow::before,.ekit-wid-con .icon.icon-right-arrow::before,.icon.icon-right-arrow::before{content:"\e9c5"}.ekit-wid-con .fasicon.icon-left-arrow::before,.ekit-wid-con .icon.icon-left-arrow::before,.icon.icon-left-arrow::before{content:"\e94a"}.ekit-wid-con .fasicon.icon-download-arrow::before,.ekit-wid-con .icon.icon-download-arrow::before,.icon.icon-download-arrow::before{content:"\e94b"}.ekit-wid-con .fasicon.icon-up-arrow::before,.ekit-wid-con .icon.icon-up-arrow::before,.icon.icon-up-arrow::before{content:"\e9c3"}.ekit-wid-con .fasicon.icon-arrows::before,.ekit-wid-con .icon.icon-arrows::before,.icon.icon-arrows::before{content:"\e9c4"}.ekit-wid-con .fasicon.icon-double-angle-pointing-to-right::before,.ekit-wid-con .icon.icon-double-angle-pointing-to-right::before,.icon.icon-double-angle-pointing-to-right::before{content:"\e949"}.ekit-wid-con .fasicon.icon-double-left-chevron::before,.ekit-wid-con .icon.icon-double-left-chevron::before,.icon.icon-double-left-chevron::before{content:"\e948"}.ekit-wid-con .fasicon.icon-left-arrow2::before,.ekit-wid-con .icon.icon-left-arrow2::before,.icon.icon-left-arrow2::before{content:"\e94c"}.ekit-wid-con .fasicon.icon-right-arrow2::before,.ekit-wid-con .icon.icon-right-arrow2::before,.icon.icon-right-arrow2::before{content:"\e94d"}.ekit-wid-con .fasicon.icon-warning::before,.ekit-wid-con .icon.icon-warning::before,.icon.icon-warning::before{content:"\e87c"}.ekit-wid-con .fasicon.icon-down-arrow1::before,.ekit-wid-con .icon.icon-down-arrow1::before,.icon.icon-down-arrow1::before{content:"\e994"}.ekit-wid-con .fasicon.icon-up-arrow1::before,.ekit-wid-con .icon.icon-up-arrow1::before,.icon.icon-up-arrow1::before{content:"\e995"}.ekit-wid-con .fasicon.icon-right-arrow1::before,.ekit-wid-con .icon.icon-right-arrow1::before,.icon.icon-right-arrow1::before{content:"\e876";font-weight:900}.ekit-wid-con .fasicon.icon-left-arrows::before,.ekit-wid-con .icon.icon-left-arrows::before,.icon.icon-left-arrows::before{content:"\e997"}.ekit-wid-con .fasicon.icon-question-circle::before,.ekit-wid-con .icon.icon-question-circle::before,.icon.icon-question-circle::before{content:"\e87d"}.ekit-wid-con .fasicon.icon-menu-circle::before,.ekit-wid-con .icon.icon-menu-circle::before,.icon.icon-menu-circle::before{content:"\e87e"}.ekit-wid-con .fasicon.icon-checkmark-circle::before,.ekit-wid-con .icon.icon-checkmark-circle::before,.icon.icon-checkmark-circle::before{content:"\e87f"}.ekit-wid-con .fasicon.icon-cross-circle::before,.ekit-wid-con .icon.icon-cross-circle::before,.icon.icon-cross-circle::before{content:"\e880"}.ekit-wid-con .fasicon.icon-plus-circle::before,.ekit-wid-con .icon.icon-plus-circle::before,.icon.icon-plus-circle::before{content:"\e881"}.ekit-wid-con .fasicon.icon-move::before,.ekit-wid-con .icon.icon-move::before,.icon.icon-move::before{content:"\e87b"}.ekit-wid-con .fasicon.icon-circle-minus::before,.ekit-wid-con .icon.icon-circle-minus::before,.icon.icon-circle-minus::before{content:"\e882"}.ekit-wid-con .fasicon.icon-arrow-up-circle::before,.ekit-wid-con .icon.icon-arrow-up-circle::before,.icon.icon-arrow-up-circle::before{content:"\e883"}.ekit-wid-con .fasicon.icon-arrow-down-circle::before,.ekit-wid-con .icon.icon-arrow-down-circle::before,.icon.icon-arrow-down-circle::before{content:"\e884"}.ekit-wid-con .fasicon.icon-arrow-left-circle::before,.ekit-wid-con .icon.icon-arrow-left-circle::before,.icon.icon-arrow-left-circle::before{content:"\e885"}.ekit-wid-con .fasicon.icon-arrow-right-circle::before,.ekit-wid-con .icon.icon-arrow-right-circle::before,.icon.icon-arrow-right-circle::before{content:"\e886"}.ekit-wid-con .fasicon.icon-chevron-up-circle::before,.ekit-wid-con .icon.icon-chevron-up-circle::before,.icon.icon-chevron-up-circle::before{content:"\e887"}.ekit-wid-con .fasicon.icon-chevron-down-circle::before,.ekit-wid-con .icon.icon-chevron-down-circle::before,.icon.icon-chevron-down-circle::before{content:"\e888"}.ekit-wid-con .fasicon.icon-chevron-left-circle::before,.ekit-wid-con .icon.icon-chevron-left-circle::before,.icon.icon-chevron-left-circle::before{content:"\e889"}.ekit-wid-con .fasicon.icon-chevron-right-circle::before,.ekit-wid-con .icon.icon-chevron-right-circle::before,.icon.icon-chevron-right-circle::before{content:"\e88a"}.ekit-wid-con .fasicon.icon-crop::before,.ekit-wid-con .icon.icon-crop::before,.icon.icon-crop::before{content:"\e88b"}.ekit-wid-con .fasicon.icon-frame-expand::before,.ekit-wid-con .icon.icon-frame-expand::before,.icon.icon-frame-expand::before{content:"\e88c"}.ekit-wid-con .fasicon.icon-frame-contract::before,.ekit-wid-con .icon.icon-frame-contract::before,.icon.icon-frame-contract::before{content:"\e88d"}.ekit-wid-con .fasicon.icon-layers::before,.ekit-wid-con .icon.icon-layers::before,.icon.icon-layers::before{content:"\e88e"}.ekit-wid-con .fasicon.icon-funnel::before,.ekit-wid-con .icon.icon-funnel::before,.icon.icon-funnel::before{content:"\e88f"}.ekit-wid-con .fasicon.icon-text-format::before,.ekit-wid-con .icon.icon-text-format::before,.icon.icon-text-format::before{content:"\e890"}.ekit-wid-con .fasicon.icon-text-size::before,.ekit-wid-con .icon.icon-text-size::before,.icon.icon-text-size::before{content:"\e892"}.ekit-wid-con .fasicon.icon-bold::before,.ekit-wid-con .icon.icon-bold::before,.icon.icon-bold::before{content:"\e893"}.ekit-wid-con .fasicon.icon-italic::before,.ekit-wid-con .icon.icon-italic::before,.icon.icon-italic::before{content:"\e894"}.ekit-wid-con .fasicon.icon-underline::before,.ekit-wid-con .icon.icon-underline::before,.icon.icon-underline::before{content:"\e895"}.ekit-wid-con .fasicon.icon-strikethrough::before,.ekit-wid-con .icon.icon-strikethrough::before,.icon.icon-strikethrough::before{content:"\e896"}.ekit-wid-con .fasicon.icon-highlight::before,.ekit-wid-con .icon.icon-highlight::before,.icon.icon-highlight::before{content:"\e897"}.ekit-wid-con .fasicon.icon-text-align-left::before,.ekit-wid-con .icon.icon-text-align-left::before,.icon.icon-text-align-left::before{content:"\e898"}.ekit-wid-con .fasicon.icon-text-align-center::before,.ekit-wid-con .icon.icon-text-align-center::before,.icon.icon-text-align-center::before{content:"\e899"}.ekit-wid-con .fasicon.icon-text-align-right::before,.ekit-wid-con .icon.icon-text-align-right::before,.icon.icon-text-align-right::before{content:"\e89a"}.ekit-wid-con .fasicon.icon-text-align-justify::before,.ekit-wid-con .icon.icon-text-align-justify::before,.icon.icon-text-align-justify::before{content:"\e89b"}.ekit-wid-con .fasicon.icon-line-spacing::before,.ekit-wid-con .icon.icon-line-spacing::before,.icon.icon-line-spacing::before{content:"\e89c"}.ekit-wid-con .fasicon.icon-indent-increase::before,.ekit-wid-con .icon.icon-indent-increase::before,.icon.icon-indent-increase::before{content:"\e89d"}.ekit-wid-con .fasicon.icon-indent-decrease::before,.ekit-wid-con .icon.icon-indent-decrease::before,.icon.icon-indent-decrease::before{content:"\e89e"}.ekit-wid-con .fasicon.icon-page-break::before,.ekit-wid-con .icon.icon-page-break::before,.icon.icon-page-break::before{content:"\e8a2"}.ekit-wid-con .fasicon.icon-hand::before,.ekit-wid-con .icon.icon-hand::before,.icon.icon-hand::before{content:"\e8a5"}.ekit-wid-con .fasicon.icon-pointer-up::before,.ekit-wid-con .icon.icon-pointer-up::before,.icon.icon-pointer-up::before{content:"\e8a6"}.ekit-wid-con .fasicon.icon-pointer-right::before,.ekit-wid-con .icon.icon-pointer-right::before,.icon.icon-pointer-right::before{content:"\e8a7"}.ekit-wid-con .fasicon.icon-pointer-down::before,.ekit-wid-con .icon.icon-pointer-down::before,.icon.icon-pointer-down::before{content:"\e8a8"}.ekit-wid-con .fasicon.icon-pointer-left::before,.ekit-wid-con .icon.icon-pointer-left::before,.icon.icon-pointer-left::before{content:"\e8a9"}.ekit-wid-con .fasicon.icon-burger::before,.ekit-wid-con .icon.icon-burger::before,.icon.icon-burger::before{content:"\e94e"}.ekit-wid-con .fasicon.icon-cakes::before,.ekit-wid-con .icon.icon-cakes::before,.icon.icon-cakes::before{content:"\e94f"}.ekit-wid-con .fasicon.icon-cheese::before,.ekit-wid-con .icon.icon-cheese::before,.icon.icon-cheese::before{content:"\e950"}.ekit-wid-con .fasicon.icon-drink-glass::before,.ekit-wid-con .icon.icon-drink-glass::before,.icon.icon-drink-glass::before{content:"\e951"}.ekit-wid-con .fasicon.icon-pizza::before,.ekit-wid-con .icon.icon-pizza::before,.icon.icon-pizza::before{content:"\e952"}.ekit-wid-con .fasicon.icon-vplay::before,.ekit-wid-con .icon.icon-vplay::before,.icon.icon-vplay::before{content:"\e953"}.ekit-wid-con .fasicon.icon-newsletter::before,.ekit-wid-con .icon.icon-newsletter::before,.icon.icon-newsletter::before{content:"\e954"}.ekit-wid-con .fasicon.icon-coins-2::before,.ekit-wid-con .icon.icon-coins-2::before,.icon.icon-coins-2::before{content:"\e955"}.ekit-wid-con .fasicon.icon-commerce-2::before,.ekit-wid-con .icon.icon-commerce-2::before,.icon.icon-commerce-2::before{content:"\e956"}.ekit-wid-con .fasicon.icon-monitor::before,.ekit-wid-con .icon.icon-monitor::before,.icon.icon-monitor::before{content:"\e957"}.ekit-wid-con .fasicon.icon-business::before,.ekit-wid-con .icon.icon-business::before,.icon.icon-business::before{content:"\e958"}.ekit-wid-con .fasicon.icon-graphic-2::before,.ekit-wid-con .icon.icon-graphic-2::before,.icon.icon-graphic-2::before{content:"\e959"}.ekit-wid-con .fasicon.icon-commerce-1::before,.ekit-wid-con .icon.icon-commerce-1::before,.icon.icon-commerce-1::before{content:"\e95a"}.ekit-wid-con .fasicon.icon-hammer::before,.ekit-wid-con .icon.icon-hammer::before,.icon.icon-hammer::before{content:"\e95b"}.ekit-wid-con .fasicon.icon-justice-1::before,.ekit-wid-con .icon.icon-justice-1::before,.icon.icon-justice-1::before{content:"\e95c"}.ekit-wid-con .fasicon.icon-line::before,.ekit-wid-con .icon.icon-line::before,.icon.icon-line::before{content:"\e95d"}.ekit-wid-con .fasicon.icon-money-3::before,.ekit-wid-con .icon.icon-money-3::before,.icon.icon-money-3::before{content:"\e95e"}.ekit-wid-con .fasicon.icon-commerce::before,.ekit-wid-con .icon.icon-commerce::before,.icon.icon-commerce::before{content:"\e95f"}.ekit-wid-con .fasicon.icon-agenda::before,.ekit-wid-con .icon.icon-agenda::before,.icon.icon-agenda::before{content:"\e960"}.ekit-wid-con .fasicon.icon-justice::before,.ekit-wid-con .icon.icon-justice::before,.icon.icon-justice::before{content:"\e961"}.ekit-wid-con .fasicon.icon-technology::before,.ekit-wid-con .icon.icon-technology::before,.icon.icon-technology::before{content:"\e962"}.ekit-wid-con .fasicon.icon-coins-1::before,.ekit-wid-con .icon.icon-coins-1::before,.icon.icon-coins-1::before{content:"\e963"}.ekit-wid-con .fasicon.icon-bank::before,.ekit-wid-con .icon.icon-bank::before,.icon.icon-bank::before{content:"\e964"}.ekit-wid-con .fasicon.icon-calculator::before,.ekit-wid-con .icon.icon-calculator::before,.icon.icon-calculator::before{content:"\e965"}.ekit-wid-con .fasicon.icon-soundcloud::before,.ekit-wid-con .icon.icon-soundcloud::before,.icon.icon-soundcloud::before{content:"\e966"}.ekit-wid-con .fasicon.icon-chart2::before,.ekit-wid-con .icon.icon-chart2::before,.icon.icon-chart2::before{content:"\e967"}.ekit-wid-con .fasicon.icon-checked::before,.ekit-wid-con .icon.icon-checked::before,.icon.icon-checked::before{content:"\e968"}.ekit-wid-con .fasicon.icon-clock11::before,.ekit-wid-con .icon.icon-clock11::before,.icon.icon-clock11::before{content:"\e969"}.ekit-wid-con .fasicon.icon-comment2::before,.ekit-wid-con .icon.icon-comment2::before,.icon.icon-comment2::before{content:"\e96a"}.ekit-wid-con .fasicon.icon-comments::before,.ekit-wid-con .icon.icon-comments::before,.icon.icon-comments::before{content:"\e96b"}.ekit-wid-con .fasicon.icon-consult::before,.ekit-wid-con .icon.icon-consult::before,.icon.icon-consult::before{content:"\e96c"}.ekit-wid-con .fasicon.icon-consut2::before,.ekit-wid-con .icon.icon-consut2::before,.icon.icon-consut2::before{content:"\e96d"}.ekit-wid-con .fasicon.icon-deal::before,.ekit-wid-con .icon.icon-deal::before,.icon.icon-deal::before{content:"\e96e"}.ekit-wid-con .fasicon.icon-envelope11::before,.ekit-wid-con .icon.icon-envelope11::before,.icon.icon-envelope11::before{content:"\e96f"}.ekit-wid-con .fasicon.icon-folder::before,.ekit-wid-con .icon.icon-folder::before,.icon.icon-folder::before{content:"\e970"}.ekit-wid-con .fasicon.icon-folder2::before,.ekit-wid-con .icon.icon-folder2::before,.icon.icon-folder2::before{content:"\ea6a"}.ekit-wid-con .fasicon.icon-invest::before,.ekit-wid-con .icon.icon-invest::before,.icon.icon-invest::before{content:"\e971"}.ekit-wid-con .fasicon.icon-loan::before,.ekit-wid-con .icon.icon-loan::before,.icon.icon-loan::before{content:"\e972"}.ekit-wid-con .fasicon.icon-menu1::before,.ekit-wid-con .icon.icon-menu1::before,.icon.icon-menu1::before{content:"\e871"}.ekit-wid-con .fasicon.icon-list1::before,.ekit-wid-con .icon.icon-list1::before,.icon.icon-list1::before{content:"\e872"}.ekit-wid-con .fasicon.icon-map-marker1::before,.ekit-wid-con .icon.icon-map-marker1::before,.icon.icon-map-marker1::before{content:"\e973"}.ekit-wid-con .fasicon.icon-mutual-fund::before,.ekit-wid-con .icon.icon-mutual-fund::before,.icon.icon-mutual-fund::before{content:"\e974"}.ekit-wid-con .fasicon.icon-google-plus::before,.ekit-wid-con .icon.icon-google-plus::before,.icon.icon-google-plus::before{content:"\e975"}.ekit-wid-con .fasicon.icon-phone1::before,.ekit-wid-con .icon.icon-phone1::before,.icon.icon-phone1::before{content:"\e976"}.ekit-wid-con .fasicon.icon-pie-chart1::before,.ekit-wid-con .icon.icon-pie-chart1::before,.icon.icon-pie-chart1::before{content:"\e977"}.ekit-wid-con .fasicon.icon-play::before,.ekit-wid-con .icon.icon-play::before,.icon.icon-play::before{content:"\e978"}.ekit-wid-con .fasicon.icon-savings::before,.ekit-wid-con .icon.icon-savings::before,.icon.icon-savings::before{content:"\e979"}.ekit-wid-con .fasicon.icon-search2::before,.ekit-wid-con .icon.icon-search2::before,.icon.icon-search2::before{content:"\e97a"}.ekit-wid-con .fasicon.icon-tag1::before,.ekit-wid-con .icon.icon-tag1::before,.icon.icon-tag1::before{content:"\e97b"}.ekit-wid-con .fasicon.icon-tags::before,.ekit-wid-con .icon.icon-tags::before,.icon.icon-tags::before{content:"\e97c"}.ekit-wid-con .fasicon.icon-instagram1::before,.ekit-wid-con .icon.icon-instagram1::before,.icon.icon-instagram1::before{content:"\e97d"}.ekit-wid-con .fasicon.icon-quote::before,.ekit-wid-con .icon.icon-quote::before,.icon.icon-quote::before{content:"\e97e"}.ekit-wid-con .fasicon.icon-arrow-point-to-down::before,.ekit-wid-con .icon.icon-arrow-point-to-down::before,.icon.icon-arrow-point-to-down::before{content:"\e97f"}.ekit-wid-con .fasicon.icon-play-button::before,.ekit-wid-con .icon.icon-play-button::before,.icon.icon-play-button::before{content:"\e980"}.ekit-wid-con .fasicon.icon-minus::before,.ekit-wid-con .icon.icon-minus::before,.icon.icon-minus::before{content:"\e981"}.ekit-wid-con .fasicon.icon-plus::before,.ekit-wid-con .icon.icon-plus::before,.icon.icon-plus::before{content:"\e982"}.ekit-wid-con .fasicon.icon-tick::before,.ekit-wid-con .icon.icon-tick::before,.icon.icon-tick::before{content:"\e983"}.ekit-wid-con .fasicon.icon-check::before,.ekit-wid-con .icon.icon-check::before,.icon.icon-check::before{content:"\eaaf"}.ekit-wid-con .fasicon.icon-edit::before,.ekit-wid-con .icon.icon-edit::before,.icon.icon-edit::before{content:"\e984"}.ekit-wid-con .fasicon.icon-reply::before,.ekit-wid-con .icon.icon-reply::before,.icon.icon-reply::before{content:"\e985"}.ekit-wid-con .fasicon.icon-cogwheel-outline::before,.ekit-wid-con .icon.icon-cogwheel-outline::before,.icon.icon-cogwheel-outline::before{content:"\e986"}.ekit-wid-con .fasicon.icon-abacus::before,.ekit-wid-con .icon.icon-abacus::before,.icon.icon-abacus::before{content:"\e987"}.ekit-wid-con .fasicon.icon-abacus1::before,.ekit-wid-con .icon.icon-abacus1::before,.icon.icon-abacus1::before{content:"\e988"}.ekit-wid-con .fasicon.icon-agenda1::before,.ekit-wid-con .icon.icon-agenda1::before,.icon.icon-agenda1::before{content:"\e989"}.ekit-wid-con .fasicon.icon-shopping-basket::before,.ekit-wid-con .icon.icon-shopping-basket::before,.icon.icon-shopping-basket::before{content:"\e98a"}.ekit-wid-con .fasicon.icon-users1::before,.ekit-wid-con .icon.icon-users1::before,.icon.icon-users1::before{content:"\e98b"}.ekit-wid-con .fasicon.icon-man::before,.ekit-wid-con .icon.icon-man::before,.icon.icon-man::before{content:"\e98c"}.ekit-wid-con .fasicon.icon-support1::before,.ekit-wid-con .icon.icon-support1::before,.icon.icon-support1::before{content:"\e98d"}.ekit-wid-con .fasicon.icon-favorites::before,.ekit-wid-con .icon.icon-favorites::before,.icon.icon-favorites::before{content:"\e98e"}.ekit-wid-con .fasicon.icon-calendar::before,.ekit-wid-con .icon.icon-calendar::before,.icon.icon-calendar::before{content:"\e98f"}.ekit-wid-con .fasicon.icon-paper-plane::before,.ekit-wid-con .icon.icon-paper-plane::before,.icon.icon-paper-plane::before{content:"\e990"}.ekit-wid-con .fasicon.icon-placeholder::before,.ekit-wid-con .icon.icon-placeholder::before,.icon.icon-placeholder::before{content:"\e991"}.ekit-wid-con .fasicon.icon-phone-call::before,.ekit-wid-con .icon.icon-phone-call::before,.icon.icon-phone-call::before{content:"\e992"}.ekit-wid-con .fasicon.icon-contact::before,.ekit-wid-con .icon.icon-contact::before,.icon.icon-contact::before{content:"\e993"}.ekit-wid-con .fasicon.icon-email::before,.ekit-wid-con .icon.icon-email::before,.icon.icon-email::before{content:"\e998"}.ekit-wid-con .fasicon.icon-internet::before,.ekit-wid-con .icon.icon-internet::before,.icon.icon-internet::before{content:"\e999"}.ekit-wid-con .fasicon.icon-quote1::before,.ekit-wid-con .icon.icon-quote1::before,.icon.icon-quote1::before{content:"\e99a"}.ekit-wid-con .fasicon.icon-medical::before,.ekit-wid-con .icon.icon-medical::before,.icon.icon-medical::before{content:"\e99b"}.ekit-wid-con .fasicon.icon-eye1::before,.ekit-wid-con .icon.icon-eye1::before,.icon.icon-eye1::before{content:"\e99c"}.ekit-wid-con .fasicon.icon-full-screen::before,.ekit-wid-con .icon.icon-full-screen::before,.icon.icon-full-screen::before{content:"\e99d"}.ekit-wid-con .fasicon.icon-tools::before,.ekit-wid-con .icon.icon-tools::before,.icon.icon-tools::before{content:"\e99e"}.ekit-wid-con .fasicon.icon-pie-chart2::before,.ekit-wid-con .icon.icon-pie-chart2::before,.icon.icon-pie-chart2::before{content:"\e99f"}.ekit-wid-con .fasicon.icon-diamond11::before,.ekit-wid-con .icon.icon-diamond11::before,.icon.icon-diamond11::before{content:"\e9a0"}.ekit-wid-con .fasicon.icon-valentines-heart::before,.ekit-wid-con .icon.icon-valentines-heart::before,.icon.icon-valentines-heart::before{content:"\e9a1"}.ekit-wid-con .fasicon.icon-like::before,.ekit-wid-con .icon.icon-like::before,.icon.icon-like::before{content:"\e9a2"}.ekit-wid-con .fasicon.icon-team::before,.ekit-wid-con .icon.icon-team::before,.icon.icon-team::before{content:"\e9a3"}.ekit-wid-con .fasicon.icon-tshirt::before,.ekit-wid-con .icon.icon-tshirt::before,.icon.icon-tshirt::before{content:"\e9a4"}.ekit-wid-con .fasicon.icon-cancel::before,.ekit-wid-con .icon.icon-cancel::before,.icon.icon-cancel::before{content:"\e9a5"}.ekit-wid-con .fasicon.icon-drink::before,.ekit-wid-con .icon.icon-drink::before,.icon.icon-drink::before{content:"\e9a6"}.ekit-wid-con .fasicon.icon-home1::before,.ekit-wid-con .icon.icon-home1::before,.icon.icon-home1::before{content:"\e9a7"}.ekit-wid-con .fasicon.icon-music::before,.ekit-wid-con .icon.icon-music::before,.icon.icon-music::before{content:"\e9a8"}.ekit-wid-con .fasicon.icon-rich::before,.ekit-wid-con .icon.icon-rich::before,.icon.icon-rich::before{content:"\e9a9"}.ekit-wid-con .fasicon.icon-brush::before,.ekit-wid-con .icon.icon-brush::before,.icon.icon-brush::before{content:"\e9aa"}.ekit-wid-con .fasicon.icon-opposite-way::before,.ekit-wid-con .icon.icon-opposite-way::before,.icon.icon-opposite-way::before{content:"\e9ab"}.ekit-wid-con .fasicon.icon-cloud-computing1::before,.ekit-wid-con .icon.icon-cloud-computing1::before,.icon.icon-cloud-computing1::before{content:"\e9ac"}.ekit-wid-con .fasicon.icon-technology-1::before,.ekit-wid-con .icon.icon-technology-1::before,.icon.icon-technology-1::before{content:"\e9ad"}.ekit-wid-con .fasicon.icon-rotate::before,.ekit-wid-con .icon.icon-rotate::before,.icon.icon-rotate::before{content:"\e9ae"}.ekit-wid-con .fasicon.icon-medical1::before,.ekit-wid-con .icon.icon-medical1::before,.icon.icon-medical1::before{content:"\e9af"}.ekit-wid-con .fasicon.icon-flash-1::before,.ekit-wid-con .icon.icon-flash-1::before,.icon.icon-flash-1::before{content:"\e9b0"}.ekit-wid-con .fasicon.icon-flash::before,.ekit-wid-con .icon.icon-flash::before,.icon.icon-flash::before{content:"\e9b1"}.ekit-wid-con .fasicon.icon-uturn::before,.ekit-wid-con .icon.icon-uturn::before,.icon.icon-uturn::before{content:"\e9b2"}.ekit-wid-con .fasicon.icon-down-arrow::before,.ekit-wid-con .icon.icon-down-arrow::before,.icon.icon-down-arrow::before{content:"\e9b3"}.ekit-wid-con .fasicon.icon-hours-support::before,.ekit-wid-con .icon.icon-hours-support::before,.icon.icon-hours-support::before{content:"\e9b4"}.ekit-wid-con .fasicon.icon-bag::before,.ekit-wid-con .icon.icon-bag::before,.icon.icon-bag::before{content:"\e9b5"}.ekit-wid-con .fasicon.icon-photo-camera::before,.ekit-wid-con .icon.icon-photo-camera::before,.icon.icon-photo-camera::before{content:"\e9b6"}.ekit-wid-con .fasicon.icon-school::before,.ekit-wid-con .icon.icon-school::before,.icon.icon-school::before{content:"\e9b7"}.ekit-wid-con .fasicon.icon-settings::before,.ekit-wid-con .icon.icon-settings::before,.icon.icon-settings::before{content:"\e9b8"}.ekit-wid-con .fasicon.icon-smartphone1::before,.ekit-wid-con .icon.icon-smartphone1::before,.icon.icon-smartphone1::before{content:"\e9b9"}.ekit-wid-con .fasicon.icon-technology-11::before,.ekit-wid-con .icon.icon-technology-11::before,.icon.icon-technology-11::before{content:"\e9ba"}.ekit-wid-con .fasicon.icon-tool::before,.ekit-wid-con .icon.icon-tool::before,.icon.icon-tool::before{content:"\e9bb"}.ekit-wid-con .fasicon.icon-business1::before,.ekit-wid-con .icon.icon-business1::before,.icon.icon-business1::before{content:"\e9bc"}.ekit-wid-con .fasicon.icon-shuffle-arrow::before,.ekit-wid-con .icon.icon-shuffle-arrow::before,.icon.icon-shuffle-arrow::before{content:"\e9bd"}.ekit-wid-con .fasicon.icon-van-1::before,.ekit-wid-con .icon.icon-van-1::before,.icon.icon-van-1::before{content:"\e9be"}.ekit-wid-con .fasicon.icon-van::before,.ekit-wid-con .icon.icon-van::before,.icon.icon-van::before{content:"\e9bf"}.ekit-wid-con .fasicon.icon-vegetables::before,.ekit-wid-con .icon.icon-vegetables::before,.icon.icon-vegetables::before{content:"\e9c0"}.ekit-wid-con .fasicon.icon-women::before,.ekit-wid-con .icon.icon-women::before,.icon.icon-women::before{content:"\e9c1"}.ekit-wid-con .fasicon.icon-vintage::before,.ekit-wid-con .icon.icon-vintage::before,.icon.icon-vintage::before{content:"\e9c2"}.ekit-wid-con .fasicon.icon-team-1::before,.ekit-wid-con .icon.icon-team-1::before,.icon.icon-team-1::before{content:"\e9c6"}.ekit-wid-con .fasicon.icon-team1::before,.ekit-wid-con .icon.icon-team1::before,.icon.icon-team1::before{content:"\e9c7"}.ekit-wid-con .fasicon.icon-apple::before,.ekit-wid-con .icon.icon-apple::before,.icon.icon-apple::before{content:"\e9c9"}.ekit-wid-con .fasicon.icon-watch::before,.ekit-wid-con .icon.icon-watch::before,.icon.icon-watch::before{content:"\e9ca"}.ekit-wid-con .fasicon.icon-cogwheel::before,.ekit-wid-con .icon.icon-cogwheel::before,.icon.icon-cogwheel::before{content:"\e9cb"}.ekit-wid-con .fasicon.icon-light-bulb::before,.ekit-wid-con .icon.icon-light-bulb::before,.icon.icon-light-bulb::before{content:"\e9cc"}.ekit-wid-con .fasicon.icon-light-bulb-1::before,.ekit-wid-con .icon.icon-light-bulb-1::before,.icon.icon-light-bulb-1::before{content:"\e9cd"}.ekit-wid-con .fasicon.icon-heart-shape-outline::before,.ekit-wid-con .icon.icon-heart-shape-outline::before,.icon.icon-heart-shape-outline::before{content:"\e9ce"}.ekit-wid-con .fasicon.icon-online-shopping-cart::before,.ekit-wid-con .icon.icon-online-shopping-cart::before,.icon.icon-online-shopping-cart::before{content:"\e9cf"}.ekit-wid-con .fasicon.icon-shopping-cart1::before,.ekit-wid-con .icon.icon-shopping-cart1::before,.icon.icon-shopping-cart1::before{content:"\e9d0"}.ekit-wid-con .fasicon.icon-star2::before,.ekit-wid-con .icon.icon-star2::before,.icon.icon-star2::before{content:"\e9d1"}.ekit-wid-con .fasicon.icon-star-1::before,.ekit-wid-con .icon.icon-star-1::before,.icon.icon-star-1::before{content:"\e9d2"}.ekit-wid-con .fasicon.icon-favorite1::before,.ekit-wid-con .icon.icon-favorite1::before,.icon.icon-favorite1::before{content:"\e9d3"}.ekit-wid-con .fasicon.icon-agenda2::before,.ekit-wid-con .icon.icon-agenda2::before,.icon.icon-agenda2::before{content:"\e9d4"}.ekit-wid-con .fasicon.icon-agenda-1::before,.ekit-wid-con .icon.icon-agenda-1::before,.icon.icon-agenda-1::before{content:"\e9d5"}.ekit-wid-con .fasicon.icon-alarm-clock::before,.ekit-wid-con .icon.icon-alarm-clock::before,.icon.icon-alarm-clock::before{content:"\e9d6"}.ekit-wid-con .fasicon.icon-alarm-clock1::before,.ekit-wid-con .icon.icon-alarm-clock1::before,.icon.icon-alarm-clock1::before{content:"\e9d7"}.ekit-wid-con .fasicon.icon-atomic::before,.ekit-wid-con .icon.icon-atomic::before,.icon.icon-atomic::before{content:"\e9d8"}.ekit-wid-con .fasicon.icon-auction::before,.ekit-wid-con .icon.icon-auction::before,.icon.icon-auction::before{content:"\e9d9"}.ekit-wid-con .fasicon.icon-balance::before,.ekit-wid-con .icon.icon-balance::before,.icon.icon-balance::before{content:"\e9da"}.ekit-wid-con .fasicon.icon-balance1::before,.ekit-wid-con .icon.icon-balance1::before,.icon.icon-balance1::before{content:"\e9db"}.ekit-wid-con .fasicon.icon-bank1::before,.ekit-wid-con .icon.icon-bank1::before,.icon.icon-bank1::before{content:"\e9dc"}.ekit-wid-con .fasicon.icon-bar-chart::before,.ekit-wid-con .icon.icon-bar-chart::before,.icon.icon-bar-chart::before{content:"\e9dd"}.ekit-wid-con .fasicon.icon-barrier::before,.ekit-wid-con .icon.icon-barrier::before,.icon.icon-barrier::before{content:"\e9de"}.ekit-wid-con .fasicon.icon-battery::before,.ekit-wid-con .icon.icon-battery::before,.icon.icon-battery::before{content:"\e9df"}.ekit-wid-con .fasicon.icon-battery-1::before,.ekit-wid-con .icon.icon-battery-1::before,.icon.icon-battery-1::before{content:"\e9e0"}.ekit-wid-con .fasicon.icon-bell::before,.ekit-wid-con .icon.icon-bell::before,.icon.icon-bell::before{content:"\e9e1"}.ekit-wid-con .fasicon.icon-bluetooth::before,.ekit-wid-con .icon.icon-bluetooth::before,.icon.icon-bluetooth::before{content:"\e9e2"}.ekit-wid-con .fasicon.icon-book1::before,.ekit-wid-con .icon.icon-book1::before,.icon.icon-book1::before{content:"\e9e3"}.ekit-wid-con .fasicon.icon-briefcase1::before,.ekit-wid-con .icon.icon-briefcase1::before,.icon.icon-briefcase1::before{content:"\e9e4"}.ekit-wid-con .fasicon.icon-briefcase-1::before,.ekit-wid-con .icon.icon-briefcase-1::before,.icon.icon-briefcase-1::before{content:"\e9e5"}.ekit-wid-con .fasicon.icon-briefcase-2::before,.ekit-wid-con .icon.icon-briefcase-2::before,.icon.icon-briefcase-2::before{content:"\e9e6"}.ekit-wid-con .fasicon.icon-calculator1::before,.ekit-wid-con .icon.icon-calculator1::before,.icon.icon-calculator1::before{content:"\e9e7"}.ekit-wid-con .fasicon.icon-calculator2::before,.ekit-wid-con .icon.icon-calculator2::before,.icon.icon-calculator2::before{content:"\e9e8"}.ekit-wid-con .fasicon.icon-calculator-1::before,.ekit-wid-con .icon.icon-calculator-1::before,.icon.icon-calculator-1::before{content:"\e9e9"}.ekit-wid-con .fasicon.icon-calendar1::before,.ekit-wid-con .icon.icon-calendar1::before,.icon.icon-calendar1::before{content:"\e9ea"}.ekit-wid-con .fasicon.icon-calendar2::before,.ekit-wid-con .icon.icon-calendar2::before,.icon.icon-calendar2::before{content:"\e9eb"}.ekit-wid-con .fasicon.icon-calendar-1::before,.ekit-wid-con .icon.icon-calendar-1::before,.icon.icon-calendar-1::before{content:"\e9ec"}.ekit-wid-con .fasicon.icon-calendar-page-empty::before,.ekit-wid-con .icon.icon-calendar-page-empty::before,.icon.icon-calendar-page-empty::before{content:"\eaac"}.ekit-wid-con .fasicon.icon-calendar3::before,.ekit-wid-con .icon.icon-calendar3::before,.icon.icon-calendar3::before{content:"\eb9c"}.ekit-wid-con .fasicon.icon-car11::before,.ekit-wid-con .icon.icon-car11::before,.icon.icon-car11::before{content:"\e9ed"}.ekit-wid-con .fasicon.icon-carrier::before,.ekit-wid-con .icon.icon-carrier::before,.icon.icon-carrier::before{content:"\e9ee"}.ekit-wid-con .fasicon.icon-cash::before,.ekit-wid-con .icon.icon-cash::before,.icon.icon-cash::before{content:"\e9ef"}.ekit-wid-con .fasicon.icon-chat::before,.ekit-wid-con .icon.icon-chat::before,.icon.icon-chat::before{content:"\e9f0"}.ekit-wid-con .fasicon.icon-chat-1::before,.ekit-wid-con .icon.icon-chat-1::before,.icon.icon-chat-1::before{content:"\e9f1"}.ekit-wid-con .fasicon.icon-checked1::before,.ekit-wid-con .icon.icon-checked1::before,.icon.icon-checked1::before{content:"\e9f2"}.ekit-wid-con .fasicon.icon-clip::before,.ekit-wid-con .icon.icon-clip::before,.icon.icon-clip::before{content:"\e9f3"}.ekit-wid-con .fasicon.icon-clip1::before,.ekit-wid-con .icon.icon-clip1::before,.icon.icon-clip1::before{content:"\e9f4"}.ekit-wid-con .fasicon.icon-clipboard1::before,.ekit-wid-con .icon.icon-clipboard1::before,.icon.icon-clipboard1::before{content:"\e9f5"}.ekit-wid-con .fasicon.icon-clipboard11::before,.ekit-wid-con .icon.icon-clipboard11::before,.icon.icon-clipboard11::before{content:"\e9f6"}.ekit-wid-con .fasicon.icon-clock2::before,.ekit-wid-con .icon.icon-clock2::before,.icon.icon-clock2::before{content:"\e9f7"}.ekit-wid-con .fasicon.icon-clock-1::before,.ekit-wid-con .icon.icon-clock-1::before,.icon.icon-clock-1::before{content:"\e9f8"}.ekit-wid-con .fasicon.icon-cloud11::before,.ekit-wid-con .icon.icon-cloud11::before,.icon.icon-cloud11::before{content:"\e9f9"}.ekit-wid-con .fasicon.icon-cloud-computing11::before,.ekit-wid-con .icon.icon-cloud-computing11::before,.icon.icon-cloud-computing11::before{content:"\e9fa"}.ekit-wid-con .fasicon.icon-cloud-computing-1::before,.ekit-wid-con .icon.icon-cloud-computing-1::before,.icon.icon-cloud-computing-1::before{content:"\e9fb"}.ekit-wid-con .fasicon.icon-cogwheel1::before,.ekit-wid-con .icon.icon-cogwheel1::before,.icon.icon-cogwheel1::before{content:"\e9fc"}.ekit-wid-con .fasicon.icon-coins1::before,.ekit-wid-con .icon.icon-coins1::before,.icon.icon-coins1::before{content:"\e9fd"}.ekit-wid-con .fasicon.icon-compass::before,.ekit-wid-con .icon.icon-compass::before,.icon.icon-compass::before{content:"\e9fe"}.ekit-wid-con .fasicon.icon-contract::before,.ekit-wid-con .icon.icon-contract::before,.icon.icon-contract::before{content:"\e9ff"}.ekit-wid-con .fasicon.icon-conversation::before,.ekit-wid-con .icon.icon-conversation::before,.icon.icon-conversation::before{content:"\ea00"}.ekit-wid-con .fasicon.icon-crane1::before,.ekit-wid-con .icon.icon-crane1::before,.icon.icon-crane1::before{content:"\ea01"}.ekit-wid-con .fasicon.icon-crane-2::before,.ekit-wid-con .icon.icon-crane-2::before,.icon.icon-crane-2::before{content:"\ea02"}.ekit-wid-con .fasicon.icon-credit-card::before,.ekit-wid-con .icon.icon-credit-card::before,.icon.icon-credit-card::before{content:"\ea03"}.ekit-wid-con .fasicon.icon-credit-card1::before,.ekit-wid-con .icon.icon-credit-card1::before,.icon.icon-credit-card1::before{content:"\ea04"}.ekit-wid-con .fasicon.icon-cursor::before,.ekit-wid-con .icon.icon-cursor::before,.icon.icon-cursor::before{content:"\ea05"}.ekit-wid-con .fasicon.icon-customer-service::before,.ekit-wid-con .icon.icon-customer-service::before,.icon.icon-customer-service::before{content:"\ea06"}.ekit-wid-con .fasicon.icon-cutlery::before,.ekit-wid-con .icon.icon-cutlery::before,.icon.icon-cutlery::before{content:"\ea07"}.ekit-wid-con .fasicon.icon-dart-board::before,.ekit-wid-con .icon.icon-dart-board::before,.icon.icon-dart-board::before{content:"\ea08"}.ekit-wid-con .fasicon.icon-decision-making::before,.ekit-wid-con .icon.icon-decision-making::before,.icon.icon-decision-making::before{content:"\ea09"}.ekit-wid-con .fasicon.icon-desk-chair::before,.ekit-wid-con .icon.icon-desk-chair::before,.icon.icon-desk-chair::before{content:"\ea0a"}.ekit-wid-con .fasicon.icon-desk-lamp::before,.ekit-wid-con .icon.icon-desk-lamp::before,.icon.icon-desk-lamp::before{content:"\ea0b"}.ekit-wid-con .fasicon.icon-diamond2::before,.ekit-wid-con .icon.icon-diamond2::before,.icon.icon-diamond2::before{content:"\ea0c"}.ekit-wid-con .fasicon.icon-direction::before,.ekit-wid-con .icon.icon-direction::before,.icon.icon-direction::before{content:"\ea0d"}.ekit-wid-con .fasicon.icon-document::before,.ekit-wid-con .icon.icon-document::before,.icon.icon-document::before{content:"\ea0e"}.ekit-wid-con .fasicon.icon-dollar-bill::before,.ekit-wid-con .icon.icon-dollar-bill::before,.icon.icon-dollar-bill::before{content:"\ea0f"}.ekit-wid-con .fasicon.icon-download1::before,.ekit-wid-con .icon.icon-download1::before,.icon.icon-download1::before{content:"\ea10"}.ekit-wid-con .fasicon.icon-edit1::before,.ekit-wid-con .icon.icon-edit1::before,.icon.icon-edit1::before{content:"\ea11"}.ekit-wid-con .fasicon.icon-email1::before,.ekit-wid-con .icon.icon-email1::before,.icon.icon-email1::before{content:"\ea12"}.ekit-wid-con .fasicon.icon-envelope2::before,.ekit-wid-con .icon.icon-envelope2::before,.icon.icon-envelope2::before{content:"\ea13"}.ekit-wid-con .fasicon.icon-envelope3::before,.ekit-wid-con .icon.icon-envelope3::before,.icon.icon-envelope3::before{content:"\ea14"}.ekit-wid-con .fasicon.icon-eraser::before,.ekit-wid-con .icon.icon-eraser::before,.icon.icon-eraser::before{content:"\ea15"}.ekit-wid-con .fasicon.icon-eye2::before,.ekit-wid-con .icon.icon-eye2::before,.icon.icon-eye2::before{content:"\ea16"}.ekit-wid-con .fasicon.icon-factory::before,.ekit-wid-con .icon.icon-factory::before,.icon.icon-factory::before{content:"\ea17"}.ekit-wid-con .fasicon.icon-fast-forward::before,.ekit-wid-con .icon.icon-fast-forward::before,.icon.icon-fast-forward::before{content:"\ea18"}.ekit-wid-con .fasicon.icon-favorites1::before,.ekit-wid-con .icon.icon-favorites1::before,.icon.icon-favorites1::before{content:"\ea19"}.ekit-wid-con .fasicon.icon-file::before,.ekit-wid-con .icon.icon-file::before,.icon.icon-file::before{content:"\ea1a"}.ekit-wid-con .fasicon.icon-file-1::before,.ekit-wid-con .icon.icon-file-1::before,.icon.icon-file-1::before{content:"\ea1b"}.ekit-wid-con .fasicon.icon-file-2::before,.ekit-wid-con .icon.icon-file-2::before,.icon.icon-file-2::before{content:"\ea1c"}.ekit-wid-con .fasicon.icon-file-3::before,.ekit-wid-con .icon.icon-file-3::before,.icon.icon-file-3::before{content:"\ea1d"}.ekit-wid-con .fasicon.icon-filter::before,.ekit-wid-con .icon.icon-filter::before,.icon.icon-filter::before{content:"\ea1e"}.ekit-wid-con .fasicon.icon-finance-book::before,.ekit-wid-con .icon.icon-finance-book::before,.icon.icon-finance-book::before{content:"\ea1f"}.ekit-wid-con .fasicon.icon-flag1::before,.ekit-wid-con .icon.icon-flag1::before,.icon.icon-flag1::before{content:"\ea20"}.ekit-wid-con .fasicon.icon-folder1::before,.ekit-wid-con .icon.icon-folder1::before,.icon.icon-folder1::before{content:"\ea21"}.ekit-wid-con .fasicon.icon-folder-1::before,.ekit-wid-con .icon.icon-folder-1::before,.icon.icon-folder-1::before{content:"\ea22"}.ekit-wid-con .fasicon.icon-folders::before,.ekit-wid-con .icon.icon-folders::before,.icon.icon-folders::before{content:"\ea23"}.ekit-wid-con .fasicon.icon-folders1::before,.ekit-wid-con .icon.icon-folders1::before,.icon.icon-folders1::before{content:"\ea24"}.ekit-wid-con .fasicon.icon-gamepad::before,.ekit-wid-con .icon.icon-gamepad::before,.icon.icon-gamepad::before{content:"\ea25"}.ekit-wid-con .fasicon.icon-gift11::before,.ekit-wid-con .icon.icon-gift11::before,.icon.icon-gift11::before{content:"\ea26"}.ekit-wid-con .fasicon.icon-growth::before,.ekit-wid-con .icon.icon-growth::before,.icon.icon-growth::before{content:"\ea27"}.ekit-wid-con .fasicon.icon-heart11::before,.ekit-wid-con .icon.icon-heart11::before,.icon.icon-heart11::before{content:"\ea28"}.ekit-wid-con .fasicon.icon-home2::before,.ekit-wid-con .icon.icon-home2::before,.icon.icon-home2::before{content:"\ea29"}.ekit-wid-con .fasicon.icon-house::before,.ekit-wid-con .icon.icon-house::before,.icon.icon-house::before{content:"\ea2a"}.ekit-wid-con .fasicon.icon-house-1::before,.ekit-wid-con .icon.icon-house-1::before,.icon.icon-house-1::before{content:"\ea2b"}.ekit-wid-con .fasicon.icon-house-2::before,.ekit-wid-con .icon.icon-house-2::before,.icon.icon-house-2::before{content:"\ea2c"}.ekit-wid-con .fasicon.icon-id-card::before,.ekit-wid-con .icon.icon-id-card::before,.icon.icon-id-card::before{content:"\ea2d"}.ekit-wid-con .fasicon.icon-id-card1::before,.ekit-wid-con .icon.icon-id-card1::before,.icon.icon-id-card1::before{content:"\ea2e"}.ekit-wid-con .fasicon.icon-id-card-1::before,.ekit-wid-con .icon.icon-id-card-1::before,.icon.icon-id-card-1::before{content:"\ea2f"}.ekit-wid-con .fasicon.icon-idea1::before,.ekit-wid-con .icon.icon-idea1::before,.icon.icon-idea1::before{content:"\ea30"}.ekit-wid-con .fasicon.icon-image::before,.ekit-wid-con .icon.icon-image::before,.icon.icon-image::before{content:"\ea31"}.ekit-wid-con .fasicon.icon-improvement::before,.ekit-wid-con .icon.icon-improvement::before,.icon.icon-improvement::before{content:"\ea32"}.ekit-wid-con .fasicon.icon-inbox1::before,.ekit-wid-con .icon.icon-inbox1::before,.icon.icon-inbox1::before{content:"\ea33"}.ekit-wid-con .fasicon.icon-information::before,.ekit-wid-con .icon.icon-information::before,.icon.icon-information::before{content:"\ea34"}.ekit-wid-con .fasicon.icon-key::before,.ekit-wid-con .icon.icon-key::before,.icon.icon-key::before{content:"\ea35"}.ekit-wid-con .fasicon.icon-key1::before,.ekit-wid-con .icon.icon-key1::before,.icon.icon-key1::before{content:"\ea36"}.ekit-wid-con .fasicon.icon-laptop1::before,.ekit-wid-con .icon.icon-laptop1::before,.icon.icon-laptop1::before{content:"\ea37"}.ekit-wid-con .fasicon.icon-layers1::before,.ekit-wid-con .icon.icon-layers1::before,.icon.icon-layers1::before{content:"\ea38"}.ekit-wid-con .fasicon.icon-light-bulb1::before,.ekit-wid-con .icon.icon-light-bulb1::before,.icon.icon-light-bulb1::before{content:"\ea39"}.ekit-wid-con .fasicon.icon-like1::before,.ekit-wid-con .icon.icon-like1::before,.icon.icon-like1::before{content:"\ea3a"}.ekit-wid-con .fasicon.icon-line-chart1::before,.ekit-wid-con .icon.icon-line-chart1::before,.icon.icon-line-chart1::before{content:"\ea3b"}.ekit-wid-con .fasicon.icon-mail::before,.ekit-wid-con .icon.icon-mail::before,.icon.icon-mail::before{content:"\ea3c"}.ekit-wid-con .fasicon.icon-manager::before,.ekit-wid-con .icon.icon-manager::before,.icon.icon-manager::before{content:"\ea3d"}.ekit-wid-con .fasicon.icon-map1::before,.ekit-wid-con .icon.icon-map1::before,.icon.icon-map1::before{content:"\ea3e"}.ekit-wid-con .fasicon.icon-medal1::before,.ekit-wid-con .icon.icon-medal1::before,.icon.icon-medal1::before{content:"\ea3f"}.ekit-wid-con .fasicon.icon-megaphone::before,.ekit-wid-con .icon.icon-megaphone::before,.icon.icon-megaphone::before{content:"\ea40"}.ekit-wid-con .fasicon.icon-megaphone1::before,.ekit-wid-con .icon.icon-megaphone1::before,.icon.icon-megaphone1::before{content:"\ea41"}.ekit-wid-con .fasicon.icon-message::before,.ekit-wid-con .icon.icon-message::before,.icon.icon-message::before{content:"\ea42"}.ekit-wid-con .fasicon.icon-message-1::before,.ekit-wid-con .icon.icon-message-1::before,.icon.icon-message-1::before{content:"\ea43"}.ekit-wid-con .fasicon.icon-message-2::before,.ekit-wid-con .icon.icon-message-2::before,.icon.icon-message-2::before{content:"\ea44"}.ekit-wid-con .fasicon.icon-microphone::before,.ekit-wid-con .icon.icon-microphone::before,.icon.icon-microphone::before{content:"\ea45"}.ekit-wid-con .fasicon.icon-money1::before,.ekit-wid-con .icon.icon-money1::before,.icon.icon-money1::before{content:"\ea46"}.ekit-wid-con .fasicon.icon-money-bag1::before,.ekit-wid-con .icon.icon-money-bag1::before,.icon.icon-money-bag1::before{content:"\ea47"}.ekit-wid-con .fasicon.icon-monitor1::before,.ekit-wid-con .icon.icon-monitor1::before,.icon.icon-monitor1::before{content:"\ea48"}.ekit-wid-con .fasicon.icon-music1::before,.ekit-wid-con .icon.icon-music1::before,.icon.icon-music1::before{content:"\ea49"}.ekit-wid-con .fasicon.icon-next::before,.ekit-wid-con .icon.icon-next::before,.icon.icon-next::before{content:"\ea4a"}.ekit-wid-con .fasicon.icon-open-book1::before,.ekit-wid-con .icon.icon-open-book1::before,.icon.icon-open-book1::before{content:"\ea4b"}.ekit-wid-con .fasicon.icon-padlock::before,.ekit-wid-con .icon.icon-padlock::before,.icon.icon-padlock::before{content:"\ea4c"}.ekit-wid-con .fasicon.icon-padlock-1::before,.ekit-wid-con .icon.icon-padlock-1::before,.icon.icon-padlock-1::before{content:"\ea4d"}.ekit-wid-con .fasicon.icon-paint-brush::before,.ekit-wid-con .icon.icon-paint-brush::before,.icon.icon-paint-brush::before{content:"\ea4e"}.ekit-wid-con .fasicon.icon-pause::before,.ekit-wid-con .icon.icon-pause::before,.icon.icon-pause::before{content:"\ea4f"}.ekit-wid-con .fasicon.icon-pen::before,.ekit-wid-con .icon.icon-pen::before,.icon.icon-pen::before{content:"\ea50"}.ekit-wid-con .fasicon.icon-pencil1::before,.ekit-wid-con .icon.icon-pencil1::before,.icon.icon-pencil1::before{content:"\ea51"}.ekit-wid-con .fasicon.icon-percentage::before,.ekit-wid-con .icon.icon-percentage::before,.icon.icon-percentage::before{content:"\ea52"}.ekit-wid-con .fasicon.icon-phone-call1::before,.ekit-wid-con .icon.icon-phone-call1::before,.icon.icon-phone-call1::before{content:"\ea53"}.ekit-wid-con .fasicon.icon-phone-call2::before,.ekit-wid-con .icon.icon-phone-call2::before,.icon.icon-phone-call2::before{content:"\ea54"}.ekit-wid-con .fasicon.icon-photo-camera1::before,.ekit-wid-con .icon.icon-photo-camera1::before,.icon.icon-photo-camera1::before{content:"\ea55"}.ekit-wid-con .fasicon.icon-pie-chart3::before,.ekit-wid-con .icon.icon-pie-chart3::before,.icon.icon-pie-chart3::before{content:"\ea56"}.ekit-wid-con .fasicon.icon-pipe::before,.ekit-wid-con .icon.icon-pipe::before,.icon.icon-pipe::before{content:"\ea57"}.ekit-wid-con .fasicon.icon-placeholder1::before,.ekit-wid-con .icon.icon-placeholder1::before,.icon.icon-placeholder1::before{content:"\ea58"}.ekit-wid-con .fasicon.icon-placeholder2::before,.ekit-wid-con .icon.icon-placeholder2::before,.icon.icon-placeholder2::before{content:"\ea59"}.ekit-wid-con .fasicon.icon-planet-earth::before,.ekit-wid-con .icon.icon-planet-earth::before,.icon.icon-planet-earth::before{content:"\ea5a"}.ekit-wid-con .fasicon.icon-play-button1::before,.ekit-wid-con .icon.icon-play-button1::before,.icon.icon-play-button1::before{content:"\ea5b"}.ekit-wid-con .fasicon.icon-power-button::before,.ekit-wid-con .icon.icon-power-button::before,.icon.icon-power-button::before{content:"\ea5c"}.ekit-wid-con .fasicon.icon-presentation::before,.ekit-wid-con .icon.icon-presentation::before,.icon.icon-presentation::before{content:"\ea5d"}.ekit-wid-con .fasicon.icon-presentation1::before,.ekit-wid-con .icon.icon-presentation1::before,.icon.icon-presentation1::before{content:"\ea5e"}.ekit-wid-con .fasicon.icon-printer1::before,.ekit-wid-con .icon.icon-printer1::before,.icon.icon-printer1::before{content:"\ea5f"}.ekit-wid-con .fasicon.icon-push-pin::before,.ekit-wid-con .icon.icon-push-pin::before,.icon.icon-push-pin::before{content:"\ea60"}.ekit-wid-con .fasicon.icon-push-pin1::before,.ekit-wid-con .icon.icon-push-pin1::before,.icon.icon-push-pin1::before{content:"\ea61"}.ekit-wid-con .fasicon.icon-refresh::before,.ekit-wid-con .icon.icon-refresh::before,.icon.icon-refresh::before{content:"\ea62"}.ekit-wid-con .fasicon.icon-reload::before,.ekit-wid-con .icon.icon-reload::before,.icon.icon-reload::before{content:"\ea63"}.ekit-wid-con .fasicon.icon-return::before,.ekit-wid-con .icon.icon-return::before,.icon.icon-return::before{content:"\ea64"}.ekit-wid-con .fasicon.icon-rocket-ship::before,.ekit-wid-con .icon.icon-rocket-ship::before,.icon.icon-rocket-ship::before{content:"\ea65"}.ekit-wid-con .fasicon.icon-rss1::before,.ekit-wid-con .icon.icon-rss1::before,.icon.icon-rss1::before{content:"\ea66"}.ekit-wid-con .fasicon.icon-safebox::before,.ekit-wid-con .icon.icon-safebox::before,.icon.icon-safebox::before{content:"\ea67"}.ekit-wid-con .fasicon.icon-safebox1::before,.ekit-wid-con .icon.icon-safebox1::before,.icon.icon-safebox1::before{content:"\ea68"}.ekit-wid-con .fasicon.icon-settings1::before,.ekit-wid-con .icon.icon-settings1::before,.icon.icon-settings1::before{content:"\ea69"}.ekit-wid-con .fasicon.icon-settings-2::before,.ekit-wid-con .icon.icon-settings-2::before,.icon.icon-settings-2::before{content:"\ea6b"}.ekit-wid-con .fasicon.icon-sewing-machine::before,.ekit-wid-con .icon.icon-sewing-machine::before,.icon.icon-sewing-machine::before{content:"\ea6c"}.ekit-wid-con .fasicon.icon-share2::before,.ekit-wid-con .icon.icon-share2::before,.icon.icon-share2::before{content:"\ea6d"}.ekit-wid-con .fasicon.icon-shield1::before,.ekit-wid-con .icon.icon-shield1::before,.icon.icon-shield1::before{content:"\ea6e"}.ekit-wid-con .fasicon.icon-shield11::before,.ekit-wid-con .icon.icon-shield11::before,.icon.icon-shield11::before{content:"\ea6f"}.ekit-wid-con .fasicon.icon-shopping::before,.ekit-wid-con .icon.icon-shopping::before,.icon.icon-shopping::before{content:"\ea70"}.ekit-wid-con .fasicon.icon-shopping-bag::before,.ekit-wid-con .icon.icon-shopping-bag::before,.icon.icon-shopping-bag::before{content:"\ea71"}.ekit-wid-con .fasicon.icon-shopping-bag-1::before,.ekit-wid-con .icon.icon-shopping-bag-1::before,.icon.icon-shopping-bag-1::before{content:"\ea72"}.ekit-wid-con .fasicon.icon-shopping-bag-2::before,.ekit-wid-con .icon.icon-shopping-bag-2::before,.icon.icon-shopping-bag-2::before{content:"\ea73"}.ekit-wid-con .fasicon.icon-shopping-cart11::before,.ekit-wid-con .icon.icon-shopping-cart11::before,.icon.icon-shopping-cart11::before{content:"\ea74"}.ekit-wid-con .fasicon.icon-shopping-cart2::before,.ekit-wid-con .icon.icon-shopping-cart2::before,.icon.icon-shopping-cart2::before{content:"\ea75"}.ekit-wid-con .fasicon.icon-shopping-cart-1::before,.ekit-wid-con .icon.icon-shopping-cart-1::before,.icon.icon-shopping-cart-1::before{content:"\ea76"}.ekit-wid-con .fasicon.icon-shopping-cart-2::before,.ekit-wid-con .icon.icon-shopping-cart-2::before,.icon.icon-shopping-cart-2::before{content:"\ea77"}.ekit-wid-con .fasicon.icon-shopping-cart-3::before,.ekit-wid-con .icon.icon-shopping-cart-3::before,.icon.icon-shopping-cart-3::before{content:"\ea78"}.ekit-wid-con .fasicon.icon-smartphone2::before,.ekit-wid-con .icon.icon-smartphone2::before,.icon.icon-smartphone2::before{content:"\ea79"}.ekit-wid-con .fasicon.icon-speaker::before,.ekit-wid-con .icon.icon-speaker::before,.icon.icon-speaker::before{content:"\ea7a"}.ekit-wid-con .fasicon.icon-speakers::before,.ekit-wid-con .icon.icon-speakers::before,.icon.icon-speakers::before{content:"\ea7b"}.ekit-wid-con .fasicon.icon-stats::before,.ekit-wid-con .icon.icon-stats::before,.icon.icon-stats::before{content:"\ea7c"}.ekit-wid-con .fasicon.icon-stats-1::before,.ekit-wid-con .icon.icon-stats-1::before,.icon.icon-stats-1::before{content:"\ea7d"}.ekit-wid-con .fasicon.icon-stats-2::before,.ekit-wid-con .icon.icon-stats-2::before,.icon.icon-stats-2::before{content:"\ea7e"}.ekit-wid-con .fasicon.icon-stats-3::before,.ekit-wid-con .icon.icon-stats-3::before,.icon.icon-stats-3::before{content:"\ea7f"}.ekit-wid-con .fasicon.icon-stats-4::before,.ekit-wid-con .icon.icon-stats-4::before,.icon.icon-stats-4::before{content:"\ea80"}.ekit-wid-con .fasicon.icon-stats-5::before,.ekit-wid-con .icon.icon-stats-5::before,.icon.icon-stats-5::before{content:"\ea81"}.ekit-wid-con .fasicon.icon-stats-6::before,.ekit-wid-con .icon.icon-stats-6::before,.icon.icon-stats-6::before{content:"\ea82"}.ekit-wid-con .fasicon.icon-sticky-note::before,.ekit-wid-con .icon.icon-sticky-note::before,.icon.icon-sticky-note::before{content:"\ea83"}.ekit-wid-con .fasicon.icon-store1::before,.ekit-wid-con .icon.icon-store1::before,.icon.icon-store1::before{content:"\ea84"}.ekit-wid-con .fasicon.icon-store-1::before,.ekit-wid-con .icon.icon-store-1::before,.icon.icon-store-1::before{content:"\ea85"}.ekit-wid-con .fasicon.icon-suitcase::before,.ekit-wid-con .icon.icon-suitcase::before,.icon.icon-suitcase::before{content:"\ea86"}.ekit-wid-con .fasicon.icon-suitcase-1::before,.ekit-wid-con .icon.icon-suitcase-1::before,.icon.icon-suitcase-1::before{content:"\ea87"}.ekit-wid-con .fasicon.icon-tag2::before,.ekit-wid-con .icon.icon-tag2::before,.icon.icon-tag2::before{content:"\ea88"}.ekit-wid-con .fasicon.icon-target::before,.ekit-wid-con .icon.icon-target::before,.icon.icon-target::before{content:"\ea89"}.ekit-wid-con .fasicon.icon-team2::before,.ekit-wid-con .icon.icon-team2::before,.icon.icon-team2::before{content:"\ea8a"}.ekit-wid-con .fasicon.icon-tie::before,.ekit-wid-con .icon.icon-tie::before,.icon.icon-tie::before{content:"\ea8b"}.ekit-wid-con .fasicon.icon-trash1::before,.ekit-wid-con .icon.icon-trash1::before,.icon.icon-trash1::before{content:"\ea8c"}.ekit-wid-con .fasicon.icon-trolley::before,.ekit-wid-con .icon.icon-trolley::before,.icon.icon-trolley::before{content:"\ea8d"}.ekit-wid-con .fasicon.icon-trolley-1::before,.ekit-wid-con .icon.icon-trolley-1::before,.icon.icon-trolley-1::before{content:"\ea8e"}.ekit-wid-con .fasicon.icon-trolley-2::before,.ekit-wid-con .icon.icon-trolley-2::before,.icon.icon-trolley-2::before{content:"\ea8f"}.ekit-wid-con .fasicon.icon-trophy1::before,.ekit-wid-con .icon.icon-trophy1::before,.icon.icon-trophy1::before{content:"\ea90"}.ekit-wid-con .fasicon.icon-truck1::before,.ekit-wid-con .icon.icon-truck1::before,.icon.icon-truck1::before{content:"\ea91"}.ekit-wid-con .fasicon.icon-truck-1::before,.ekit-wid-con .icon.icon-truck-1::before,.icon.icon-truck-1::before{content:"\ea92"}.ekit-wid-con .fasicon.icon-truck-2::before,.ekit-wid-con .icon.icon-truck-2::before,.icon.icon-truck-2::before{content:"\ea93"}.ekit-wid-con .fasicon.icon-umbrella::before,.ekit-wid-con .icon.icon-umbrella::before,.icon.icon-umbrella::before{content:"\ea94"}.ekit-wid-con .fasicon.icon-upload1::before,.ekit-wid-con .icon.icon-upload1::before,.icon.icon-upload1::before{content:"\ea95"}.ekit-wid-con .fasicon.icon-user1::before,.ekit-wid-con .icon.icon-user1::before,.icon.icon-user1::before{content:"\ea96"}.ekit-wid-con .fasicon.icon-user-1::before,.ekit-wid-con .icon.icon-user-1::before,.icon.icon-user-1::before{content:"\ea97"}.ekit-wid-con .fasicon.icon-user-2::before,.ekit-wid-con .icon.icon-user-2::before,.icon.icon-user-2::before{content:"\ea98"}.ekit-wid-con .fasicon.icon-user-3::before,.ekit-wid-con .icon.icon-user-3::before,.icon.icon-user-3::before{content:"\ea99"}.ekit-wid-con .fasicon.icon-users2::before,.ekit-wid-con .icon.icon-users2::before,.icon.icon-users2::before{content:"\ea9a"}.ekit-wid-con .fasicon.icon-video-camera::before,.ekit-wid-con .icon.icon-video-camera::before,.icon.icon-video-camera::before{content:"\ea9b"}.ekit-wid-con .fasicon.icon-voucher::before,.ekit-wid-con .icon.icon-voucher::before,.icon.icon-voucher::before{content:"\ea9c"}.ekit-wid-con .fasicon.icon-voucher-1::before,.ekit-wid-con .icon.icon-voucher-1::before,.icon.icon-voucher-1::before{content:"\ea9d"}.ekit-wid-con .fasicon.icon-voucher-2::before,.ekit-wid-con .icon.icon-voucher-2::before,.icon.icon-voucher-2::before{content:"\ea9e"}.ekit-wid-con .fasicon.icon-voucher-3::before,.ekit-wid-con .icon.icon-voucher-3::before,.icon.icon-voucher-3::before{content:"\ea9f"}.ekit-wid-con .fasicon.icon-voucher-4::before,.ekit-wid-con .icon.icon-voucher-4::before,.icon.icon-voucher-4::before{content:"\eaa0"}.ekit-wid-con .fasicon.icon-wallet::before,.ekit-wid-con .icon.icon-wallet::before,.icon.icon-wallet::before{content:"\eaa1"}.ekit-wid-con .fasicon.icon-wallet1::before,.ekit-wid-con .icon.icon-wallet1::before,.icon.icon-wallet1::before{content:"\eaa2"}.ekit-wid-con .fasicon.icon-wifi::before,.ekit-wid-con .icon.icon-wifi::before,.icon.icon-wifi::before{content:"\eaa3"}.ekit-wid-con .fasicon.icon-worker::before,.ekit-wid-con .icon.icon-worker::before,.icon.icon-worker::before{content:"\eaa4"}.ekit-wid-con .fasicon.icon-zoom-in::before,.ekit-wid-con .icon.icon-zoom-in::before,.icon.icon-zoom-in::before{content:"\eaa5"}.ekit-wid-con .fasicon.icon-zoom-out::before,.ekit-wid-con .icon.icon-zoom-out::before,.icon.icon-zoom-out::before{content:"\eaa6"}.ekit-wid-con .fasicon.icon-burger-menu::before,.ekit-wid-con .icon.icon-burger-menu::before,.icon.icon-burger-menu::before{content:"\eab8"}.ekit-wid-con .fasicon.icon-squares::before,.ekit-wid-con .icon.icon-squares::before,.icon.icon-squares::before{content:"\eaa7"}.ekit-wid-con .fasicon.icon-options::before,.ekit-wid-con .icon.icon-options::before,.icon.icon-options::before{content:"\eaa8"}.ekit-wid-con .fasicon.icon-apps::before,.ekit-wid-con .icon.icon-apps::before,.icon.icon-apps::before{content:"\eaa9"}.ekit-wid-con .fasicon.icon-menu-11::before,.ekit-wid-con .icon.icon-menu-11::before,.icon.icon-menu-11::before{content:"\eaaa"}.ekit-wid-con .fasicon.icon-menu11::before,.ekit-wid-con .icon.icon-menu11::before,.icon.icon-menu11::before{content:"\eaab"}.ekit-wid-con .fasicon.icon-back_up::before,.ekit-wid-con .icon.icon-back_up::before,.icon.icon-back_up::before{content:"\eaad"}.ekit-wid-con .fasicon.icon-cart11::before,.ekit-wid-con .icon.icon-cart11::before,.icon.icon-cart11::before{content:"\eaae"}.ekit-wid-con .fasicon.icon-checkmark::before,.ekit-wid-con .icon.icon-checkmark::before,.icon.icon-checkmark::before{content:"\eab0"}.ekit-wid-con .fasicon.icon-dollar::before,.ekit-wid-con .icon.icon-dollar::before,.icon.icon-dollar::before{content:"\eab1"}.ekit-wid-con .fasicon.icon-domian::before,.ekit-wid-con .icon.icon-domian::before,.icon.icon-domian::before{content:"\eab2"}.ekit-wid-con .fasicon.icon-hosting1::before,.ekit-wid-con .icon.icon-hosting1::before,.icon.icon-hosting1::before{content:"\eab3"}.ekit-wid-con .fasicon.icon-key2::before,.ekit-wid-con .icon.icon-key2::before,.icon.icon-key2::before{content:"\eab4"}.ekit-wid-con .fasicon.icon-migration::before,.ekit-wid-con .icon.icon-migration::before,.icon.icon-migration::before{content:"\eab5"}.ekit-wid-con .fasicon.icon-play1::before,.ekit-wid-con .icon.icon-play1::before,.icon.icon-play1::before{content:"\eab6"}.ekit-wid-con .fasicon.icon-quote2::before,.ekit-wid-con .icon.icon-quote2::before,.icon.icon-quote2::before{content:"\eab7"}.ekit-wid-con .fasicon.icon-api_setup::before,.ekit-wid-con .icon.icon-api_setup::before,.icon.icon-api_setup::before{content:"\eab9"}.ekit-wid-con .fasicon.icon-coin::before,.ekit-wid-con .icon.icon-coin::before,.icon.icon-coin::before{content:"\eaba"}.ekit-wid-con .fasicon.icon-hand_shake::before,.ekit-wid-con .icon.icon-hand_shake::before,.icon.icon-hand_shake::before{content:"\eabb"}.ekit-wid-con .fasicon.icon-idea_generate::before,.ekit-wid-con .icon.icon-idea_generate::before,.icon.icon-idea_generate::before{content:"\eabc"}.ekit-wid-con .fasicon.icon-page_search::before,.ekit-wid-con .icon.icon-page_search::before,.icon.icon-page_search::before{content:"\eabd"}.ekit-wid-con .fasicon.icon-pen_shape::before,.ekit-wid-con .icon.icon-pen_shape::before,.icon.icon-pen_shape::before{content:"\eabe"}.ekit-wid-con .fasicon.icon-pencil_art::before,.ekit-wid-con .icon.icon-pencil_art::before,.icon.icon-pencil_art::before{content:"\eabf"}.ekit-wid-con .fasicon.icon-review::before,.ekit-wid-con .icon.icon-review::before,.icon.icon-review::before{content:"\eac0"}.ekit-wid-con .fasicon.icon-star::before,.ekit-wid-con .icon.icon-star::before,.icon.icon-star::before{content:"\eac1"}.ekit-wid-con .fasicon.icon-timing::before,.ekit-wid-con .icon.icon-timing::before,.icon.icon-timing::before{content:"\eac2"}.ekit-wid-con .fasicon.icon-trophy::before,.ekit-wid-con .icon.icon-trophy::before,.icon.icon-trophy::before{content:"\eac3"}.ekit-wid-con .fasicon.icon-communication::before,.ekit-wid-con .icon.icon-communication::before,.icon.icon-communication::before{content:"\eac4"}.ekit-wid-con .fasicon.icon-money-bag2::before,.ekit-wid-con .icon.icon-money-bag2::before,.icon.icon-money-bag2::before{content:"\eac5"}.ekit-wid-con .fasicon.icon-dentist::before,.ekit-wid-con .icon.icon-dentist::before,.icon.icon-dentist::before{content:"\eac6"}.ekit-wid-con .fasicon.icon-bill::before,.ekit-wid-con .icon.icon-bill::before,.icon.icon-bill::before{content:"\eac7"}.ekit-wid-con .fasicon.icon-label::before,.ekit-wid-con .icon.icon-label::before,.icon.icon-label::before{content:"\eac8"}.ekit-wid-con .fasicon.icon-money::before,.ekit-wid-con .icon.icon-money::before,.icon.icon-money::before{content:"\eac9"}.ekit-wid-con .fasicon.icon-shield::before,.ekit-wid-con .icon.icon-shield::before,.icon.icon-shield::before{content:"\eaca"}.ekit-wid-con .fasicon.icon-support::before,.ekit-wid-con .icon.icon-support::before,.icon.icon-support::before{content:"\eacb"}.ekit-wid-con .fasicon.icon-one::before,.ekit-wid-con .icon.icon-one::before,.icon.icon-one::before{content:"\eacc"}.ekit-wid-con .fasicon.icon-clock::before,.ekit-wid-con .icon.icon-clock::before,.icon.icon-clock::before{content:"\eacd"}.ekit-wid-con .fasicon.icon-cart::before,.ekit-wid-con .icon.icon-cart::before,.icon.icon-cart::before{content:"\eace"}.ekit-wid-con .fasicon.icon-globe::before,.ekit-wid-con .icon.icon-globe::before,.icon.icon-globe::before{content:"\eacf"}.ekit-wid-con .fasicon.icon-tooth::before,.ekit-wid-con .icon.icon-tooth::before,.icon.icon-tooth::before{content:"\ead0"}.ekit-wid-con .fasicon.icon-tooth-1::before,.ekit-wid-con .icon.icon-tooth-1::before,.icon.icon-tooth-1::before{content:"\ead1"}.ekit-wid-con .fasicon.icon-tooth-2::before,.ekit-wid-con .icon.icon-tooth-2::before,.icon.icon-tooth-2::before{content:"\ead2"}.ekit-wid-con .fasicon.icon-brain::before,.ekit-wid-con .icon.icon-brain::before,.icon.icon-brain::before{content:"\ead3"}.ekit-wid-con .fasicon.icon-view::before,.ekit-wid-con .icon.icon-view::before,.icon.icon-view::before{content:"\ead4"}.ekit-wid-con .fasicon.icon-doctor::before,.ekit-wid-con .icon.icon-doctor::before,.icon.icon-doctor::before{content:"\ead5"}.ekit-wid-con .fasicon.icon-heart::before,.ekit-wid-con .icon.icon-heart::before,.icon.icon-heart::before{content:"\ead6"}.ekit-wid-con .fasicon.icon-medicine::before,.ekit-wid-con .icon.icon-medicine::before,.icon.icon-medicine::before{content:"\ead7"}.ekit-wid-con .fasicon.icon-stethoscope::before,.ekit-wid-con .icon.icon-stethoscope::before,.icon.icon-stethoscope::before{content:"\ead8"}.ekit-wid-con .fasicon.icon-hospital::before,.ekit-wid-con .icon.icon-hospital::before,.icon.icon-hospital::before{content:"\ead9"}.ekit-wid-con .fasicon.icon-clipboard::before,.ekit-wid-con .icon.icon-clipboard::before,.icon.icon-clipboard::before{content:"\eada"}.ekit-wid-con .fasicon.icon-medicine-1::before,.ekit-wid-con .icon.icon-medicine-1::before,.icon.icon-medicine-1::before{content:"\eadb"}.ekit-wid-con .fasicon.icon-hospital-1::before,.ekit-wid-con .icon.icon-hospital-1::before,.icon.icon-hospital-1::before{content:"\eadc"}.ekit-wid-con .fasicon.icon-customer-support::before,.ekit-wid-con .icon.icon-customer-support::before,.icon.icon-customer-support::before{content:"\eadd"}.ekit-wid-con .fasicon.icon-brickwall::before,.ekit-wid-con .icon.icon-brickwall::before,.icon.icon-brickwall::before{content:"\eade"}.ekit-wid-con .fasicon.icon-crane2::before,.ekit-wid-con .icon.icon-crane2::before,.icon.icon-crane2::before{content:"\eadf"}.ekit-wid-con .fasicon.icon-valve::before,.ekit-wid-con .icon.icon-valve::before,.icon.icon-valve::before{content:"\eae1"}.ekit-wid-con .fasicon.icon-safety::before,.ekit-wid-con .icon.icon-safety::before,.icon.icon-safety::before{content:"\eae2"}.ekit-wid-con .fasicon.icon-energy-saving::before,.ekit-wid-con .icon.icon-energy-saving::before,.icon.icon-energy-saving::before{content:"\eae3"}.ekit-wid-con .fasicon.icon-paint-roller::before,.ekit-wid-con .icon.icon-paint-roller::before,.icon.icon-paint-roller::before{content:"\eae4"}.ekit-wid-con .fasicon.icon-paint-brushes::before,.ekit-wid-con .icon.icon-paint-brushes::before,.icon.icon-paint-brushes::before{content:"\eae5"}.ekit-wid-con .fasicon.icon-construction-tool-vehicle-with-crane-lifting-materials::before,.ekit-wid-con .icon.icon-construction-tool-vehicle-with-crane-lifting-materials::before,.icon.icon-construction-tool-vehicle-with-crane-lifting-materials::before{content:"\eae6"}.ekit-wid-con .fasicon.icon-trowel::before,.ekit-wid-con .icon.icon-trowel::before,.icon.icon-trowel::before{content:"\eae7"}.ekit-wid-con .fasicon.icon-bucket::before,.ekit-wid-con .icon.icon-bucket::before,.icon.icon-bucket::before{content:"\eae8"}.ekit-wid-con .fasicon.icon-smart::before,.ekit-wid-con .icon.icon-smart::before,.icon.icon-smart::before{content:"\eae9"}.ekit-wid-con .fasicon.icon-repair::before,.ekit-wid-con .icon.icon-repair::before,.icon.icon-repair::before{content:"\eaea"}.ekit-wid-con .fasicon.icon-saw::before,.ekit-wid-con .icon.icon-saw::before,.icon.icon-saw::before{content:"\eaeb"}.ekit-wid-con .fasicon.icon-cutter::before,.ekit-wid-con .icon.icon-cutter::before,.icon.icon-cutter::before{content:"\eaec"}.ekit-wid-con .fasicon.icon-plier::before,.ekit-wid-con .icon.icon-plier::before,.icon.icon-plier::before{content:"\eaed"}.ekit-wid-con .fasicon.icon-drill::before,.ekit-wid-con .icon.icon-drill::before,.icon.icon-drill::before{content:"\eaee"}.ekit-wid-con .fasicon.icon-save-money::before,.ekit-wid-con .icon.icon-save-money::before,.icon.icon-save-money::before{content:"\eaef"}.ekit-wid-con .fasicon.icon-planting::before,.ekit-wid-con .icon.icon-planting::before,.icon.icon-planting::before{content:"\eaf0"}.ekit-wid-con .fasicon.icon-line-chart::before,.ekit-wid-con .icon.icon-line-chart::before,.icon.icon-line-chart::before{content:"\eaf1"}.ekit-wid-con .fasicon.icon-open-book::before,.ekit-wid-con .icon.icon-open-book::before,.icon.icon-open-book::before{content:"\eaf2"}.ekit-wid-con .fasicon.icon-money-bag3::before,.ekit-wid-con .icon.icon-money-bag3::before,.icon.icon-money-bag3::before{content:"\eaf3"}.ekit-wid-con .fasicon.icon-server::before,.ekit-wid-con .icon.icon-server::before,.icon.icon-server::before{content:"\eaf4"}.ekit-wid-con .fasicon.icon-server-1::before,.ekit-wid-con .icon.icon-server-1::before,.icon.icon-server-1::before{content:"\eaf5"}.ekit-wid-con .fasicon.icon-server-2::before,.ekit-wid-con .icon.icon-server-2::before,.icon.icon-server-2::before{content:"\eaf6"}.ekit-wid-con .fasicon.icon-cloud-computing::before,.ekit-wid-con .icon.icon-cloud-computing::before,.icon.icon-cloud-computing::before{content:"\eaf7"}.ekit-wid-con .fasicon.icon-cloud::before,.ekit-wid-con .icon.icon-cloud::before,.icon.icon-cloud::before{content:"\eaf8"}.ekit-wid-con .fasicon.icon-database::before,.ekit-wid-con .icon.icon-database::before,.icon.icon-database::before{content:"\eaf9"}.ekit-wid-con .fasicon.icon-computer::before,.ekit-wid-con .icon.icon-computer::before,.icon.icon-computer::before{content:"\eafa"}.ekit-wid-con .fasicon.icon-server-3::before,.ekit-wid-con .icon.icon-server-3::before,.icon.icon-server-3::before{content:"\eafb"}.ekit-wid-con .fasicon.icon-server-4::before,.ekit-wid-con .icon.icon-server-4::before,.icon.icon-server-4::before{content:"\eafc"}.ekit-wid-con .fasicon.icon-server-5::before,.ekit-wid-con .icon.icon-server-5::before,.icon.icon-server-5::before{content:"\eafd"}.ekit-wid-con .fasicon.icon-server-6::before,.ekit-wid-con .icon.icon-server-6::before,.icon.icon-server-6::before{content:"\eafe"}.ekit-wid-con .fasicon.icon-server-7::before,.ekit-wid-con .icon.icon-server-7::before,.icon.icon-server-7::before{content:"\eaff"}.ekit-wid-con .fasicon.icon-cloud-1::before,.ekit-wid-con .icon.icon-cloud-1::before,.icon.icon-cloud-1::before{content:"\eb00"}.ekit-wid-con .fasicon.icon-server-8::before,.ekit-wid-con .icon.icon-server-8::before,.icon.icon-server-8::before{content:"\eb01"}.ekit-wid-con .fasicon.icon-business-and-finance::before,.ekit-wid-con .icon.icon-business-and-finance::before,.icon.icon-business-and-finance::before{content:"\eb02"}.ekit-wid-con .fasicon.icon-cloud-2::before,.ekit-wid-con .icon.icon-cloud-2::before,.icon.icon-cloud-2::before{content:"\eb03"}.ekit-wid-con .fasicon.icon-server-9::before,.ekit-wid-con .icon.icon-server-9::before,.icon.icon-server-9::before{content:"\eb04"}.ekit-wid-con .fasicon.icon-hosting::before,.ekit-wid-con .icon.icon-hosting::before,.icon.icon-hosting::before{content:"\eb05"}.ekit-wid-con .fasicon.icon-car::before,.ekit-wid-con .icon.icon-car::before,.icon.icon-car::before{content:"\eb06"}.ekit-wid-con .fasicon.icon-car-frontal-view::before,.ekit-wid-con .icon.icon-car-frontal-view::before,.icon.icon-car-frontal-view::before{content:"\eb07"}.ekit-wid-con .fasicon.icon-car-1::before,.ekit-wid-con .icon.icon-car-1::before,.icon.icon-car-1::before{content:"\eb08"}.ekit-wid-con .fasicon.icon-racing::before,.ekit-wid-con .icon.icon-racing::before,.icon.icon-racing::before{content:"\eb09"}.ekit-wid-con .fasicon.icon-car-wheel::before,.ekit-wid-con .icon.icon-car-wheel::before,.icon.icon-car-wheel::before{content:"\eb0a"}.ekit-wid-con .fasicon.icon-steering-wheel::before,.ekit-wid-con .icon.icon-steering-wheel::before,.icon.icon-steering-wheel::before{content:"\eb0b"}.ekit-wid-con .fasicon.icon-frontal-taxi-cab::before,.ekit-wid-con .icon.icon-frontal-taxi-cab::before,.icon.icon-frontal-taxi-cab::before{content:"\eb0c"}.ekit-wid-con .fasicon.icon-taxi::before,.ekit-wid-con .icon.icon-taxi::before,.icon.icon-taxi::before{content:"\eb0d"}.ekit-wid-con .fasicon.icon-cosmetics::before,.ekit-wid-con .icon.icon-cosmetics::before,.icon.icon-cosmetics::before{content:"\eb0e"}.ekit-wid-con .fasicon.icon-flower::before,.ekit-wid-con .icon.icon-flower::before,.icon.icon-flower::before{content:"\eb0f"}.ekit-wid-con .fasicon.icon-mirror::before,.ekit-wid-con .icon.icon-mirror::before,.icon.icon-mirror::before{content:"\eb10"}.ekit-wid-con .fasicon.icon-itunes::before,.ekit-wid-con .icon.icon-itunes::before,.icon.icon-itunes::before{content:"\eb6b"}.ekit-wid-con .fasicon.icon-salon::before,.ekit-wid-con .icon.icon-salon::before,.icon.icon-salon::before{content:"\eb11"}.ekit-wid-con .fasicon.icon-hair-dryer::before,.ekit-wid-con .icon.icon-hair-dryer::before,.icon.icon-hair-dryer::before{content:"\eb12"}.ekit-wid-con .fasicon.icon-shampoo::before,.ekit-wid-con .icon.icon-shampoo::before,.icon.icon-shampoo::before{content:"\eb13"}.ekit-wid-con .fasicon.icon-download-button::before,.ekit-wid-con .icon.icon-download-button::before,.icon.icon-download-button::before{content:"\e90b"}.ekit-wid-con .fasicon.icon-list::before,.ekit-wid-con .icon.icon-list::before,.icon.icon-list::before{content:"\eb14"}.ekit-wid-con .fasicon.icon-loupe::before,.ekit-wid-con .icon.icon-loupe::before,.icon.icon-loupe::before{content:"\eb15"}.ekit-wid-con .fasicon.icon-search::before,.ekit-wid-con .icon.icon-search::before,.icon.icon-search::before{content:"\eb16"}.ekit-wid-con .fasicon.icon-search-1::before,.ekit-wid-con .icon.icon-search-1::before,.icon.icon-search-1::before{content:"\eb17"}.ekit-wid-con .fasicon.icon-shopping-cart::before,.ekit-wid-con .icon.icon-shopping-cart::before,.icon.icon-shopping-cart::before{content:"\eb18"}.ekit-wid-con .fasicon.icon-menu::before,.ekit-wid-con .icon.icon-menu::before,.icon.icon-menu::before{content:"\eb19"}.ekit-wid-con .fasicon.icon-menu-1::before,.ekit-wid-con .icon.icon-menu-1::before,.icon.icon-menu-1::before{content:"\eb1a"}.ekit-wid-con .fasicon.icon-menu-button-of-three-horizontal-lines::before,.ekit-wid-con .icon.icon-menu-button-of-three-horizontal-lines::before,.icon.icon-menu-button-of-three-horizontal-lines::before{content:"\eb1b"}.ekit-wid-con .fasicon.icon-menu-2::before,.ekit-wid-con .icon.icon-menu-2::before,.icon.icon-menu-2::before{content:"\eb1c"}.ekit-wid-con .fasicon.icon-menu-3::before,.ekit-wid-con .icon.icon-menu-3::before,.icon.icon-menu-3::before{content:"\eb1d"}.ekit-wid-con .fasicon.icon-menu-5::before,.ekit-wid-con .icon.icon-menu-5::before,.icon.icon-menu-5::before{content:"\eb1f"}.ekit-wid-con .fasicon.icon-menu-button::before,.ekit-wid-con .icon.icon-menu-button::before,.icon.icon-menu-button::before{content:"\eb20"}.ekit-wid-con .fasicon.icon-list-1::before,.ekit-wid-con .icon.icon-list-1::before,.icon.icon-list-1::before{content:"\eb21"}.ekit-wid-con .fasicon.icon-menu-6::before,.ekit-wid-con .icon.icon-menu-6::before,.icon.icon-menu-6::before{content:"\eb22"}.ekit-wid-con .fasicon.icon-menu-7::before,.ekit-wid-con .icon.icon-menu-7::before,.icon.icon-menu-7::before{content:"\eb23"}.ekit-wid-con .fasicon.icon-menu-8::before,.ekit-wid-con .icon.icon-menu-8::before,.icon.icon-menu-8::before{content:"\eb24"}.ekit-wid-con .fasicon.icon-list-2::before,.ekit-wid-con .icon.icon-list-2::before,.icon.icon-list-2::before{content:"\eb25"}.ekit-wid-con .fasicon.icon-dot::before,.ekit-wid-con .icon.icon-dot::before,.icon.icon-dot::before{content:"\eb26"}.ekit-wid-con .fasicon.icon-menu-9::before,.ekit-wid-con .icon.icon-menu-9::before,.icon.icon-menu-9::before{content:"\eb27"}.ekit-wid-con .fasicon.icon-search11::before,.ekit-wid-con .icon.icon-search11::before,.icon.icon-search11::before{content:"\eb28"}.ekit-wid-con .fasicon.icon-search-minus::before,.ekit-wid-con .icon.icon-search-minus::before,.icon.icon-search-minus::before{content:"\eb29"}.ekit-wid-con .fasicon.icon-search-11::before,.ekit-wid-con .icon.icon-search-11::before,.icon.icon-search-11::before{content:"\eb2a"}.ekit-wid-con .fasicon.icon-search-2::before,.ekit-wid-con .icon.icon-search-2::before,.icon.icon-search-2::before{content:"\eb2b"}.ekit-wid-con .fasicon.icon-search-3::before,.ekit-wid-con .icon.icon-search-3::before,.icon.icon-search-3::before{content:"\eb2c"}.ekit-wid-con .fasicon.icon-magnifying-glass-search::before,.ekit-wid-con .icon.icon-magnifying-glass-search::before,.icon.icon-magnifying-glass-search::before{content:"\eb2d"}.ekit-wid-con .fasicon.icon-loupe1::before,.ekit-wid-con .icon.icon-loupe1::before,.icon.icon-loupe1::before{content:"\eb2e"}.ekit-wid-con .fasicon.icon-speed::before,.ekit-wid-con .icon.icon-speed::before,.icon.icon-speed::before{content:"\eb2f"}.ekit-wid-con .fasicon.icon-search21::before,.ekit-wid-con .icon.icon-search21::before,.icon.icon-search21::before{content:"\eb30"}.ekit-wid-con .fasicon.icon-search-4::before,.ekit-wid-con .icon.icon-search-4::before,.icon.icon-search-4::before{content:"\eb31"}.ekit-wid-con .fasicon.icon-search-5::before,.ekit-wid-con .icon.icon-search-5::before,.icon.icon-search-5::before{content:"\eb32"}.ekit-wid-con .fasicon.icon-detective::before,.ekit-wid-con .icon.icon-detective::before,.icon.icon-detective::before{content:"\eb33"}.ekit-wid-con .fasicon.icon-cart1::before,.ekit-wid-con .icon.icon-cart1::before,.icon.icon-cart1::before{content:"\eb34"}.ekit-wid-con .fasicon.icon-buying-on-smartphone::before,.ekit-wid-con .icon.icon-buying-on-smartphone::before,.icon.icon-buying-on-smartphone::before{content:"\eb35"}.ekit-wid-con .fasicon.icon-badge::before,.ekit-wid-con .icon.icon-badge::before,.icon.icon-badge::before{content:"\eb36"}.ekit-wid-con .fasicon.icon-basket1::before,.ekit-wid-con .icon.icon-basket1::before,.icon.icon-basket1::before{content:"\eb37"}.ekit-wid-con .fasicon.icon-commerce-and-shopping::before,.ekit-wid-con .icon.icon-commerce-and-shopping::before,.icon.icon-commerce-and-shopping::before{content:"\eb38"}.ekit-wid-con .fasicon.icon-comment::before,.ekit-wid-con .icon.icon-comment::before,.icon.icon-comment::before{content:"\eb39"}.ekit-wid-con .fasicon.icon-comment-1::before,.ekit-wid-con .icon.icon-comment-1::before,.icon.icon-comment-1::before{content:"\eb3a"}.ekit-wid-con .fasicon.icon-share::before,.ekit-wid-con .icon.icon-share::before,.icon.icon-share::before{content:"\eb3b"}.ekit-wid-con .fasicon.icon-share-1::before,.ekit-wid-con .icon.icon-share-1::before,.icon.icon-share-1::before{content:"\eb3c"}.ekit-wid-con .fasicon.icon-share-2::before,.ekit-wid-con .icon.icon-share-2::before,.icon.icon-share-2::before{content:"\eb3d"}.ekit-wid-con .fasicon.icon-share-3::before,.ekit-wid-con .icon.icon-share-3::before,.icon.icon-share-3::before{content:"\eb3e"}.ekit-wid-con .fasicon.icon-comment1::before,.ekit-wid-con .icon.icon-comment1::before,.icon.icon-comment1::before{content:"\eb3f"}.ekit-wid-con .fasicon.icon-favorite::before,.ekit-wid-con .icon.icon-favorite::before,.icon.icon-favorite::before{content:"\eb40"}.ekit-wid-con .fasicon.icon-retweet::before,.ekit-wid-con .icon.icon-retweet::before,.icon.icon-retweet::before{content:"\eb41"}.ekit-wid-con .fasicon.icon-share1::before,.ekit-wid-con .icon.icon-share1::before,.icon.icon-share1::before{content:"\eb42"}.ekit-wid-con .fasicon.icon-facebook::before,.ekit-wid-con .icon.icon-facebook::before,.icon.icon-facebook::before{content:"\eb43"}.ekit-wid-con .fasicon.icon-twitter::before,.ekit-wid-con .icon.icon-twitter::before,.icon.icon-twitter::before{content:"\eb44"}.ekit-wid-con .fasicon.icon-linkedin::before,.ekit-wid-con .icon.icon-linkedin::before,.icon.icon-linkedin::before{content:"\eb45"}.ekit-wid-con .fasicon.icon-whatsapp-1::before,.ekit-wid-con .icon.icon-whatsapp-1::before,.icon.icon-whatsapp-1::before{content:"\eb46"}.ekit-wid-con .fasicon.icon-dribbble::before,.ekit-wid-con .icon.icon-dribbble::before,.icon.icon-dribbble::before{content:"\eb47"}.ekit-wid-con .fasicon.icon-facebook-2::before,.ekit-wid-con .icon.icon-facebook-2::before,.icon.icon-facebook-2::before{content:"\eb48"}.ekit-wid-con .fasicon.icon-twitter1::before,.ekit-wid-con .icon.icon-twitter1::before,.icon.icon-twitter1::before{content:"\eb49"}.ekit-wid-con .fasicon.icon-vk::before,.ekit-wid-con .icon.icon-vk::before,.icon.icon-vk::before{content:"\eb4a"}.ekit-wid-con .fasicon.icon-youtube-v::before,.ekit-wid-con .icon.icon-youtube-v::before,.icon.icon-youtube-v::before{content:"\eb4b"}.ekit-wid-con .fasicon.icon-vimeo::before,.ekit-wid-con .icon.icon-vimeo::before,.icon.icon-vimeo::before{content:"\eae0"}.ekit-wid-con .fasicon.icon-youtube::before,.ekit-wid-con .icon.icon-youtube::before,.icon.icon-youtube::before{content:"\eb4c"}.ekit-wid-con .fasicon.icon-snapchat-1::before,.ekit-wid-con .icon.icon-snapchat-1::before,.icon.icon-snapchat-1::before{content:"\eb4d"}.ekit-wid-con .fasicon.icon-behance::before,.ekit-wid-con .icon.icon-behance::before,.icon.icon-behance::before{content:"\eb4e"}.ekit-wid-con .fasicon.icon-github::before,.ekit-wid-con .icon.icon-github::before,.icon.icon-github::before{content:"\eb4f"}.ekit-wid-con .fasicon.icon-pinterest::before,.ekit-wid-con .icon.icon-pinterest::before,.icon.icon-pinterest::before{content:"\eb50"}.ekit-wid-con .fasicon.icon-spotify::before,.ekit-wid-con .icon.icon-spotify::before,.icon.icon-spotify::before{content:"\eb51"}.ekit-wid-con .fasicon.icon-soundcloud-1::before,.ekit-wid-con .icon.icon-soundcloud-1::before,.icon.icon-soundcloud-1::before{content:"\eb52"}.ekit-wid-con .fasicon.icon-skype-1::before,.ekit-wid-con .icon.icon-skype-1::before,.icon.icon-skype-1::before{content:"\eb53"}.ekit-wid-con .fasicon.icon-rss::before,.ekit-wid-con .icon.icon-rss::before,.icon.icon-rss::before{content:"\eb54"}.ekit-wid-con .fasicon.icon-reddit-1::before,.ekit-wid-con .icon.icon-reddit-1::before,.icon.icon-reddit-1::before{content:"\eb55"}.ekit-wid-con .fasicon.icon-dribbble-1::before,.ekit-wid-con .icon.icon-dribbble-1::before,.icon.icon-dribbble-1::before{content:"\eb56"}.ekit-wid-con .fasicon.icon-wordpress-1::before,.ekit-wid-con .icon.icon-wordpress-1::before,.icon.icon-wordpress-1::before{content:"\eb57"}.ekit-wid-con .fasicon.icon-logo::before,.ekit-wid-con .icon.icon-logo::before,.icon.icon-logo::before{content:"\eb58"}.ekit-wid-con .fasicon.icon-dropbox-1::before,.ekit-wid-con .icon.icon-dropbox-1::before,.icon.icon-dropbox-1::before{content:"\eb59"}.ekit-wid-con .fasicon.icon-blogger-1::before,.ekit-wid-con .icon.icon-blogger-1::before,.icon.icon-blogger-1::before{content:"\eb5a"}.ekit-wid-con .fasicon.icon-photo::before,.ekit-wid-con .icon.icon-photo::before,.icon.icon-photo::before{content:"\eb5b"}.ekit-wid-con .fasicon.icon-hangouts::before,.ekit-wid-con .icon.icon-hangouts::before,.icon.icon-hangouts::before{content:"\eb5c"}.ekit-wid-con .fasicon.icon-xing::before,.ekit-wid-con .icon.icon-xing::before,.icon.icon-xing::before{content:"\eb5d"}.ekit-wid-con .fasicon.icon-myspace::before,.ekit-wid-con .icon.icon-myspace::before,.icon.icon-myspace::before{content:"\eb5e"}.ekit-wid-con .fasicon.icon-flickr-1::before,.ekit-wid-con .icon.icon-flickr-1::before,.icon.icon-flickr-1::before{content:"\eb5f"}.ekit-wid-con .fasicon.icon-envato::before,.ekit-wid-con .icon.icon-envato::before,.icon.icon-envato::before{content:"\eb60"}.ekit-wid-con .fasicon.icon-picasa-1::before,.ekit-wid-con .icon.icon-picasa-1::before,.icon.icon-picasa-1::before{content:"\eb61"}.ekit-wid-con .fasicon.icon-wattpad::before,.ekit-wid-con .icon.icon-wattpad::before,.icon.icon-wattpad::before{content:"\eb62"}.ekit-wid-con .fasicon.icon-emoji::before,.ekit-wid-con .icon.icon-emoji::before,.icon.icon-emoji::before{content:"\eb63"}.ekit-wid-con .fasicon.icon-deviantart-1::before,.ekit-wid-con .icon.icon-deviantart-1::before,.icon.icon-deviantart-1::before{content:"\eb64"}.ekit-wid-con .fasicon.icon-yahoo-1::before,.ekit-wid-con .icon.icon-yahoo-1::before,.icon.icon-yahoo-1::before{content:"\eb65"}.ekit-wid-con .fasicon.icon-vine-1::before,.ekit-wid-con .icon.icon-vine-1::before,.icon.icon-vine-1::before{content:"\eb66"}.ekit-wid-con .fasicon.icon-delicious::before,.ekit-wid-con .icon.icon-delicious::before,.icon.icon-delicious::before{content:"\eb67"}.ekit-wid-con .fasicon.icon-kickstarter-1::before,.ekit-wid-con .icon.icon-kickstarter-1::before,.icon.icon-kickstarter-1::before{content:"\eb68"}.ekit-wid-con .fasicon.icon-stumbleupon-1::before,.ekit-wid-con .icon.icon-stumbleupon-1::before,.icon.icon-stumbleupon-1::before{content:"\eb69"}.ekit-wid-con .fasicon.icon-brands-and-logotypes::before,.ekit-wid-con .icon.icon-brands-and-logotypes::before,.icon.icon-brands-and-logotypes::before{content:"\eb6a"}.ekit-wid-con .fasicon.icon-instagram-1::before,.ekit-wid-con .icon.icon-instagram-1::before,.icon.icon-instagram-1::before{content:"\eb6c"}.ekit-wid-con .fasicon.icon-facebook-1::before,.ekit-wid-con .icon.icon-facebook-1::before,.icon.icon-facebook-1::before{content:"\eb6d"}.ekit-wid-con .fasicon.icon-instagram-2::before,.ekit-wid-con .icon.icon-instagram-2::before,.icon.icon-instagram-2::before{content:"\eb6e"}.ekit-wid-con .fasicon.icon-twitter-1::before,.ekit-wid-con .icon.icon-twitter-1::before,.icon.icon-twitter-1::before{content:"\eb6f"}.ekit-wid-con .fasicon.icon-whatsapp-2::before,.ekit-wid-con .icon.icon-whatsapp-2::before,.icon.icon-whatsapp-2::before{content:"\eb70"}.ekit-wid-con .fasicon.icon-youtube-1::before,.ekit-wid-con .icon.icon-youtube-1::before,.icon.icon-youtube-1::before{content:"\eb71"}.ekit-wid-con .fasicon.icon-linkedin-1::before,.ekit-wid-con .icon.icon-linkedin-1::before,.icon.icon-linkedin-1::before{content:"\eb72"}.ekit-wid-con .fasicon.icon-telegram::before,.ekit-wid-con .icon.icon-telegram::before,.icon.icon-telegram::before{content:"\eb73"}.ekit-wid-con .fasicon.icon-github-1::before,.ekit-wid-con .icon.icon-github-1::before,.icon.icon-github-1::before{content:"\eb74"}.ekit-wid-con .fasicon.icon-vk-1::before,.ekit-wid-con .icon.icon-vk-1::before,.icon.icon-vk-1::before{content:"\eb75"}.ekit-wid-con .fasicon.icon-pinterest-1::before,.ekit-wid-con .icon.icon-pinterest-1::before,.icon.icon-pinterest-1::before{content:"\eb76"}.ekit-wid-con .fasicon.icon-rss-1::before,.ekit-wid-con .icon.icon-rss-1::before,.icon.icon-rss-1::before{content:"\eb77"}.ekit-wid-con .fasicon.icon-twitch::before,.ekit-wid-con .icon.icon-twitch::before,.icon.icon-twitch::before{content:"\eb78"}.ekit-wid-con .fasicon.icon-snapchat-2::before,.ekit-wid-con .icon.icon-snapchat-2::before,.icon.icon-snapchat-2::before{content:"\eb79"}.ekit-wid-con .fasicon.icon-skype-2::before,.ekit-wid-con .icon.icon-skype-2::before,.icon.icon-skype-2::before{content:"\eb7a"}.ekit-wid-con .fasicon.icon-behance-2::before,.ekit-wid-con .icon.icon-behance-2::before,.icon.icon-behance-2::before{content:"\eb7b"}.ekit-wid-con .fasicon.icon-spotify-1::before,.ekit-wid-con .icon.icon-spotify-1::before,.icon.icon-spotify-1::before{content:"\eb7c"}.ekit-wid-con .fasicon.icon-periscope::before,.ekit-wid-con .icon.icon-periscope::before,.icon.icon-periscope::before{content:"\eb7d"}.ekit-wid-con .fasicon.icon-dribbble-2::before,.ekit-wid-con .icon.icon-dribbble-2::before,.icon.icon-dribbble-2::before{content:"\eb7e"}.ekit-wid-con .fasicon.icon-tumblr-1::before,.ekit-wid-con .icon.icon-tumblr-1::before,.icon.icon-tumblr-1::before{content:"\eb7f"}.ekit-wid-con .fasicon.icon-soundcloud-2::before,.ekit-wid-con .icon.icon-soundcloud-2::before,.icon.icon-soundcloud-2::before{content:"\eb80"}.ekit-wid-con .fasicon.icon-google-drive-1::before,.ekit-wid-con .icon.icon-google-drive-1::before,.icon.icon-google-drive-1::before{content:"\eb81"}.ekit-wid-con .fasicon.icon-dropbox-2::before,.ekit-wid-con .icon.icon-dropbox-2::before,.icon.icon-dropbox-2::before{content:"\eb82"}.ekit-wid-con .fasicon.icon-reddit-2::before,.ekit-wid-con .icon.icon-reddit-2::before,.icon.icon-reddit-2::before{content:"\eb83"}.ekit-wid-con .fasicon.icon-html::before,.ekit-wid-con .icon.icon-html::before,.icon.icon-html::before{content:"\eb84"}.ekit-wid-con .fasicon.icon-vimeo-1::before,.ekit-wid-con .icon.icon-vimeo-1::before,.icon.icon-vimeo-1::before{content:"\eb85"}.ekit-wid-con .fasicon.icon-hangout::before,.ekit-wid-con .icon.icon-hangout::before,.icon.icon-hangout::before{content:"\eb86"}.ekit-wid-con .fasicon.icon-blogger-2::before,.ekit-wid-con .icon.icon-blogger-2::before,.icon.icon-blogger-2::before{content:"\eb87"}.ekit-wid-con .fasicon.icon-yahoo-2::before,.ekit-wid-con .icon.icon-yahoo-2::before,.icon.icon-yahoo-2::before{content:"\eb88"}.ekit-wid-con .fasicon.icon-path::before,.ekit-wid-con .icon.icon-path::before,.icon.icon-path::before{content:"\eb89"}.ekit-wid-con .fasicon.icon-yelp-1::before,.ekit-wid-con .icon.icon-yelp-1::before,.icon.icon-yelp-1::before{content:"\eb8a"}.ekit-wid-con .fasicon.icon-slideshare::before,.ekit-wid-con .icon.icon-slideshare::before,.icon.icon-slideshare::before{content:"\eb8b"}.ekit-wid-con .fasicon.icon-picasa-2::before,.ekit-wid-con .icon.icon-picasa-2::before,.icon.icon-picasa-2::before{content:"\eb8c"}.ekit-wid-con .fasicon.icon-myspace-1::before,.ekit-wid-con .icon.icon-myspace-1::before,.icon.icon-myspace-1::before{content:"\eb8d"}.ekit-wid-con .fasicon.icon-flickr-2::before,.ekit-wid-con .icon.icon-flickr-2::before,.icon.icon-flickr-2::before{content:"\eb8e"}.ekit-wid-con .fasicon.icon-xing-1::before,.ekit-wid-con .icon.icon-xing-1::before,.icon.icon-xing-1::before{content:"\eb8f"}.ekit-wid-con .fasicon.icon-envato-1::before,.ekit-wid-con .icon.icon-envato-1::before,.icon.icon-envato-1::before{content:"\eb90"}.ekit-wid-con .fasicon.icon-swarm::before,.ekit-wid-con .icon.icon-swarm::before,.icon.icon-swarm::before{content:"\eb91"}.ekit-wid-con .fasicon.icon-wattpad-1::before,.ekit-wid-con .icon.icon-wattpad-1::before,.icon.icon-wattpad-1::before{content:"\eb92"}.ekit-wid-con .fasicon.icon-foursquare::before,.ekit-wid-con .icon.icon-foursquare::before,.icon.icon-foursquare::before{content:"\eb93"}.ekit-wid-con .fasicon.icon-deviantart-2::before,.ekit-wid-con .icon.icon-deviantart-2::before,.icon.icon-deviantart-2::before{content:"\eb94"}.ekit-wid-con .fasicon.icon-kickstarter-2::before,.ekit-wid-con .icon.icon-kickstarter-2::before,.icon.icon-kickstarter-2::before{content:"\eb95"}.ekit-wid-con .fasicon.icon-delicious-1::before,.ekit-wid-con .icon.icon-delicious-1::before,.icon.icon-delicious-1::before{content:"\eb96"}.ekit-wid-con .fasicon.icon-vine-2::before,.ekit-wid-con .icon.icon-vine-2::before,.icon.icon-vine-2::before{content:"\eb97"}.ekit-wid-con .fasicon.icon-digg::before,.ekit-wid-con .icon.icon-digg::before,.icon.icon-digg::before{content:"\eb98"}.ekit-wid-con .fasicon.icon-bebo::before,.ekit-wid-con .icon.icon-bebo::before,.icon.icon-bebo::before{content:"\eb99"}.ekit-wid-con .fasicon.icon-stumbleupon-2::before,.ekit-wid-con .icon.icon-stumbleupon-2::before,.icon.icon-stumbleupon-2::before{content:"\eb9a"}.ekit-wid-con .fasicon.icon-forrst::before,.ekit-wid-con .icon.icon-forrst::before,.icon.icon-forrst::before{content:"\eb9b"}.ekit-wid-con .fasicon.icon-eye3::before,.ekit-wid-con .icon.icon-eye3::before,.icon.icon-eye3::before{content:"\eb9d"}.ekit-wid-con .fasicon.icon-microscope::before,.ekit-wid-con .icon.icon-microscope::before,.icon.icon-microscope::before{content:"\eb9e"}.ekit-wid-con .fasicon.icon-Anti-Lock::before,.ekit-wid-con .icon.icon-Anti-Lock::before,.icon.icon-Anti-Lock::before{content:"\eb9f"}.ekit-wid-con .fasicon.icon-apartment::before,.ekit-wid-con .icon.icon-apartment::before,.icon.icon-apartment::before{content:"\eba0"}.ekit-wid-con .fasicon.icon-app::before,.ekit-wid-con .icon.icon-app::before,.icon.icon-app::before{content:"\eba2"}.ekit-wid-con .fasicon.icon-Aroma::before,.ekit-wid-con .icon.icon-Aroma::before,.icon.icon-Aroma::before{content:"\eba3"}.ekit-wid-con .fasicon.icon-bamboo-Leaf::before,.ekit-wid-con .icon.icon-bamboo-Leaf::before,.icon.icon-bamboo-Leaf::before{content:"\eba5"}.ekit-wid-con .fasicon.icon-basket::before,.ekit-wid-con .icon.icon-basket::before,.icon.icon-basket::before{content:"\eba6"}.ekit-wid-con .fasicon.icon-Battery::before,.ekit-wid-con .icon.icon-Battery::before,.icon.icon-Battery::before{content:"\eba7"}.ekit-wid-con .fasicon.icon-Bettery::before,.ekit-wid-con .icon.icon-Bettery::before,.icon.icon-Bettery::before{content:"\eba8"}.ekit-wid-con .fasicon.icon-building::before,.ekit-wid-con .icon.icon-building::before,.icon.icon-building::before{content:"\eba9"}.ekit-wid-con .fasicon.icon-car-2::before,.ekit-wid-con .icon.icon-car-2::before,.icon.icon-car-2::before{content:"\ebaa"}.ekit-wid-con .fasicon.icon-Car::before,.ekit-wid-con .icon.icon-Car::before,.icon.icon-Car::before{content:"\ebab"}.ekit-wid-con .fasicon.icon-Child::before,.ekit-wid-con .icon.icon-Child::before,.icon.icon-Child::before{content:"\ebac"}.ekit-wid-con .fasicon.icon-cityscape::before,.ekit-wid-con .icon.icon-cityscape::before,.icon.icon-cityscape::before{content:"\ebad"}.ekit-wid-con .fasicon.icon-cleaner::before,.ekit-wid-con .icon.icon-cleaner::before,.icon.icon-cleaner::before{content:"\ebae"}.ekit-wid-con .fasicon.icon-Coffee-cup::before,.ekit-wid-con .icon.icon-Coffee-cup::before,.icon.icon-Coffee-cup::before{content:"\ebaf"}.ekit-wid-con .fasicon.icon-coins::before,.ekit-wid-con .icon.icon-coins::before,.icon.icon-coins::before{content:"\ebb0"}.ekit-wid-con .fasicon.icon-Computer::before,.ekit-wid-con .icon.icon-Computer::before,.icon.icon-Computer::before{content:"\ebb1"}.ekit-wid-con .fasicon.icon-Consultancy::before,.ekit-wid-con .icon.icon-Consultancy::before,.icon.icon-Consultancy::before{content:"\ebb2"}.ekit-wid-con .fasicon.icon-cottage::before,.ekit-wid-con .icon.icon-cottage::before,.icon.icon-cottage::before{content:"\ebb3"}.ekit-wid-con .fasicon.icon-crane::before,.ekit-wid-con .icon.icon-crane::before,.icon.icon-crane::before{content:"\ebb4"}.ekit-wid-con .fasicon.icon-Custom-api::before,.ekit-wid-con .icon.icon-Custom-api::before,.icon.icon-Custom-api::before{content:"\ebb5"}.ekit-wid-con .fasicon.icon-customer-support-2::before,.ekit-wid-con .icon.icon-customer-support-2::before,.icon.icon-customer-support-2::before{content:"\ebb6"}.ekit-wid-con .fasicon.icon-Design-2::before,.ekit-wid-con .icon.icon-Design-2::before,.icon.icon-Design-2::before{content:"\ebb7"}.ekit-wid-con .fasicon.icon-Design-3::before,.ekit-wid-con .icon.icon-Design-3::before,.icon.icon-Design-3::before{content:"\ebb8"}.ekit-wid-con .fasicon.icon-design::before,.ekit-wid-con .icon.icon-design::before,.icon.icon-design::before{content:"\ebb9"}.ekit-wid-con .fasicon.icon-diamond::before,.ekit-wid-con .icon.icon-diamond::before,.icon.icon-diamond::before{content:"\ebba"}.ekit-wid-con .fasicon.icon-diploma::before,.ekit-wid-con .icon.icon-diploma::before,.icon.icon-diploma::before{content:"\ebbb"}.ekit-wid-con .fasicon.icon-Document-Search::before,.ekit-wid-con .icon.icon-Document-Search::before,.icon.icon-Document-Search::before{content:"\ebbc"}.ekit-wid-con .fasicon.icon-Download::before,.ekit-wid-con .icon.icon-Download::before,.icon.icon-Download::before{content:"\ebbd"}.ekit-wid-con .fasicon.icon-drilling::before,.ekit-wid-con .icon.icon-drilling::before,.icon.icon-drilling::before{content:"\ebbe"}.ekit-wid-con .fasicon.icon-engine::before,.ekit-wid-con .icon.icon-engine::before,.icon.icon-engine::before{content:"\ebbf"}.ekit-wid-con .fasicon.icon-engineer::before,.ekit-wid-con .icon.icon-engineer::before,.icon.icon-engineer::before{content:"\ebc0"}.ekit-wid-con .fasicon.icon-envelope::before,.ekit-wid-con .icon.icon-envelope::before,.icon.icon-envelope::before{content:"\ebc1"}.ekit-wid-con .fasicon.icon-Family::before,.ekit-wid-con .icon.icon-Family::before,.icon.icon-Family::before{content:"\ebc2"}.ekit-wid-con .fasicon.icon-friendship::before,.ekit-wid-con .icon.icon-friendship::before,.icon.icon-friendship::before{content:"\ebc3"}.ekit-wid-con .fasicon.icon-gift::before,.ekit-wid-con .icon.icon-gift::before,.icon.icon-gift::before{content:"\ebc4"}.ekit-wid-con .fasicon.icon-graph-2::before,.ekit-wid-con .icon.icon-graph-2::before,.icon.icon-graph-2::before{content:"\ebc5"}.ekit-wid-con .fasicon.icon-graph::before,.ekit-wid-con .icon.icon-graph::before,.icon.icon-graph::before{content:"\ebc6"}.ekit-wid-con .fasicon.icon-hamburger-2::before,.ekit-wid-con .icon.icon-hamburger-2::before,.icon.icon-hamburger-2::before{content:"\ebc7"}.ekit-wid-con .fasicon.icon-handshake::before,.ekit-wid-con .icon.icon-handshake::before,.icon.icon-handshake::before{content:"\ebc8"}.ekit-wid-con .fasicon.icon-Helmet::before,.ekit-wid-con .icon.icon-Helmet::before,.icon.icon-Helmet::before{content:"\ebc9"}.ekit-wid-con .fasicon.icon-hot-Stone-2::before,.ekit-wid-con .icon.icon-hot-Stone-2::before,.icon.icon-hot-Stone-2::before{content:"\ebca"}.ekit-wid-con .fasicon.icon-hot-stone::before,.ekit-wid-con .icon.icon-hot-stone::before,.icon.icon-hot-stone::before{content:"\ebcb"}.ekit-wid-con .fasicon.icon-idea::before,.ekit-wid-con .icon.icon-idea::before,.icon.icon-idea::before{content:"\ebcc"}.ekit-wid-con .fasicon.icon-Leaf::before,.ekit-wid-con .icon.icon-Leaf::before,.icon.icon-Leaf::before{content:"\ebcd"}.ekit-wid-con .fasicon.icon-management::before,.ekit-wid-con .icon.icon-management::before,.icon.icon-management::before{content:"\ebce"}.ekit-wid-con .fasicon.icon-Massage-table::before,.ekit-wid-con .icon.icon-Massage-table::before,.icon.icon-Massage-table::before{content:"\ebcf"}.ekit-wid-con .fasicon.icon-Mechanic::before,.ekit-wid-con .icon.icon-Mechanic::before,.icon.icon-Mechanic::before{content:"\ebd0"}.ekit-wid-con .fasicon.icon-Money-2::before,.ekit-wid-con .icon.icon-Money-2::before,.icon.icon-Money-2::before{content:"\ebd2"}.ekit-wid-con .fasicon.icon-money-bag::before,.ekit-wid-con .icon.icon-money-bag::before,.icon.icon-money-bag::before{content:"\ebd3"}.ekit-wid-con .fasicon.icon-Money::before,.ekit-wid-con .icon.icon-Money::before,.icon.icon-Money::before{content:"\ebd4"}.ekit-wid-con .fasicon.icon-oil-bottle::before,.ekit-wid-con .icon.icon-oil-bottle::before,.icon.icon-oil-bottle::before{content:"\ebd5"}.ekit-wid-con .fasicon.icon-Physiotherapy::before,.ekit-wid-con .icon.icon-Physiotherapy::before,.icon.icon-Physiotherapy::before{content:"\ebd6"}.ekit-wid-con .fasicon.icon-Profile::before,.ekit-wid-con .icon.icon-Profile::before,.icon.icon-Profile::before{content:"\ebd7"}.ekit-wid-con .fasicon.icon-Rating::before,.ekit-wid-con .icon.icon-Rating::before,.icon.icon-Rating::before{content:"\ebd8"}.ekit-wid-con .fasicon.icon-right-mark::before,.ekit-wid-con .icon.icon-right-mark::before,.icon.icon-right-mark::before{content:"\ebd9"}.ekit-wid-con .fasicon.icon-rings::before,.ekit-wid-con .icon.icon-rings::before,.icon.icon-rings::before{content:"\ebda"}.ekit-wid-con .fasicon.icon-Safe-house::before,.ekit-wid-con .icon.icon-Safe-house::before,.icon.icon-Safe-house::before{content:"\ebdb"}.ekit-wid-con .fasicon.icon-Scan::before,.ekit-wid-con .icon.icon-Scan::before,.icon.icon-Scan::before{content:"\ebdc"}.ekit-wid-con .fasicon.icon-social-care::before,.ekit-wid-con .icon.icon-social-care::before,.icon.icon-social-care::before{content:"\ebdd"}.ekit-wid-con .fasicon.icon-Speed-Clock::before,.ekit-wid-con .icon.icon-Speed-Clock::before,.icon.icon-Speed-Clock::before{content:"\ebde"}.ekit-wid-con .fasicon.icon-stopwatch::before,.ekit-wid-con .icon.icon-stopwatch::before,.icon.icon-stopwatch::before{content:"\ebdf"}.ekit-wid-con .fasicon.icon-Support-2::before,.ekit-wid-con .icon.icon-Support-2::before,.icon.icon-Support-2::before{content:"\ebe0"}.ekit-wid-con .fasicon.icon-target-2::before,.ekit-wid-con .icon.icon-target-2::before,.icon.icon-target-2::before{content:"\ebe1"}.ekit-wid-con .fasicon.icon-Target::before,.ekit-wid-con .icon.icon-Target::before,.icon.icon-Target::before{content:"\ebe2"}.ekit-wid-con .fasicon.icon-tripod::before,.ekit-wid-con .icon.icon-tripod::before,.icon.icon-tripod::before{content:"\ebe3"}.ekit-wid-con .fasicon.icon-truck::before,.ekit-wid-con .icon.icon-truck::before,.icon.icon-truck::before{content:"\ebe4"}.ekit-wid-con .fasicon.icon-university::before,.ekit-wid-con .icon.icon-university::before,.icon.icon-university::before{content:"\ebe5"}.ekit-wid-con .fasicon.icon-User::before,.ekit-wid-con .icon.icon-User::before,.icon.icon-User::before{content:"\ebe6"}.ekit-wid-con .fasicon.icon-Web-Portals::before,.ekit-wid-con .icon.icon-Web-Portals::before,.icon.icon-Web-Portals::before{content:"\ebe7"}.ekit-wid-con .fasicon.icon-window::before,.ekit-wid-con .icon.icon-window::before,.icon.icon-window::before{content:"\ebe8"}.ekit-wid-con .fasicon.icon-ek_line_icon::before,.ekit-wid-con .icon.icon-ek_line_icon::before,.icon.icon-ek_line_icon::before{content:"\ebe9"}.ekit-wid-con .fasicon.icon-ek_stroke_icon::before,.ekit-wid-con .icon.icon-ek_stroke_icon::before,.icon.icon-ek_stroke_icon::before{content:"\eba1"}.ekit-wid-con .fasicon.icon-ekit::before,.ekit-wid-con .icon.icon-ekit::before,.icon.icon-ekit::before{content:"\e947"}.ekit-wid-con .fasicon.icon-elements-kit-logo::before,.ekit-wid-con .icon.icon-elements-kit-logo::before,.icon.icon-elements-kit-logo::before{content:"\e90d"}.ekit-wid-con .fasicon.icon-degree-image::before,.ekit-wid-con .icon.icon-degree-image::before,.icon.icon-degree-image::before{content:"\e900"}.ekit-wid-con .fasicon.icon-accordion::before,.ekit-wid-con .icon.icon-accordion::before,.icon.icon-accordion::before{content:"\e901"}.ekit-wid-con .fasicon.icon-animated-flip-box::before,.ekit-wid-con .icon.icon-animated-flip-box::before,.icon.icon-animated-flip-box::before{content:"\e902"}.ekit-wid-con .fasicon.icon-animated-text::before,.ekit-wid-con .icon.icon-animated-text::before,.icon.icon-animated-text::before{content:"\e903"}.ekit-wid-con .fasicon.icon-brands::before,.ekit-wid-con .icon.icon-brands::before,.icon.icon-brands::before{content:"\e904"}.ekit-wid-con .fasicon.icon-business-hour::before,.ekit-wid-con .icon.icon-business-hour::before,.icon.icon-business-hour::before{content:"\e905"}.ekit-wid-con .fasicon.icon-button::before,.ekit-wid-con .icon.icon-button::before,.icon.icon-button::before{content:"\e906"}.ekit-wid-con .fasicon.icon-carousel::before,.ekit-wid-con .icon.icon-carousel::before,.icon.icon-carousel::before{content:"\e907"}.ekit-wid-con .fasicon.icon-Circle-progress::before,.ekit-wid-con .icon.icon-Circle-progress::before,.icon.icon-Circle-progress::before{content:"\e908"}.ekit-wid-con .fasicon.icon-contact-form::before,.ekit-wid-con .icon.icon-contact-form::before,.icon.icon-contact-form::before{content:"\e909"}.ekit-wid-con .fasicon.icon-countdown-timer::before,.ekit-wid-con .icon.icon-countdown-timer::before,.icon.icon-countdown-timer::before{content:"\e90a"}.ekit-wid-con .fasicon.icon-dropbar::before,.ekit-wid-con .icon.icon-dropbar::before,.icon.icon-dropbar::before{content:"\e90c"}.ekit-wid-con .fasicon.icon-faq::before,.ekit-wid-con .icon.icon-faq::before,.icon.icon-faq::before{content:"\e90e"}.ekit-wid-con .fasicon.icon-full-width-scroll::before,.ekit-wid-con .icon.icon-full-width-scroll::before,.icon.icon-full-width-scroll::before{content:"\e90f"}.ekit-wid-con .fasicon.icon-google-map::before,.ekit-wid-con .icon.icon-google-map::before,.icon.icon-google-map::before{content:"\e910"}.ekit-wid-con .fasicon.icon-heading-style::before,.ekit-wid-con .icon.icon-heading-style::before,.icon.icon-heading-style::before{content:"\e911"}.ekit-wid-con .fasicon.icon-help-desk::before,.ekit-wid-con .icon.icon-help-desk::before,.icon.icon-help-desk::before{content:"\e912"}.ekit-wid-con .fasicon.icon-horizontal-timeline::before,.ekit-wid-con .icon.icon-horizontal-timeline::before,.icon.icon-horizontal-timeline::before{content:"\e913"}.ekit-wid-con .fasicon.icon-iframe::before,.ekit-wid-con .icon.icon-iframe::before,.icon.icon-iframe::before{content:"\e914"}.ekit-wid-con .fasicon.icon-image-comparison::before,.ekit-wid-con .icon.icon-image-comparison::before,.icon.icon-image-comparison::before{content:"\e915"}.ekit-wid-con .fasicon.icon-image-gallery::before,.ekit-wid-con .icon.icon-image-gallery::before,.icon.icon-image-gallery::before{content:"\e916"}.ekit-wid-con .fasicon.icon-image-justify::before,.ekit-wid-con .icon.icon-image-justify::before,.icon.icon-image-justify::before{content:"\e917"}.ekit-wid-con .fasicon.icon-image-magnifier::before,.ekit-wid-con .icon.icon-image-magnifier::before,.icon.icon-image-magnifier::before{content:"\e918"}.ekit-wid-con .fasicon.icon-image-masonry::before,.ekit-wid-con .icon.icon-image-masonry::before,.icon.icon-image-masonry::before{content:"\e919"}.ekit-wid-con .fasicon.icon-inline-svg::before,.ekit-wid-con .icon.icon-inline-svg::before,.icon.icon-inline-svg::before{content:"\e91a"}.ekit-wid-con .fasicon.icon-instagram::before,.ekit-wid-con .icon.icon-instagram::before,.icon.icon-instagram::before{content:"\e91b"}.ekit-wid-con .fasicon.icon-listing::before,.ekit-wid-con .icon.icon-listing::before,.icon.icon-listing::before{content:"\e91c"}.ekit-wid-con .fasicon.icon-music-player::before,.ekit-wid-con .icon.icon-music-player::before,.icon.icon-music-player::before{content:"\e91d"}.ekit-wid-con .fasicon.icon-news-ticker::before,.ekit-wid-con .icon.icon-news-ticker::before,.icon.icon-news-ticker::before{content:"\e91e"}.ekit-wid-con .fasicon.icon-off-canvus-menu::before,.ekit-wid-con .icon.icon-off-canvus-menu::before,.icon.icon-off-canvus-menu::before{content:"\e91f"}.ekit-wid-con .fasicon.icon-parallax::before,.ekit-wid-con .icon.icon-parallax::before,.icon.icon-parallax::before{content:"\e920"}.ekit-wid-con .fasicon.icon-portfolio::before,.ekit-wid-con .icon.icon-portfolio::before,.icon.icon-portfolio::before{content:"\e921"}.ekit-wid-con .fasicon.icon-post-banner::before,.ekit-wid-con .icon.icon-post-banner::before,.icon.icon-post-banner::before{content:"\e922"}.ekit-wid-con .fasicon.icon-post-carousel::before,.ekit-wid-con .icon.icon-post-carousel::before,.icon.icon-post-carousel::before{content:"\e923"}.ekit-wid-con .fasicon.icon-post-grid::before,.ekit-wid-con .icon.icon-post-grid::before,.icon.icon-post-grid::before{content:"\e924"}.ekit-wid-con .fasicon.icon-post-slider::before,.ekit-wid-con .icon.icon-post-slider::before,.icon.icon-post-slider::before{content:"\e925"}.ekit-wid-con .fasicon.icon-pricing-list::before,.ekit-wid-con .icon.icon-pricing-list::before,.icon.icon-pricing-list::before{content:"\e926"}.ekit-wid-con .fasicon.icon-pricing-table::before,.ekit-wid-con .icon.icon-pricing-table::before,.icon.icon-pricing-table::before{content:"\e927"}.ekit-wid-con .fasicon.icon-product-featured::before,.ekit-wid-con .icon.icon-product-featured::before,.icon.icon-product-featured::before{content:"\e928"}.ekit-wid-con .fasicon.icon-product-image::before,.ekit-wid-con .icon.icon-product-image::before,.icon.icon-product-image::before{content:"\e929"}.ekit-wid-con .fasicon.icon-product-recent::before,.ekit-wid-con .icon.icon-product-recent::before,.icon.icon-product-recent::before{content:"\e92a"}.ekit-wid-con .fasicon.icon-product-sale::before,.ekit-wid-con .icon.icon-product-sale::before,.icon.icon-product-sale::before{content:"\e92b"}.ekit-wid-con .fasicon.icon-product-top-rated::before,.ekit-wid-con .icon.icon-product-top-rated::before,.icon.icon-product-top-rated::before{content:"\e92c"}.ekit-wid-con .fasicon.icon-product-top-seller::before,.ekit-wid-con .icon.icon-product-top-seller::before,.icon.icon-product-top-seller::before{content:"\e92d"}.ekit-wid-con .fasicon.icon-progress-bar::before,.ekit-wid-con .icon.icon-progress-bar::before,.icon.icon-progress-bar::before{content:"\e92e"}.ekit-wid-con .fasicon.icon-protected-content-v2::before,.ekit-wid-con .icon.icon-protected-content-v2::before,.icon.icon-protected-content-v2::before{content:"\e92f"}.ekit-wid-con .fasicon.icon-protected-content-v3::before,.ekit-wid-con .icon.icon-protected-content-v3::before,.icon.icon-protected-content-v3::before{content:"\e930"}.ekit-wid-con .fasicon.icon-protected-content::before,.ekit-wid-con .icon.icon-protected-content::before,.icon.icon-protected-content::before{content:"\e931"}.ekit-wid-con .fasicon.icon-qr_code::before,.ekit-wid-con .icon.icon-qr_code::before,.icon.icon-qr_code::before{content:"\e932"}.ekit-wid-con .fasicon.icon-scroll-button::before,.ekit-wid-con .icon.icon-scroll-button::before,.icon.icon-scroll-button::before{content:"\e933"}.ekit-wid-con .fasicon.icon-search1::before,.ekit-wid-con .icon.icon-search1::before,.icon.icon-search1::before{content:"\e934"}.ekit-wid-con .fasicon.icon-service::before,.ekit-wid-con .icon.icon-service::before,.icon.icon-service::before{content:"\e935"}.ekit-wid-con .fasicon.icon-slider-image::before,.ekit-wid-con .icon.icon-slider-image::before,.icon.icon-slider-image::before{content:"\e936"}.ekit-wid-con .fasicon.icon-social-share::before,.ekit-wid-con .icon.icon-social-share::before,.icon.icon-social-share::before{content:"\e937"}.ekit-wid-con .fasicon.icon-subscribe::before,.ekit-wid-con .icon.icon-subscribe::before,.icon.icon-subscribe::before{content:"\e938"}.ekit-wid-con .fasicon.icon-tab::before,.ekit-wid-con .icon.icon-tab::before,.icon.icon-tab::before{content:"\e939"}.ekit-wid-con .fasicon.icon-table::before,.ekit-wid-con .icon.icon-table::before,.icon.icon-table::before{content:"\e93a"}.ekit-wid-con .fasicon.icon-team-join::before,.ekit-wid-con .icon.icon-team-join::before,.icon.icon-team-join::before{content:"\e93b"}.ekit-wid-con .fasicon.icon-team-member::before,.ekit-wid-con .icon.icon-team-member::before,.icon.icon-team-member::before{content:"\e93c"}.ekit-wid-con .fasicon.icon-testimonial-carousel::before,.ekit-wid-con .icon.icon-testimonial-carousel::before,.icon.icon-testimonial-carousel::before{content:"\e93d"}.ekit-wid-con .fasicon.icon-testimonial-grid::before,.ekit-wid-con .icon.icon-testimonial-grid::before,.icon.icon-testimonial-grid::before{content:"\e93e"}.ekit-wid-con .fasicon.icon-testimonial-quote::before,.ekit-wid-con .icon.icon-testimonial-quote::before,.icon.icon-testimonial-quote::before{content:"\e93f"}.ekit-wid-con .fasicon.icon-testimonial-slider::before,.ekit-wid-con .icon.icon-testimonial-slider::before,.icon.icon-testimonial-slider::before{content:"\e940"}.ekit-wid-con .fasicon.icon-toggle::before,.ekit-wid-con .icon.icon-toggle::before,.icon.icon-toggle::before{content:"\e941"}.ekit-wid-con .fasicon.icon-user-login::before,.ekit-wid-con .icon.icon-user-login::before,.icon.icon-user-login::before{content:"\e942"}.ekit-wid-con .fasicon.icon-user-registration::before,.ekit-wid-con .icon.icon-user-registration::before,.icon.icon-user-registration::before{content:"\e943"}.ekit-wid-con .fasicon.icon-vertical-timeline::before,.ekit-wid-con .icon.icon-vertical-timeline::before,.icon.icon-vertical-timeline::before{content:"\e944"}.ekit-wid-con .fasicon.icon-video-player::before,.ekit-wid-con .icon.icon-video-player::before,.icon.icon-video-player::before{content:"\e945"}.ekit-wid-con .fasicon.icon-weather::before,.ekit-wid-con .icon.icon-weather::before,.icon.icon-weather::before{content:"\e946"}.ekit-wid-con .fasicon.icon-image-hover-effect::before,.ekit-wid-con .icon.icon-image-hover-effect::before,.icon.icon-image-hover-effect::before{content:"\ebea"}.ekit-wid-con .fasicon.icon-audio-player::before,.ekit-wid-con .icon.icon-audio-player::before,.icon.icon-audio-player::before{content:"\ebeb"}.ekit-wid-con .fasicon.icon-category-list::before,.ekit-wid-con .icon.icon-category-list::before,.icon.icon-category-list::before{content:"\ebec"}.ekit-wid-con .fasicon.icon-fancy-heading::before,.ekit-wid-con .icon.icon-fancy-heading::before,.icon.icon-fancy-heading::before{content:"\ebed"}.ekit-wid-con .fasicon.icon-google-review::before,.ekit-wid-con .icon.icon-google-review::before,.icon.icon-google-review::before{content:"\ebee"}.ekit-wid-con .fasicon.icon-image-masking::before,.ekit-wid-con .icon.icon-image-masking::before,.icon.icon-image-masking::before{content:"\ebef"}.ekit-wid-con .fasicon.icon-image-morphing::before,.ekit-wid-con .icon.icon-image-morphing::before,.icon.icon-image-morphing::before{content:"\ebf0"}.ekit-wid-con .fasicon.icon-page-list::before,.ekit-wid-con .icon.icon-page-list::before,.icon.icon-page-list::before{content:"\ebf1"}.ekit-wid-con .fasicon.icon-post-list::before,.ekit-wid-con .icon.icon-post-list::before,.icon.icon-post-list::before{content:"\ebf2"}.ekit-wid-con .fasicon.icon-price-menu::before,.ekit-wid-con .icon.icon-price-menu::before,.icon.icon-price-menu::before{content:"\ebf3"}.ekit-wid-con .fasicon.icon-stylish-list::before,.ekit-wid-con .icon.icon-stylish-list::before,.icon.icon-stylish-list::before{content:"\ebf4"}.ekit-wid-con .fasicon.icon-advanced-tooltip::before,.ekit-wid-con .icon.icon-advanced-tooltip::before,.icon.icon-advanced-tooltip::before{content:"\ebf5"}.ekit-wid-con .fasicon.icon-avatar::before,.ekit-wid-con .icon.icon-avatar::before,.icon.icon-avatar::before{content:"\ebf6"}.ekit-wid-con .fasicon.icon-content-ticker::before,.ekit-wid-con .icon.icon-content-ticker::before,.icon.icon-content-ticker::before{content:"\ebf7"}.ekit-wid-con .fasicon.icon-coupon-code::before,.ekit-wid-con .icon.icon-coupon-code::before,.icon.icon-coupon-code::before{content:"\ebf8"}.ekit-wid-con .fasicon.icon-flip-box::before,.ekit-wid-con .icon.icon-flip-box::before,.icon.icon-flip-box::before{content:"\ebf9"}.ekit-wid-con .fasicon.icon-next-dark::before,.ekit-wid-con .icon.icon-next-dark::before,.icon.icon-next-dark::before{content:"\ebfa"}.ekit-wid-con .fasicon.icon-onepage-scroll::before,.ekit-wid-con .icon.icon-onepage-scroll::before,.icon.icon-onepage-scroll::before{content:"\ebfb"}.ekit-wid-con .fasicon.icon-pause-dark::before,.ekit-wid-con .icon.icon-pause-dark::before,.icon.icon-pause-dark::before{content:"\ebfc"}.ekit-wid-con .fasicon.icon-previous-dark::before,.ekit-wid-con .icon.icon-previous-dark::before,.icon.icon-previous-dark::before{content:"\ebfd"}.ekit-wid-con .fasicon.icon-team-carousel-slider::before,.ekit-wid-con .icon.icon-team-carousel-slider::before,.icon.icon-team-carousel-slider::before{content:"\ebfe"}.ekit-wid-con .fasicon.icon-volume-cross::before,.ekit-wid-con .icon.icon-volume-cross::before,.icon.icon-volume-cross::before{content:"\ebff"}.ekit-wid-con .fasicon.icon-volume-dark::before,.ekit-wid-con .icon.icon-volume-dark::before,.icon.icon-volume-dark::before{content:"\ec00"}.ekit-wid-con .fasicon.icon-volume-high-dark::before,.ekit-wid-con .icon.icon-volume-high-dark::before,.icon.icon-volume-high-dark::before{content:"\ec01"}.ekit-wid-con .fasicon.icon-volume-low-dark::before,.ekit-wid-con .icon.icon-volume-low-dark::before,.icon.icon-volume-low-dark::before{content:"\ec02"}.ekit-wid-con .fasicon.icon-volume-mute::before,.ekit-wid-con .icon.icon-volume-mute::before,.icon.icon-volume-mute::before{content:"\ec03"}.ekit-wid-con .fasicon.icon-youtube-feed::before,.ekit-wid-con .icon.icon-youtube-feed::before,.icon.icon-youtube-feed::before{content:"\ec04"}.ekit-wid-con .fasicon.icon-interactive-link::before,.ekit-wid-con .icon.icon-interactive-link::before,.icon.icon-interactive-link::before{content:"\ec05"}@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 100;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.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: 'Cabin';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onhhxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onghxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onuhxg.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: 'Cabin';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onhhxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onghxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onuhxg.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: 'Cabin';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onhhxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onghxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onuhxg.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: 'Cabin';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onhhxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onghxi-ag.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: 'Cabin';
font-style: italic;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4g0qwljrw-pd815fnqc8t_wafcx-c37onuhxg.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: 'Cabin';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvptnsbxw.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: 'Cabin';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvp9nsbxw.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: 'Cabin';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvqdns.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: 'Cabin';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvptnsbxw.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: 'Cabin';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvp9nsbxw.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: 'Cabin';
font-style: normal;
font-weight: 500;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvqdns.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: 'Cabin';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvptnsbxw.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: 'Cabin';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvp9nsbxw.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: 'Cabin';
font-style: normal;
font-weight: 600;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvqdns.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: 'Cabin';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvptnsbxw.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: 'Cabin';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvp9nsbxw.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: 'Cabin';
font-style: normal;
font-weight: 700;
font-stretch: 100%;
font-display: swap;
src: url(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/cabin-u-4i0qwljrw-pfu81xckcpdpbgzjl6xvqdns.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.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(https://mezratech.com/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.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: 'Masicon';
src: url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.eot);
src: url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.eot) format('embedded-opentype'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.woff2) format('woff2'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.woff) format('woff'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.ttf) format('truetype'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.svg) format('svg');
font-weight: normal;
font-style: normal;
} .mas {
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: 700;
font-family: 'Masicon';
color: inherit;
flex-shrink: 0;
speak: none;
text-transform: none; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}  .mas-sm {
font-size: 0.8em;
}
.mas-lg {
font-size: 1.2em;
} .mas-16 {
font-size: 16px;
}
.mas-32 {
font-size: 32px;
} .mas-is-spinning {
animation: mas-spin 1s infinite linear;
}
@keyframes mas-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .mas-rotate-90 {
transform: rotate(90deg);
}
.mas-rotate-180 {
transform: rotate(180deg);
}
.mas-rotate-270 {
transform: rotate(270deg);
}
.mas-flip-y {
transform: scaleY(-1);
}
.mas-flip-x {
transform: scaleX(-1);
} .mas-cloud-download-95::before {
content: "\ea02";
}
.mas-home-minimal::before {
content: "\ea03";
}
.mas-single-04::before {
content: "\ea04";
}
.mas-users-mm::before {
content: "\ea05";
}
.mas-webpage::before {
content: "\ea06";
}
.mas-layout-25::before {
content: "\ea07";
}
.mas-analytics::before {
content: "\ea08";
}
.mas-chart-pie-36::before {
content: "\ea09";
}
.mas-chart-bar-33::before {
content: "\ea0a";
}
.mas-single-copy-06::before {
content: "\ea0b";
}
.mas-home::before {
content: "\ea0c";
}
.mas-single-content-03::before {
content: "\ea0d";
}
.mas-bell-53::before {
content: "\ea0e";
}
.mas-email-84::before {
content: "\ea0f";
}
.mas-send::before {
content: "\ea10";
}
.mas-at-sign::before {
content: "\ea11";
}
.mas-edit-72::before {
content: "\ea13";
}
.mas-tail-right::before {
content: "\ea14";
}
.mas-minimal-right::before {
content: "\ea15";
}
.mas-tail-left::before {
content: "\ea16";
}
.mas-minimal-left::before {
content: "\ea17";
}
.mas-tail-up::before {
content: "\ea18";
}
.mas-minimal-up::before {
content: "\ea19";
}
.mas-minimal-down::before {
content: "\ea1a";
}
.mas-tail-down::before {
content: "\ea1b";
}
.mas-settings-gear-64::before {
content: "\ea1c";
}
.mas-settings::before {
content: "\ea1d";
}
.mas-menu-dots::before {
content: "\ea1e";
}
.mas-funnel-40::before {
content: "\ea20";
}
.mas-filter::before {
content: "\ea21";
}
.mas-preferences-circle::before {
content: "\ea22";
}
.mas-check-2::before {
content: "\ea23";
}
.mas-cart-simple::before {
content: "\ea24";
}
.mas-cart-9::before {
content: "\ea25";
}
.mas-card-update::before {
content: "\ea26";
}
.mas-basket::before {
content: "\ea27";
}
.mas-check-circle-07::before {
content: "\ea28";
}
.mas-simple-remove::before {
content: "\ea29";
}
.mas-circle-remove::before {
content: "\ea2a";
}
.mas-alert-circle-exc::before {
content: "\ea2b";
}
.mas-bug::before {
content: "\ea2c";
}
.mas-share-66::before {
content: "\ea2d";
}
.mas-time::before {
content: "\ea2f";
}
.mas-coffee::before {
content: "\ea30";
}
.mas-smile::before {
content: "\ea31";
}
.mas-sad::before {
content: "\ea32";
}
.mas-broken-heart::before {
content: "\ea33";
}
.mas-pin-3::before {
content: "\ea35";
}
.mas-marker-3::before {
content: "\ea36";
}
.mas-globe-2::before {
content: "\ea37";
}
.mas-world-2::before {
content: "\ea38";
}
.mas-phone-2::before {
content: "\ea39";
}
.mas-check-square-11::before {
content: "\ea3a";
}
.mas-wallet-90::before {
content: "\ea3b";
}
.mas-credit-card::before {
content: "\ea3c";
}
.mas-payment::before {
content: "\ea3d";
}
.mas-tag::before {
content: "\ea3e";
}
.mas-tag-cut::before {
content: "\ea3f";
}
.mas-tag-content::before {
content: "\ea40";
}
.mas-flag-diagonal-33::before {
content: "\ea41";
}
.mas-triangle-right-17::before {
content: "\ea47";
}
.mas-puzzle-10::before {
content: "\ea48";
}
.mas-triangle-right-17-2::before {
content: "\ea49";
}
.mas-btn-play::before {
content: "\ea4a";
}
.mas-btn-play-2::before {
content: "\ea4b";
}
.mas-menu-34::before {
content: "\ea4c";
}
.mas-menu-left-2::before {
content: "\ea4d";
}
.mas-heart-2-2::before {
content: "\ea4e";
}
.mas-l-settings::before {
content: "\ea51";
}
.mas-book-open-2::before {
content: "\ea52";
}
.mas-layers-3::before {
content: "\ea53";
}
.mas-google::before {
content: "\ea57";
}
.mas-logo-pinterest::before {
content: "\ea58";
}
.mas-logo-dribbble::before {
content: "\ea5a";
}
.mas-tablet-mobile::before {
content: "\ea5b";
}
.mas-house-search-engine::before {
content: "\ea5c";
}
.mas-house-pricing::before {
content: "\ea5d";
}
.mas-pulse-chart::before {
content: "\ea5e";
}
.mas-plug::before {
content: "\ea5f";
}
.mas-app-store::before {
content: "\ea60";
}
.mas-power-level::before {
content: "\ea61";
}
.mas-window-add::before {
content: "\ea62";
}
.mas-form::before {
content: "\ea63";
}
.mas-folder-15::before {
content: "\ea64";
}
.mas-lock::before {
content: "\ea65";
}
.mas-unlocked::before {
content: "\ea66";
}
.mas-e-reader::before {
content: "\ea67";
}
.mas-layout-grid::before {
content: "\ea68";
}
.mas-single-copies::before {
content: "\ea69";
}
.mas-bag::before {
content: "\ea6a";
}
.mas-shield::before {
content: "\ea6b";
}
.mas-security::before {
content: "\ea6c";
}
.mas-system-update::before {
content: "\ea6d";
}
.mas-privacy::before {
content: "\ea6e";
}
.mas-translation::before {
content: "\ea6f";
}
.mas-credit-locked::before {
content: "\ea70";
}
.mas-apartment::before {
content: "\ea71";
}
.mas-eye-17::before {
content: "\ea72";
}
.mas-bookmark-2::before {
content: "\ea73";
}
.mas-pantone::before {
content: "\ea74";
}
.mas-trash-simple::before {
content: "\ea75";
}
.mas-phone-call-end::before {
content: "\ea76";
}
.mas-phone-call::before {
content: "\ea77";
}
.mas-call-doctor::before {
content: "\ea78";
}
.mas-swap-vertical::before {
content: "\ea79";
}
.mas-swap-horizontal::before {
content: "\ea7a";
}
.mas-simple-add::before {
content: "\ea7b";
}
.mas-reload::before {
content: "\ea7c";
}
.mas-loop-83::before {
content: "\ea7d";
}
.mas-c-question::before {
content: "\ea7e";
}
.mas-alert::before {
content: "\ea7f";
}
.mas-cloud-download-93::before {
content: "\ea80";
}
.mas-migration::before {
content: "\ea81";
}
.mas-cloud-upload-96::before {
content: "\ea82";
}
.mas-archive::before {
content: "\ea83";
}
.mas-archive-content::before {
content: "\ea84";
}
.mas-calendar-60::before {
content: "\ea85";
}
.mas-opening-times::before {
content: "\ea86";
}
.mas-calendar-check-62::before {
content: "\ea87";
}
.mas-camera::before {
content: "\ea88";
}
.mas-ungroup::before {
content: "\ea89";
}
.mas-share-2::before {
content: "\ea8a";
}
.mas-world::before {
content: "\ea8b";
}
.mas-sound::before {
content: "\ea8c";
}
.mas-volume-mute::before {
content: "\ea8d";
}
.mas-sound-wave::before {
content: "\ea8e";
}
.mas-preferences-circle-rotate::before {
content: "\ea8f";
}
.mas-link-72::before {
content: "\ea90";
}
.mas-link-broken-70::before {
content: "\ea91";
}
.mas-link-69::before {
content: "\ea92";
}
.mas-newsletter::before {
content: "\ea93";
}
.mas-trend-up::before {
content: "\ea94";
}
.mas-trend-down::before {
content: "\ea95";
}
.mas-c-info::before {
content: "\ea96";
}
.mas-shape-arrow::before {
content: "\ea97";
}
.mas-circle-simple-up::before {
content: "\ea98";
}
.mas-circle-simple-right::before {
content: "\ea99";
}
.mas-circle-simple-left::before {
content: "\ea9a";
}
.mas-circle-simple-down::before {
content: "\ea9b";
}
.mas-check-circle-08::before {
content: "\ea9c";
}
.mas-circle-add::before {
content: "\ea9d";
}
.mas-zoom-in::before {
content: "\ea9e";
}
.mas-zoom-out::before {
content: "\ea9f";
}
.mas-zoom-2::before {
content: "\eaa0";
}
.mas-a-star::before {
content: "\eaa1";
}
.mas-a-security::before {
content: "\eaa2";
}
.mas-a-add::before {
content: "\eaa3";
}
.mas-data-download::before {
content: "\eaa4";
}
.mas-data-upload::before {
content: "\eaa5";
}
.mas-attach-87-1::before {
content: "\eaa6";
}
.mas-print::before {
content: "\eaa7";
}
.mas-round-dollar::before {
content: "\eaa8";
}
.mas-currency-dollar::before {
content: "\eaa9";
}
.mas-select-84::before {
content: "\eaaa";
}
.mas-chat-round-content::before {
content: "\eaab";
}
.mas-chat-round::before {
content: "\eaac";
}
.mas-chat-33::before {
content: "\eaad";
}
.mas-chat-content::before {
content: "\eaae";
}
.mas-sun::before {
content: "\eaaf";
}
.mas-moon::before {
content: "\eab0";
}
.mas-code::before {
content: "\eab1";
}
.mas-lightning::before {
content: "\eab2";
}
.mas-camera-flash::before {
content: "\eab3";
}
.mas-edit-brightness::before {
content: "\eab4";
}
.mas-a-remove::before {
content: "\eab5";
}
.mas-a-delete::before {
content: "\eab6";
}
.mas-dock-top::before {
content: "\eab7";
}
.mas-board-2::before {
content: "\eab8";
}
.mas-corner-left-round::before {
content: "\eab9";
}
.mas-bulb-63::before {
content: "\eaba";
}
.mas-document::before {
content: "\eabb";
}
.mas-chart-growth::before {
content: "\eabd";
}
.mas-logout::before {
content: "\eabe";
}
.mas-key-26::before {
content: "\eabf";
}
.mas-bag-09::before {
content: "\eac0";
}
.mas-basket-simple::before {
content: "\eac1";
}
.mas-basket-simple-add::before {
content: "\eac2";
}
.mas-cursor-48::before {
content: "\eac3";
}
.mas-microphone::before {
content: "\eac4";
}
.mas-notification-69::before {
content: "\eac5";
}
.mas-pc::before {
content: "\eac6";
}
.mas-phone-camera-front::before {
content: "\eac7";
}
.mas-p-check::before {
content: "\eac8";
}
.mas-e-reader-1::before {
content: "\eac9";
}
.mas-microsoft::before {
content: "\eaca";
}
.mas-layout-11::before {
content: "\eacb";
}
.mas-row-table::before {
content: "\eacc";
}
.mas-shape-star::before {
content: "\eacd";
}
.mas-star::before {
content: "\eacf";
}
.mas-js-console::before {
content: "\ead0";
}
.mas-folder-chart-bar::before {
content: "\ead1";
}
.mas-chart-bars::before {
content: "\ead2";
}
.mas-chart-bar-32::before {
content: "\ead3";
}
.mas-menu-right::before {
content: "\ead4";
}
.mas-diag-top-left::before {
content: "\ead5";
}
.mas-gps::before {
content: "\ead6";
}
.mas-double-right::before {
content: "\ead7";
}
.mas-double-left::before {
content: "\ead8";
}
.mas-energy::before {
content: "\ead9";
}
.mas-flame::before {
content: "\eada";
}
.mas-like-2::before {
content: "\eadb";
}
.mas-thumb-down::before {
content: "\eadc";
}
.mas-tool-hand::before {
content: "\eadd";
}
.mas-screen-touch::before {
content: "\eade";
}
.mas-stretch::before {
content: "\eadf";
}
.mas-pinch::before {
content: "\eae0";
}
.mas-move-05::before {
content: "\eae1";
}
.mas-upload-data::before {
content: "\eae2";
}
.mas-music-note::before {
content: "\eae3";
}
.mas-spaceship::before {
content: "\eae4";
}
.mas-send-2::before {
content: "\eae5";
}
.mas-send-1::before {
content: "\eae6";
}
.mas-wifi::before {
content: "\eae7";
}
.mas-server-rack::before {
content: "\eae8";
}
.mas-dresser-3::before {
content: "\eae9";
}
.mas-cloud-25::before {
content: "\eaea";
}
.mas-database::before {
content: "\eaeb";
}
.mas-file-archive::before {
content: "\eaec";
}
.mas-file-download-3::before {
content: "\eaed";
}
.mas-drawer::before {
content: "\eaee";
}
.mas-block::before {
content: "\eaef";
}
.mas-calculator::before {
content: "\eaf0";
}
.mas-wand-11::before {
content: "\eaf1";
}
.mas-cupcake::before {
content: "\eaf2";
}
.mas-muffin::before {
content: "\eaf3";
}
.mas-popcorn::before {
content: "\eaf4";
}
.mas-video::before {
content: "\eaf5";
}
.mas-shuffle-98::before {
content: "\eaf6";
}
.mas-bill::before {
content: "\eaf7";
}
.mas-receipt-list-43::before {
content: "\eaf8";
}
.mas-signal-2::before {
content: "\eaf9";
}
.mas-book::before {
content: "\eafa";
}
.mas-agenda-bookmark::before {
content: "\eafb";
}
.mas-books::before {
content: "\eafc";
}
.mas-book-open-2-1::before {
content: "\eafd";
}
.mas-pencil-47::before {
content: "\eafe";
}
.mas-chef-hat::before {
content: "\eaff";
}
.mas-simple-delete::before {
content: "\eb00";
}
.mas-logo-linkedin::before {
content: "\eb01";
}
.mas-logo-facebook::before {
content: "\eb02";
}
.mas-logo-fb-simple-1::before {
content: "\eb03";
}
.mas-logo-twitter-1::before {
content: "\eb04";
}
.mas-logo-instagram-1::before {
content: "\eb05";
}
.mas-logo-pinterest-1::before {
content: "\eb06";
}
.mas-box-3d-50::before {
content: "\eb07";
}
.mas-delivery::before {
content: "\eb08";
}
.mas-h-dashboard::before {
content: "\eb09";
}
.mas-power-level-1::before {
content: "\eb0a";
}
.mas-time-3-1::before {
content: "\eb0b";
}
.mas-hourglass::before {
content: "\eb0c";
}
.mas-biochemistry::before {
content: "\eb0d";
}
.mas-cpu::before {
content: "\eb0e";
}
.mas-ai::before {
content: "\eb0f";
}
.mas-app-store-1::before {
content: "\eb10";
}
.mas-questionnaire::before {
content: "\eb11";
}
.mas-bicep::before {
content: "\eb12";
}
.mas-expand::before {
content: "\eb13";
}
.mas-transform-2d::before {
content: "\eb14";
}
.mas-maximize::before {
content: "\eb15";
}
.mas-window-maximize::before {
content: "\eb16";
}
.mas-floor::before {
content: "\eb17";
}
.mas-floors::before {
content: "\eb18";
}
.mas-water-surface::before {
content: "\eb19";
}
.mas-wallet-43::before {
content: "\eb1a";
}
.mas-analytics-88::before {
content: "\eb1b";
}
.mas-favourite-add-32::before {
content: "\eb1c";
}
.mas-survey::before {
content: "\eb1d";
}
.mas-face-recognition::before {
content: "\eb1e";
}@font-face {
font-family: 'Masicon';
src: url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.eot);
src: url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.eot) format('embedded-opentype'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.woff2) format('woff2'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.woff) format('woff'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.ttf) format('truetype'), url(//mezratech.com/wp-content/plugins/mas-addons/assets//fonts/fd.svg) format('svg');
font-weight: normal;
font-style: normal;
} .mas {
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: 700;
font-family: 'Masicon';
color: inherit;
flex-shrink: 0;
speak: none;
text-transform: none; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}  .mas-sm {
font-size: 0.8em;
}
.mas-lg {
font-size: 1.2em;
} .mas-16 {
font-size: 16px;
}
.mas-32 {
font-size: 32px;
} .mas-is-spinning {
animation: mas-spin 1s infinite linear;
}
@keyframes mas-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .mas-rotate-90 {
transform: rotate(90deg);
}
.mas-rotate-180 {
transform: rotate(180deg);
}
.mas-rotate-270 {
transform: rotate(270deg);
}
.mas-flip-y {
transform: scaleY(-1);
}
.mas-flip-x {
transform: scaleX(-1);
} .mas-cloud-download-95::before {
content: "\ea02";
}
.mas-home-minimal::before {
content: "\ea03";
}
.mas-single-04::before {
content: "\ea04";
}
.mas-users-mm::before {
content: "\ea05";
}
.mas-webpage::before {
content: "\ea06";
}
.mas-layout-25::before {
content: "\ea07";
}
.mas-analytics::before {
content: "\ea08";
}
.mas-chart-pie-36::before {
content: "\ea09";
}
.mas-chart-bar-33::before {
content: "\ea0a";
}
.mas-single-copy-06::before {
content: "\ea0b";
}
.mas-home::before {
content: "\ea0c";
}
.mas-single-content-03::before {
content: "\ea0d";
}
.mas-bell-53::before {
content: "\ea0e";
}
.mas-email-84::before {
content: "\ea0f";
}
.mas-send::before {
content: "\ea10";
}
.mas-at-sign::before {
content: "\ea11";
}
.mas-edit-72::before {
content: "\ea13";
}
.mas-tail-right::before {
content: "\ea14";
}
.mas-minimal-right::before {
content: "\ea15";
}
.mas-tail-left::before {
content: "\ea16";
}
.mas-minimal-left::before {
content: "\ea17";
}
.mas-tail-up::before {
content: "\ea18";
}
.mas-minimal-up::before {
content: "\ea19";
}
.mas-minimal-down::before {
content: "\ea1a";
}
.mas-tail-down::before {
content: "\ea1b";
}
.mas-settings-gear-64::before {
content: "\ea1c";
}
.mas-settings::before {
content: "\ea1d";
}
.mas-menu-dots::before {
content: "\ea1e";
}
.mas-funnel-40::before {
content: "\ea20";
}
.mas-filter::before {
content: "\ea21";
}
.mas-preferences-circle::before {
content: "\ea22";
}
.mas-check-2::before {
content: "\ea23";
}
.mas-cart-simple::before {
content: "\ea24";
}
.mas-cart-9::before {
content: "\ea25";
}
.mas-card-update::before {
content: "\ea26";
}
.mas-basket::before {
content: "\ea27";
}
.mas-check-circle-07::before {
content: "\ea28";
}
.mas-simple-remove::before {
content: "\ea29";
}
.mas-circle-remove::before {
content: "\ea2a";
}
.mas-alert-circle-exc::before {
content: "\ea2b";
}
.mas-bug::before {
content: "\ea2c";
}
.mas-share-66::before {
content: "\ea2d";
}
.mas-time::before {
content: "\ea2f";
}
.mas-coffee::before {
content: "\ea30";
}
.mas-smile::before {
content: "\ea31";
}
.mas-sad::before {
content: "\ea32";
}
.mas-broken-heart::before {
content: "\ea33";
}
.mas-pin-3::before {
content: "\ea35";
}
.mas-marker-3::before {
content: "\ea36";
}
.mas-globe-2::before {
content: "\ea37";
}
.mas-world-2::before {
content: "\ea38";
}
.mas-phone-2::before {
content: "\ea39";
}
.mas-check-square-11::before {
content: "\ea3a";
}
.mas-wallet-90::before {
content: "\ea3b";
}
.mas-credit-card::before {
content: "\ea3c";
}
.mas-payment::before {
content: "\ea3d";
}
.mas-tag::before {
content: "\ea3e";
}
.mas-tag-cut::before {
content: "\ea3f";
}
.mas-tag-content::before {
content: "\ea40";
}
.mas-flag-diagonal-33::before {
content: "\ea41";
}
.mas-triangle-right-17::before {
content: "\ea47";
}
.mas-puzzle-10::before {
content: "\ea48";
}
.mas-triangle-right-17-2::before {
content: "\ea49";
}
.mas-btn-play::before {
content: "\ea4a";
}
.mas-btn-play-2::before {
content: "\ea4b";
}
.mas-menu-34::before {
content: "\ea4c";
}
.mas-menu-left-2::before {
content: "\ea4d";
}
.mas-heart-2-2::before {
content: "\ea4e";
}
.mas-l-settings::before {
content: "\ea51";
}
.mas-book-open-2::before {
content: "\ea52";
}
.mas-layers-3::before {
content: "\ea53";
}
.mas-google::before {
content: "\ea57";
}
.mas-logo-pinterest::before {
content: "\ea58";
}
.mas-logo-dribbble::before {
content: "\ea5a";
}
.mas-tablet-mobile::before {
content: "\ea5b";
}
.mas-house-search-engine::before {
content: "\ea5c";
}
.mas-house-pricing::before {
content: "\ea5d";
}
.mas-pulse-chart::before {
content: "\ea5e";
}
.mas-plug::before {
content: "\ea5f";
}
.mas-app-store::before {
content: "\ea60";
}
.mas-power-level::before {
content: "\ea61";
}
.mas-window-add::before {
content: "\ea62";
}
.mas-form::before {
content: "\ea63";
}
.mas-folder-15::before {
content: "\ea64";
}
.mas-lock::before {
content: "\ea65";
}
.mas-unlocked::before {
content: "\ea66";
}
.mas-e-reader::before {
content: "\ea67";
}
.mas-layout-grid::before {
content: "\ea68";
}
.mas-single-copies::before {
content: "\ea69";
}
.mas-bag::before {
content: "\ea6a";
}
.mas-shield::before {
content: "\ea6b";
}
.mas-security::before {
content: "\ea6c";
}
.mas-system-update::before {
content: "\ea6d";
}
.mas-privacy::before {
content: "\ea6e";
}
.mas-translation::before {
content: "\ea6f";
}
.mas-credit-locked::before {
content: "\ea70";
}
.mas-apartment::before {
content: "\ea71";
}
.mas-eye-17::before {
content: "\ea72";
}
.mas-bookmark-2::before {
content: "\ea73";
}
.mas-pantone::before {
content: "\ea74";
}
.mas-trash-simple::before {
content: "\ea75";
}
.mas-phone-call-end::before {
content: "\ea76";
}
.mas-phone-call::before {
content: "\ea77";
}
.mas-call-doctor::before {
content: "\ea78";
}
.mas-swap-vertical::before {
content: "\ea79";
}
.mas-swap-horizontal::before {
content: "\ea7a";
}
.mas-simple-add::before {
content: "\ea7b";
}
.mas-reload::before {
content: "\ea7c";
}
.mas-loop-83::before {
content: "\ea7d";
}
.mas-c-question::before {
content: "\ea7e";
}
.mas-alert::before {
content: "\ea7f";
}
.mas-cloud-download-93::before {
content: "\ea80";
}
.mas-migration::before {
content: "\ea81";
}
.mas-cloud-upload-96::before {
content: "\ea82";
}
.mas-archive::before {
content: "\ea83";
}
.mas-archive-content::before {
content: "\ea84";
}
.mas-calendar-60::before {
content: "\ea85";
}
.mas-opening-times::before {
content: "\ea86";
}
.mas-calendar-check-62::before {
content: "\ea87";
}
.mas-camera::before {
content: "\ea88";
}
.mas-ungroup::before {
content: "\ea89";
}
.mas-share-2::before {
content: "\ea8a";
}
.mas-world::before {
content: "\ea8b";
}
.mas-sound::before {
content: "\ea8c";
}
.mas-volume-mute::before {
content: "\ea8d";
}
.mas-sound-wave::before {
content: "\ea8e";
}
.mas-preferences-circle-rotate::before {
content: "\ea8f";
}
.mas-link-72::before {
content: "\ea90";
}
.mas-link-broken-70::before {
content: "\ea91";
}
.mas-link-69::before {
content: "\ea92";
}
.mas-newsletter::before {
content: "\ea93";
}
.mas-trend-up::before {
content: "\ea94";
}
.mas-trend-down::before {
content: "\ea95";
}
.mas-c-info::before {
content: "\ea96";
}
.mas-shape-arrow::before {
content: "\ea97";
}
.mas-circle-simple-up::before {
content: "\ea98";
}
.mas-circle-simple-right::before {
content: "\ea99";
}
.mas-circle-simple-left::before {
content: "\ea9a";
}
.mas-circle-simple-down::before {
content: "\ea9b";
}
.mas-check-circle-08::before {
content: "\ea9c";
}
.mas-circle-add::before {
content: "\ea9d";
}
.mas-zoom-in::before {
content: "\ea9e";
}
.mas-zoom-out::before {
content: "\ea9f";
}
.mas-zoom-2::before {
content: "\eaa0";
}
.mas-a-star::before {
content: "\eaa1";
}
.mas-a-security::before {
content: "\eaa2";
}
.mas-a-add::before {
content: "\eaa3";
}
.mas-data-download::before {
content: "\eaa4";
}
.mas-data-upload::before {
content: "\eaa5";
}
.mas-attach-87-1::before {
content: "\eaa6";
}
.mas-print::before {
content: "\eaa7";
}
.mas-round-dollar::before {
content: "\eaa8";
}
.mas-currency-dollar::before {
content: "\eaa9";
}
.mas-select-84::before {
content: "\eaaa";
}
.mas-chat-round-content::before {
content: "\eaab";
}
.mas-chat-round::before {
content: "\eaac";
}
.mas-chat-33::before {
content: "\eaad";
}
.mas-chat-content::before {
content: "\eaae";
}
.mas-sun::before {
content: "\eaaf";
}
.mas-moon::before {
content: "\eab0";
}
.mas-code::before {
content: "\eab1";
}
.mas-lightning::before {
content: "\eab2";
}
.mas-camera-flash::before {
content: "\eab3";
}
.mas-edit-brightness::before {
content: "\eab4";
}
.mas-a-remove::before {
content: "\eab5";
}
.mas-a-delete::before {
content: "\eab6";
}
.mas-dock-top::before {
content: "\eab7";
}
.mas-board-2::before {
content: "\eab8";
}
.mas-corner-left-round::before {
content: "\eab9";
}
.mas-bulb-63::before {
content: "\eaba";
}
.mas-document::before {
content: "\eabb";
}
.mas-chart-growth::before {
content: "\eabd";
}
.mas-logout::before {
content: "\eabe";
}
.mas-key-26::before {
content: "\eabf";
}
.mas-bag-09::before {
content: "\eac0";
}
.mas-basket-simple::before {
content: "\eac1";
}
.mas-basket-simple-add::before {
content: "\eac2";
}
.mas-cursor-48::before {
content: "\eac3";
}
.mas-microphone::before {
content: "\eac4";
}
.mas-notification-69::before {
content: "\eac5";
}
.mas-pc::before {
content: "\eac6";
}
.mas-phone-camera-front::before {
content: "\eac7";
}
.mas-p-check::before {
content: "\eac8";
}
.mas-e-reader-1::before {
content: "\eac9";
}
.mas-microsoft::before {
content: "\eaca";
}
.mas-layout-11::before {
content: "\eacb";
}
.mas-row-table::before {
content: "\eacc";
}
.mas-shape-star::before {
content: "\eacd";
}
.mas-star::before {
content: "\eacf";
}
.mas-js-console::before {
content: "\ead0";
}
.mas-folder-chart-bar::before {
content: "\ead1";
}
.mas-chart-bars::before {
content: "\ead2";
}
.mas-chart-bar-32::before {
content: "\ead3";
}
.mas-menu-right::before {
content: "\ead4";
}
.mas-diag-top-left::before {
content: "\ead5";
}
.mas-gps::before {
content: "\ead6";
}
.mas-double-right::before {
content: "\ead7";
}
.mas-double-left::before {
content: "\ead8";
}
.mas-energy::before {
content: "\ead9";
}
.mas-flame::before {
content: "\eada";
}
.mas-like-2::before {
content: "\eadb";
}
.mas-thumb-down::before {
content: "\eadc";
}
.mas-tool-hand::before {
content: "\eadd";
}
.mas-screen-touch::before {
content: "\eade";
}
.mas-stretch::before {
content: "\eadf";
}
.mas-pinch::before {
content: "\eae0";
}
.mas-move-05::before {
content: "\eae1";
}
.mas-upload-data::before {
content: "\eae2";
}
.mas-music-note::before {
content: "\eae3";
}
.mas-spaceship::before {
content: "\eae4";
}
.mas-send-2::before {
content: "\eae5";
}
.mas-send-1::before {
content: "\eae6";
}
.mas-wifi::before {
content: "\eae7";
}
.mas-server-rack::before {
content: "\eae8";
}
.mas-dresser-3::before {
content: "\eae9";
}
.mas-cloud-25::before {
content: "\eaea";
}
.mas-database::before {
content: "\eaeb";
}
.mas-file-archive::before {
content: "\eaec";
}
.mas-file-download-3::before {
content: "\eaed";
}
.mas-drawer::before {
content: "\eaee";
}
.mas-block::before {
content: "\eaef";
}
.mas-calculator::before {
content: "\eaf0";
}
.mas-wand-11::before {
content: "\eaf1";
}
.mas-cupcake::before {
content: "\eaf2";
}
.mas-muffin::before {
content: "\eaf3";
}
.mas-popcorn::before {
content: "\eaf4";
}
.mas-video::before {
content: "\eaf5";
}
.mas-shuffle-98::before {
content: "\eaf6";
}
.mas-bill::before {
content: "\eaf7";
}
.mas-receipt-list-43::before {
content: "\eaf8";
}
.mas-signal-2::before {
content: "\eaf9";
}
.mas-book::before {
content: "\eafa";
}
.mas-agenda-bookmark::before {
content: "\eafb";
}
.mas-books::before {
content: "\eafc";
}
.mas-book-open-2-1::before {
content: "\eafd";
}
.mas-pencil-47::before {
content: "\eafe";
}
.mas-chef-hat::before {
content: "\eaff";
}
.mas-simple-delete::before {
content: "\eb00";
}
.mas-logo-linkedin::before {
content: "\eb01";
}
.mas-logo-facebook::before {
content: "\eb02";
}
.mas-logo-fb-simple-1::before {
content: "\eb03";
}
.mas-logo-twitter-1::before {
content: "\eb04";
}
.mas-logo-instagram-1::before {
content: "\eb05";
}
.mas-logo-pinterest-1::before {
content: "\eb06";
}
.mas-box-3d-50::before {
content: "\eb07";
}
.mas-delivery::before {
content: "\eb08";
}
.mas-h-dashboard::before {
content: "\eb09";
}
.mas-power-level-1::before {
content: "\eb0a";
}
.mas-time-3-1::before {
content: "\eb0b";
}
.mas-hourglass::before {
content: "\eb0c";
}
.mas-biochemistry::before {
content: "\eb0d";
}
.mas-cpu::before {
content: "\eb0e";
}
.mas-ai::before {
content: "\eb0f";
}
.mas-app-store-1::before {
content: "\eb10";
}
.mas-questionnaire::before {
content: "\eb11";
}
.mas-bicep::before {
content: "\eb12";
}
.mas-expand::before {
content: "\eb13";
}
.mas-transform-2d::before {
content: "\eb14";
}
.mas-maximize::before {
content: "\eb15";
}
.mas-window-maximize::before {
content: "\eb16";
}
.mas-floor::before {
content: "\eb17";
}
.mas-floors::before {
content: "\eb18";
}
.mas-water-surface::before {
content: "\eb19";
}
.mas-wallet-43::before {
content: "\eb1a";
}
.mas-analytics-88::before {
content: "\eb1b";
}
.mas-favourite-add-32::before {
content: "\eb1c";
}
.mas-survey::before {
content: "\eb1d";
}
.mas-face-recognition::before {
content: "\eb1e";
}