@charset "UTF-8";

 .animated{animation-duration:1s;animation-fill-mode:both;}
.animated.infinite{animation-iteration-count:infinite;}
.animated.hinge{animation-duration:2s;}
.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut{animation-duration:.75s;}
@keyframes bounce {
from, 20%,
53%,
80%,
to{animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1.000);transform:translate3d(0, 0, 0);}
40%,
43%{animation-timing-function:cubic-bezier(0.755, 0.050, 0.855, 0.060);transform:translate3d(0, -30px, 0);}
70%{animation-timing-function:cubic-bezier(0.755, 0.050, 0.855, 0.060);transform:translate3d(0, -15px, 0);}
90%{transform:translate3d(0, -4px, 0);}
}
.bounce{animation-name:bounce;transform-origin:center bottom;}
@keyframes flash {
from, 50%,
to{opacity:1;}
25%,
75%{opacity:0;}
}
.flash{animation-name:flash;}
@keyframes pulse {
from{transform:scale3d(1, 1, 1);}
50%{transform:scale3d(1.05, 1.05, 1.05);}
to{transform:scale3d(1, 1, 1);}
}
.pulse{animation-name:pulse;}
@keyframes rubberBand {
from{transform:scale3d(1, 1, 1);}
30%{transform:scale3d(1.25, 0.75, 1);}
40%{transform:scale3d(0.75, 1.25, 1);}
50%{transform:scale3d(1.15, 0.85, 1);}
65%{transform:scale3d(.95, 1.05, 1);}
75%{transform:scale3d(1.05, .95, 1);}
to{transform:scale3d(1, 1, 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{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);}
to{transform:scale3d(1, 1, 1);}
}
.tada{animation-name:tada;}
@keyframes wobble {
from{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);}
to{transform:none;}
}
.wobble{animation-name:wobble;}
@keyframes jello {
from, 11.1%,
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(-0.78125deg) skewY(-0.78125deg);}
77.7%{transform:skewX(0.390625deg) skewY(0.390625deg);}
88.8%{transform:skewX(-0.1953125deg) skewY(-0.1953125deg);}
}
.jello{animation-name:jello;transform-origin:center;}
@keyframes bounceIn {
from, 20%,
40%,
60%,
80%,
to{animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1.000);}
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 {
from, 60%,
75%,
90%,
to{animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1.000);}
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 {
from, 60%,
75%,
90%,
to{animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1.000);}
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 {
from, 60%,
75%,
90%,
to{animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1.000);}
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 {
from, 60%,
75%,
90%,
to{animation-timing-function:cubic-bezier(0.215, 0.610, 0.355, 1.000);}
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 bounceOut {
20%{transform:scale3d(.9, .9, .9);}
50%,
55%{opacity:1;transform:scale3d(1.1, 1.1, 1.1);}
to{opacity:0;transform:scale3d(.3, .3, .3);}
}
.bounceOut{animation-name:bounceOut;}
@keyframes bounceOutDown {
20%{transform:translate3d(0, 10px, 0);}
40%,
45%{opacity:1;transform:translate3d(0, -20px, 0);}
to{opacity:0;transform:translate3d(0, 2000px, 0);}
}
.bounceOutDown{animation-name:bounceOutDown;}
@keyframes bounceOutLeft {
20%{opacity:1;transform:translate3d(20px, 0, 0);}
to{opacity:0;transform:translate3d(-2000px, 0, 0);}
}
.bounceOutLeft{animation-name:bounceOutLeft;}
@keyframes bounceOutRight {
20%{opacity:1;transform:translate3d(-20px, 0, 0);}
to{opacity:0;transform:translate3d(2000px, 0, 0);}
}
.bounceOutRight{animation-name:bounceOutRight;}
@keyframes bounceOutUp {
20%{transform:translate3d(0, -10px, 0);}
40%,
45%{opacity:1;transform:translate3d(0, 20px, 0);}
to{opacity:0;transform:translate3d(0, -2000px, 0);}
}
.bounceOutUp{animation-name:bounceOutUp;}
@keyframes fadeIn {
from{opacity:0;}
to{opacity:1;}
}
.fadeIn{animation-name:fadeIn;}
@keyframes fadeInDown {
from{opacity:0;transform:translate3d(0, -20px, 0);}
to{opacity:1;transform:none;}
}
.fadeInDown{animation-name:fadeInDown;}
@keyframes fadeInDownBig {
from{opacity:0;transform:translate3d(0, -1000px, 0);}
to{opacity:1;transform:none;}
}
.fadeInDownBig{animation-name:fadeInDownBig;}
.fadeInLeft{animation-name:fadeInLeft;}
@keyframes fadeInLeft {
from{opacity:0;transform:translate3d(-20px, 0, 0);}
to{opacity:1;transform:none;}
}
.fadeInLeft{animation-name:fadeInLeft;}
@keyframes fadeInLeftBig {
from{opacity:0;transform:translate3d(-1000px, 0, 0);}
to{opacity:1;transform:none;}
}
.fadeInLeftBig{animation-name:fadeInLeftBig;}
@keyframes fadeInRight {
from{opacity:0;transform:translate3d(20px, 0, 0);}
to{opacity:1;transform:none;}
}
.fadeInRight{animation-name:fadeInRight;}
@keyframes fadeInRightBig {
from{opacity:0;transform:translate3d(1000px, 0, 0);}
to{opacity:1;transform:none;}
}
.fadeInRightBig{animation-name:fadeInRightBig;}
@keyframes fadeInUp {
from{opacity:0;transform:translate3d(0, 20px, 0);}
to{opacity:1;transform:none;}
}
.fadeInUp{animation-name:fadeInUp;}
@keyframes fadeInUpBig {
from{opacity:0;transform:translate3d(0, 1000px, 0);}
to{opacity:1;transform:none;}
}
.fadeInUpBig{animation-name:fadeInUpBig;}
@keyframes fadeOut {
from{opacity:1;}
to{opacity:0;}
}
.fadeOut{animation-name:fadeOut;}
@keyframes fadeOutDown {
from{opacity:1;}
to{opacity:0;transform:translate3d(0, 100%, 0);}
}
.fadeOutDown{animation-name:fadeOutDown;}
@keyframes fadeOutDownBig {
from{opacity:1;}
to{opacity:0;transform:translate3d(0, 2000px, 0);}
}
.fadeOutDownBig{animation-name:fadeOutDownBig;}
@keyframes fadeOutLeft {
from{opacity:1;}
to{opacity:0;transform:translate3d(-100%, 0, 0);}
}
.fadeOutLeft{animation-name:fadeOutLeft;}
@keyframes fadeOutLeftBig {
from{opacity:1;}
to{opacity:0;transform:translate3d(-2000px, 0, 0);}
}
.fadeOutLeftBig{animation-name:fadeOutLeftBig;}
@keyframes fadeOutRight {
from{opacity:1;}
to{opacity:0;transform:translate3d(100%, 0, 0);}
}
.fadeOutRight{animation-name:fadeOutRight;}
@keyframes fadeOutRightBig {
from{opacity:1;}
to{opacity:0;transform:translate3d(2000px, 0, 0);}
}
.fadeOutRightBig{animation-name:fadeOutRightBig;}
@keyframes fadeOutUp {
from{opacity:1;}
to{opacity:0;transform:translate3d(0, -100%, 0);}
}
.fadeOutUp{animation-name:fadeOutUp;}
@keyframes fadeOutUpBig {
from{opacity:1;}
to{opacity:0;transform:translate3d(0, -2000px, 0);}
}
.fadeOutUpBig{animation-name:fadeOutUpBig;}
@keyframes flip {
from{transform:perspective(400px) rotate3d(0, 1, 0, -360deg);animation-timing-function:ease-out;}
40%{transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);animation-timing-function:ease-out;}
50%{transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);animation-timing-function:ease-in;}
80%{transform:perspective(400px) scale3d(.95, .95, .95);animation-timing-function:ease-in;}
to{transform:perspective(400px);animation-timing-function:ease-in;}
}
.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip;}
@keyframes flipInX {
from{transform:perspective(400px) rotate3d(1, 0, 0, 90deg);animation-timing-function:ease-in;opacity:0;}
40%{transform:perspective(400px) rotate3d(1, 0, 0, -20deg);animation-timing-function:ease-in;}
60%{transform:perspective(400px) rotate3d(1, 0, 0, 10deg);opacity:1;}
80%{transform:perspective(400px) rotate3d(1, 0, 0, -5deg);}
to{transform:perspective(400px);}
}
.flipInX{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;animation-name:flipInX;}
@keyframes flipInY {
from{transform:perspective(400px) rotate3d(0, 1, 0, 90deg);animation-timing-function:ease-in;opacity:0;}
40%{transform:perspective(400px) rotate3d(0, 1, 0, -20deg);animation-timing-function:ease-in;}
60%{transform:perspective(400px) rotate3d(0, 1, 0, 10deg);opacity:1;}
80%{transform:perspective(400px) rotate3d(0, 1, 0, -5deg);}
to{transform:perspective(400px);}
}
.flipInY{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;animation-name:flipInY;}
@keyframes flipOutX {
from{transform:perspective(400px);}
30%{transform:perspective(400px) rotate3d(1, 0, 0, -20deg);opacity:1;}
to{transform:perspective(400px) rotate3d(1, 0, 0, 90deg);opacity:0;}
}
.flipOutX{animation-name:flipOutX;-webkit-backface-visibility:visible !important;backface-visibility:visible !important;}
@keyframes flipOutY {
from{transform:perspective(400px);}
30%{transform:perspective(400px) rotate3d(0, 1, 0, -15deg);opacity:1;}
to{transform:perspective(400px) rotate3d(0, 1, 0, 90deg);opacity:0;}
}
.flipOutY{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;animation-name:flipOutY;}
@keyframes lightSpeedIn {
from{transform:translate3d(100%, 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 lightSpeedOut {
from{opacity:1;}
to{transform:translate3d(100%, 0, 0) skewX(30deg);opacity:0;}
}
.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in;}
@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 rotateOut {
from{transform-origin:center;opacity:1;}
to{transform-origin:center;transform:rotate3d(0, 0, 1, 200deg);opacity:0;}
}
.rotateOut{animation-name:rotateOut;}
@keyframes rotateOutDownLeft {
from{transform-origin:left bottom;opacity:1;}
to{transform-origin:left bottom;transform:rotate3d(0, 0, 1, 45deg);opacity:0;}
}
.rotateOutDownLeft{animation-name:rotateOutDownLeft;}
@keyframes rotateOutDownRight {
from{transform-origin:right bottom;opacity:1;}
to{transform-origin:right bottom;transform:rotate3d(0, 0, 1, -45deg);opacity:0;}
}
.rotateOutDownRight{animation-name:rotateOutDownRight;}
@keyframes rotateOutUpLeft {
from{transform-origin:left bottom;opacity:1;}
to{transform-origin:left bottom;transform:rotate3d(0, 0, 1, -45deg);opacity:0;}
}
.rotateOutUpLeft{animation-name:rotateOutUpLeft;}
@keyframes rotateOutUpRight {
from{transform-origin:right bottom;opacity:1;}
to{transform-origin:right bottom;transform:rotate3d(0, 0, 1, 90deg);opacity:0;}
}
.rotateOutUpRight{animation-name:rotateOutUpRight;}
@keyframes hinge {
0%{transform-origin:top left;animation-timing-function:ease-in-out;}
20%,
60%{transform:rotate3d(0, 0, 1, 80deg);transform-origin:top left;animation-timing-function:ease-in-out;}
40%,
80%{transform:rotate3d(0, 0, 1, 60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;}
to{transform:translate3d(0, 700px, 0);opacity:0;}
}
.hinge{animation-name:hinge;}
@keyframes jackInTheBox {
from{opacity:0;transform:scale(0.1) rotate(30deg);transform-origin:center bottom;}
50%{transform:rotate(-10deg);}
70%{transform:rotate(3deg);}
to{opacity:1;transform:scale(1);}
}
.jackInTheBox{animation-name:jackInTheBox;}
@keyframes rollIn {
from{opacity:0;transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);}
to{opacity:1;transform:none;}
}
.rollIn{animation-name:rollIn;}
@keyframes rollOut {
from{opacity:1;}
to{opacity:0;transform:translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);}
}
.rollOut{animation-name:rollOut;}
@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(0.550, 0.055, 0.675, 0.190);}
60%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);animation-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);}
}
.zoomInDown{animation-name:zoomInDown;}
@keyframes zoomInLeft {
from{opacity:0;transform:scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);animation-timing-function:cubic-bezier(0.550, 0.055, 0.675, 0.190);}
60%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(10px, 0, 0);animation-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);}
}
.zoomInLeft{animation-name:zoomInLeft;}
@keyframes zoomInRight {
from{opacity:0;transform:scale3d(.1, .1, .1) translate3d(1000px, 0, 0);animation-timing-function:cubic-bezier(0.550, 0.055, 0.675, 0.190);}
60%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(-10px, 0, 0);animation-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);}
}
.zoomInRight{animation-name:zoomInRight;}
@keyframes zoomInUp {
from{opacity:0;transform:scale3d(.1, .1, .1) translate3d(0, 1000px, 0);animation-timing-function:cubic-bezier(0.550, 0.055, 0.675, 0.190);}
60%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);animation-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);}
}
.zoomInUp{animation-name:zoomInUp;}
@keyframes zoomOut {
from{opacity:1;}
50%{opacity:0;transform:scale3d(.3, .3, .3);}
to{opacity:0;}
}
.zoomOut{animation-name:zoomOut;}
@keyframes zoomOutDown {
40%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);animation-timing-function:cubic-bezier(0.550, 0.055, 0.675, 0.190);}
to{opacity:0;transform:scale3d(.1, .1, .1) translate3d(0, 2000px, 0);transform-origin:center bottom;animation-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);}
}
.zoomOutDown{animation-name:zoomOutDown;}
@keyframes zoomOutLeft {
40%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(42px, 0, 0);}
to{opacity:0;transform:scale(.1) translate3d(-2000px, 0, 0);transform-origin:left center;}
}
.zoomOutLeft{animation-name:zoomOutLeft;}
@keyframes zoomOutRight {
40%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(-42px, 0, 0);}
to{opacity:0;transform:scale(.1) translate3d(2000px, 0, 0);transform-origin:right center;}
}
.zoomOutRight{animation-name:zoomOutRight;}
@keyframes zoomOutUp {
40%{opacity:1;transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);animation-timing-function:cubic-bezier(0.550, 0.055, 0.675, 0.190);}
to{opacity:0;transform:scale3d(.1, .1, .1) translate3d(0, -2000px, 0);transform-origin:center bottom;animation-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);}
}
.zoomOutUp{animation-name:zoomOutUp;}
@keyframes slideInDown {
from{transform:translate3d(0, -100%, 0);visibility:visible;}
to{transform:translate3d(0, 0, 0);}
}
.slideInDown{animation-name:slideInDown;}
@keyframes slideInLeft {
from{transform:translate3d(-100%, 0, 0);visibility:visible;}
to{transform:translate3d(0, 0, 0);}
}
.slideInLeft{animation-name:slideInLeft;}
@keyframes slideInRight {
from{transform:translate3d(100%, 0, 0);visibility:visible;}
to{transform:translate3d(0, 0, 0);}
}
.slideInRight{animation-name:slideInRight;}
@keyframes slideInUp {
from{transform:translate3d(0, 100%, 0);visibility:visible;}
to{transform:translate3d(0, 0, 0);}
}
.slideInUp{animation-name:slideInUp;}
@keyframes slideOutDown {
from{transform:translate3d(0, 0, 0);}
to{visibility:hidden;transform:translate3d(0, 100%, 0);}
}
.slideOutDown{animation-name:slideOutDown;}
@keyframes slideOutLeft {
from{transform:translate3d(0, 0, 0);}
to{visibility:hidden;transform:translate3d(-100%, 0, 0);}
}
.slideOutLeft{animation-name:slideOutLeft;}
@keyframes slideOutRight {
from{transform:translate3d(0, 0, 0);}
to{visibility:hidden;transform:translate3d(100%, 0, 0);}
}
.slideOutRight{animation-name:slideOutRight;}
@keyframes slideOutUp {
from{transform:translate3d(0, 0, 0);}
to{visibility:hidden;transform:translate3d(0, -100%, 0);}
}
.slideOutUp {
animation-name: slideOutUp;
}.animsition, .animsition-overlay{position:relative;opacity:0;-webkit-animation-fill-mode:both;animation-fill-mode:both}
.animsition-overlay-slide{position:fixed;z-index:1;width:100%;height:100%;background-color:#ddd}
.animsition-loading{position:fixed;top:50%;left:50%;margin-top:-42px;margin-left:-42px;z-index:2}
.animsition-loading{width:84px;height:84px;border-radius:50%;border:3px solid transparent;border-top-color:#5b8c51;animation:animsition-loading 1.7s linear infinite;}
.animsition-loading:before{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;border-radius:50%;border:3px solid transparent;border-top-color:#0fc392;animation:animsition-loading-reverse .6s linear infinite;}
@-webkit-keyframes animsition-loading {
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}
@keyframes animsition-loading {
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}
@-webkit-keyframes animsition-loading-reverse {
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}
}
@keyframes animsition-loading-reverse {
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
to{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}
}
@-webkit-keyframes fade-in {
0%{opacity:0}
to{opacity:1}
}
@keyframes fade-in {
0%{opacity:0}
to{opacity:1}
}
.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}
@-webkit-keyframes fade-out {
0%{opacity:1}
to{opacity:0}
}
@keyframes fade-out {
0%{opacity:1}
to{opacity:0}
}
.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}
@-webkit-keyframes fade-in-up {
0%{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-up {
0%{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-up{-webkit-animation-name:fade-in-up;animation-name:fade-in-up}
@-webkit-keyframes fade-out-up {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}
}
@keyframes fade-out-up {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}
}
.fade-out-up{-webkit-animation-name:fade-out-up;animation-name:fade-out-up}
@-webkit-keyframes fade-in-up-sm {
0%{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-up-sm {
0%{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-up-sm{-webkit-animation-name:fade-in-up-sm;animation-name:fade-in-up-sm}
@-webkit-keyframes fade-out-up-sm {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}
}
@keyframes fade-out-up-sm {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}
}
.fade-out-up-sm{-webkit-animation-name:fade-out-up-sm;animation-name:fade-out-up-sm}
@-webkit-keyframes fade-in-up-lg {
0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-up-lg {
0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-up-lg{-webkit-animation-name:fade-in-up-lg;animation-name:fade-in-up-lg}
@-webkit-keyframes fade-out-up-lg {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}
}
@keyframes fade-out-up-lg {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}
}
.fade-out-up-lg{-webkit-animation-name:fade-out-up-lg;animation-name:fade-out-up-lg}
@-webkit-keyframes fade-in-down {
0%{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-down {
0%{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-down{-webkit-animation-name:fade-in-down;animation-name:fade-in-down}
@-webkit-keyframes fade-out-down {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}
}
@keyframes fade-out-down {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}
}
.fade-out-down{-webkit-animation-name:fade-out-down;animation-name:fade-out-down}
@-webkit-keyframes fade-in-down-sm {
0%{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-down-sm {
0%{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}
to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-down-sm{-webkit-animation-name:fade-in-down-sm;animation-name:fade-in-down-sm}
@-webkit-keyframes fade-out-down-sm {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}
}
@keyframes fade-out-down-sm {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}
}
.fade-out-down-sm{-webkit-animation-name:fade-out-down-sm;animation-name:fade-out-down-sm}
.fade-in-down-lg{-webkit-animation-name:fade-in-down;animation-name:fade-in-down}
@-webkit-keyframes fade-out-down-lg {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}
}
@keyframes fade-out-down-lg {
0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
to{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}
}
.fade-out-down-lg{-webkit-animation-name:fade-out-down-lg;animation-name:fade-out-down-lg}
@-webkit-keyframes fade-in-left {
0%{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
@keyframes fade-in-left {
0%{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
.fade-in-left{-webkit-animation-name:fade-in-left;animation-name:fade-in-left}
@-webkit-keyframes fade-out-left {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}
}
@keyframes fade-out-left {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}
}
.fade-out-left{-webkit-animation-name:fade-out-left;animation-name:fade-out-left}
@-webkit-keyframes fade-in-left-sm {
0%{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
@keyframes fade-in-left-sm {
0%{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
.fade-in-left-sm{-webkit-animation-name:fade-in-left-sm;animation-name:fade-in-left-sm}
@-webkit-keyframes fade-out-left-sm {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}
}
@keyframes fade-out-left-sm {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}
}
.fade-out-left-sm{-webkit-animation-name:fade-out-left-sm;animation-name:fade-out-left-sm}
@-webkit-keyframes fade-in-left-lg {
0%{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
@keyframes fade-in-left-lg {
0%{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
.fade-in-left-lg{-webkit-animation-name:fade-in-left-lg;animation-name:fade-in-left-lg}
@-webkit-keyframes fade-out-left-lg {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}
}
@keyframes fade-out-left-lg {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}
}
.fade-out-left-lg{-webkit-animation-name:fade-out-left-lg;animation-name:fade-out-left-lg}
@-webkit-keyframes fade-in-right {
0%{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
@keyframes fade-in-right {
0%{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
.fade-in-right{-webkit-animation-name:fade-in-right;animation-name:fade-in-right}
@-webkit-keyframes fade-out-right {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}
}
@keyframes fade-out-right {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}
}
.fade-out-right{-webkit-animation-name:fade-out-right;animation-name:fade-out-right}
@-webkit-keyframes fade-in-right-sm {
0%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
@keyframes fade-in-right-sm {
0%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
.fade-in-right-sm{-webkit-animation-name:fade-in-right-sm;animation-name:fade-in-right-sm}
@-webkit-keyframes fade-out-right-sm {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}
}
@keyframes fade-out-right-sm {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}
}
.fade-out-right-sm{-webkit-animation-name:fade-out-right-sm;animation-name:fade-out-right-sm}
@-webkit-keyframes fade-in-right-lg {
0%{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
@keyframes fade-in-right-lg {
0%{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}
to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
}
.fade-in-right-lg{-webkit-animation-name:fade-in-right-lg;animation-name:fade-in-right-lg}
@-webkit-keyframes fade-out-right-lg {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}
}
@keyframes fade-out-right-lg {
0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}
to{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}
}
.fade-out-right-lg{-webkit-animation-name:fade-out-right-lg;animation-name:fade-out-right-lg}
@-webkit-keyframes rotate-in {
0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);transform-origin:center center;opacity:0}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
}
@keyframes rotate-in {
0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);transform-origin:center center;opacity:0}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
}
.rotate-in{-webkit-animation-name:rotate-in;animation-name:rotate-in}
@-webkit-keyframes rotate-out {
0%{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(90deg);transform:rotate(90deg);transform-origin:center center;opacity:0}
}
@keyframes rotate-out {
0%{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(90deg);transform:rotate(90deg);transform-origin:center center;opacity:0}
}
.rotate-out{-webkit-animation-name:rotate-out;animation-name:rotate-out}
@-webkit-keyframes rotate-in-sm {
0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);transform-origin:center center;opacity:0}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
}
@keyframes rotate-in-sm {
0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);transform-origin:center center;opacity:0}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
}
.rotate-in-sm{-webkit-animation-name:rotate-in-sm;animation-name:rotate-in-sm}
@-webkit-keyframes rotate-out-sm {
0%{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(45deg);transform:rotate(45deg);transform-origin:center center;opacity:0}
}
@keyframes rotate-out-sm {
0%{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(45deg);transform:rotate(45deg);transform-origin:center center;opacity:0}
}
.rotate-out-sm{-webkit-animation-name:rotate-out-sm;animation-name:rotate-out-sm}
@-webkit-keyframes rotate-in-lg {
0%{-webkit-transform:rotate(-180deg);transform:rotate(-180deg);transform-origin:center center;opacity:0}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
}
@keyframes rotate-in-lg {
0%{-webkit-transform:rotate(-180deg);transform:rotate(-180deg);transform-origin:center center;opacity:0}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
}
.rotate-in-lg{-webkit-animation-name:rotate-in-lg;animation-name:rotate-in-lg}
@-webkit-keyframes rotate-out-lg {
0%{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(180deg);transform:rotate(180deg);transform-origin:center center;opacity:0}
}
@keyframes rotate-out-lg {
0%{-webkit-transform:rotate(0);transform:rotate(0);transform-origin:center center;opacity:1}
0%,
to{-webkit-transform-origin:center center}
to{-webkit-transform:rotate(180deg);transform:rotate(180deg);transform-origin:center center;opacity:0}
}
.rotate-out-lg{-webkit-animation-name:rotate-out-lg;animation-name:rotate-out-lg}
@-webkit-keyframes flip-in-x {
0%{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}
to{-webkit-transform:perspective(550px) rotateX(0deg);transform:perspective(550px) rotateX(0deg);opacity:1}
}
@keyframes flip-in-x {
0%{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}
to{-webkit-transform:perspective(550px) rotateX(0deg);transform:perspective(550px) rotateX(0deg);opacity:1}
}
.flip-in-x{-webkit-animation-name:flip-in-x;animation-name:flip-in-x;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-out-x {
0%{-webkit-transform:perspective(550px) rotateX(0deg);transform:perspective(550px) rotateX(0deg);opacity:1}
to{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}
}
@keyframes flip-out-x {
0%{-webkit-transform:perspective(550px) rotateX(0deg);transform:perspective(550px) rotateX(0deg);opacity:1}
to{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}
}
.flip-out-x{-webkit-animation-name:flip-out-x;animation-name:flip-out-x;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-in-x-nr {
0%{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}
to{-webkit-transform:perspective(100px) rotateX(0deg);transform:perspective(100px) rotateX(0deg);opacity:1}
}
@keyframes flip-in-x-nr {
0%{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}
to{-webkit-transform:perspective(100px) rotateX(0deg);transform:perspective(100px) rotateX(0deg);opacity:1}
}
.flip-in-x-nr{-webkit-animation-name:flip-in-x-nr;animation-name:flip-in-x-nr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-out-x-nr {
0%{-webkit-transform:perspective(100px) rotateX(0deg);transform:perspective(100px) rotateX(0deg);opacity:1}
to{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}
}
@keyframes flip-out-x-nr {
0%{-webkit-transform:perspective(100px) rotateX(0deg);transform:perspective(100px) rotateX(0deg);opacity:1}
to{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}
}
.flip-out-x-nr{-webkit-animation-name:flip-out-x-nr;animation-name:flip-out-x-nr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-in-x-fr {
0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}
to{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg);opacity:1}
}
@keyframes flip-in-x-fr {
0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}
to{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg);opacity:1}
}
.flip-in-x-fr{-webkit-animation-name:flip-in-x-fr;animation-name:flip-in-x-fr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-out-x-fr {
0%{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg);opacity:1}
to{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}
}
@keyframes flip-out-x-fr {
0%{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg);opacity:1}
to{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}
}
.flip-out-x-fr{-webkit-animation-name:flip-out-x-fr;animation-name:flip-out-x-fr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-in-y {
0%{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}
to{-webkit-transform:perspective(550px) rotateY(0deg);transform:perspective(550px) rotateY(0deg);opacity:1}
}
@keyframes flip-in-y {
0%{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}
to{-webkit-transform:perspective(550px) rotateY(0deg);transform:perspective(550px) rotateY(0deg);opacity:1}
}
.flip-in-y{-webkit-animation-name:flip-in-y;animation-name:flip-in-y;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-out-y {
0%{-webkit-transform:perspective(550px) rotateY(0deg);transform:perspective(550px) rotateY(0deg);opacity:1}
to{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}
}
@keyframes flip-out-y {
0%{-webkit-transform:perspective(550px) rotateY(0deg);transform:perspective(550px) rotateY(0deg);opacity:1}
to{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}
}
.flip-out-y{-webkit-animation-name:flip-out-y;animation-name:flip-out-y;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-in-y-nr {
0%{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}
to{-webkit-transform:perspective(100px) rotateY(0deg);transform:perspective(100px) rotateY(0deg);opacity:1}
}
@keyframes flip-in-y-nr {
0%{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}
to{-webkit-transform:perspective(100px) rotateY(0deg);transform:perspective(100px) rotateY(0deg);opacity:1}
}
.flip-in-y-nr{-webkit-animation-name:flip-in-y-nr;animation-name:flip-in-y-nr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-out-y-nr {
0%{-webkit-transform:perspective(100px) rotateY(0deg);transform:perspective(100px) rotateY(0deg);opacity:1}
to{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}
}
@keyframes flip-out-y-nr {
0%{-webkit-transform:perspective(100px) rotateY(0deg);transform:perspective(100px) rotateY(0deg);opacity:1}
to{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}
}
.flip-out-y-nr{-webkit-animation-name:flip-out-y-nr;animation-name:flip-out-y-nr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-in-y-fr {
0%{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}
to{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg);opacity:1}
}
@keyframes flip-in-y-fr {
0%{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}
to{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg);opacity:1}
}
.flip-in-y-fr{-webkit-animation-name:flip-in-y-fr;animation-name:flip-in-y-fr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes flip-out-y-fr {
0%{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg);opacity:1}
to{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}
}
@keyframes flip-out-y-fr {
0%{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg);opacity:1}
to{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}
}
.flip-out-y-fr{-webkit-animation-name:flip-out-y-fr;animation-name:flip-out-y-fr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
@-webkit-keyframes zoom-in {
0%{-webkit-transform:scale(.7);transform:scale(.7);opacity:0}
to{opacity:1}
}
@keyframes zoom-in {
0%{-webkit-transform:scale(.7);transform:scale(.7);opacity:0}
to{opacity:1}
}
.zoom-in{-webkit-animation-name:zoom-in;animation-name:zoom-in}
@-webkit-keyframes zoom-out {
0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
50%{-webkit-transform:scale(.7);transform:scale(.7)}
50%,
to{opacity:0}
}
@keyframes zoom-out {
0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
50%{-webkit-transform:scale(.7);transform:scale(.7)}
50%,
to{opacity:0}
}
.zoom-out{-webkit-animation-name:zoom-out;animation-name:zoom-out}
@-webkit-keyframes zoom-in-sm {
0%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0}
to{opacity:1}
}
@keyframes zoom-in-sm {
0%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0}
to{opacity:1}
}
.zoom-in-sm{-webkit-animation-name:zoom-in-sm;animation-name:zoom-in-sm}
@-webkit-keyframes zoom-out-sm {
0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
50%{-webkit-transform:scale(.95);transform:scale(.95)}
50%,
to{opacity:0}
}
@keyframes zoom-out-sm {
0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
50%{-webkit-transform:scale(.95);transform:scale(.95)}
50%,
to{opacity:0}
}
.zoom-out-sm{-webkit-animation-name:zoom-out-sm;animation-name:zoom-out-sm}
@-webkit-keyframes zoom-in-lg {
0%{-webkit-transform:scale(.4);transform:scale(.4);opacity:0}
to{opacity:1}
}
@keyframes zoom-in-lg {
0%{-webkit-transform:scale(.4);transform:scale(.4);opacity:0}
to{opacity:1}
}
.zoom-in-lg{-webkit-animation-name:zoom-in-lg;animation-name:zoom-in-lg}
@-webkit-keyframes zoom-out-lg {
0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
50%{-webkit-transform:scale(.4);transform:scale(.4)}
50%,
to{opacity:0}
}
@keyframes zoom-out-lg {
0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
50%{-webkit-transform:scale(.4);transform:scale(.4)}
50%,
to{opacity:0}
}
.zoom-out-lg{-webkit-animation-name:zoom-out-lg;animation-name:zoom-out-lg}
@-webkit-keyframes overlay-slide-in-top {
0%{height:100%}
to{height:0}
}
@keyframes overlay-slide-in-top {
0%{height:100%}
to{height:0}
}
.overlay-slide-in-top{top:0;height:0;-webkit-animation-name:overlay-slide-in-top;animation-name:overlay-slide-in-top}
@-webkit-keyframes overlay-slide-out-top {
0%{height:0}
to{height:100%}
}
@keyframes overlay-slide-out-top {
0%{height:0}
to{height:100%}
}
.overlay-slide-out-top{top:0;height:100%;-webkit-animation-name:overlay-slide-out-top;animation-name:overlay-slide-out-top}
@-webkit-keyframes overlay-slide-in-bottom {
0%{height:100%}
to{height:0}
}
@keyframes overlay-slide-in-bottom {
0%{height:100%}
to{height:0}
}
.overlay-slide-in-bottom{bottom:0;height:0;-webkit-animation-name:overlay-slide-in-bottom;animation-name:overlay-slide-in-bottom}
@-webkit-keyframes overlay-slide-out-bottom {
0%{height:0}
to{height:100%}
}
@keyframes overlay-slide-out-bottom {
0%{height:0}
to{height:100%}
}
.overlay-slide-out-bottom{bottom:0;height:100%;-webkit-animation-name:overlay-slide-out-bottom;animation-name:overlay-slide-out-bottom}
@-webkit-keyframes overlay-slide-in-left {
0%{width:100%}
to{width:0}
}
@keyframes overlay-slide-in-left {
0%{width:100%}
to{width:0}
}
.overlay-slide-in-left{width:0;-webkit-animation-name:overlay-slide-in-left;animation-name:overlay-slide-in-left}
@-webkit-keyframes overlay-slide-out-left {
0%{width:0}
to{width:100%}
}
@keyframes overlay-slide-out-left {
0%{width:0}
to{width:100%}
}
.overlay-slide-out-left{left:0;width:100%;-webkit-animation-name:overlay-slide-out-left;animation-name:overlay-slide-out-left}
@-webkit-keyframes overlay-slide-in-right {
0%{width:100%}
to{width:0}
}
@keyframes overlay-slide-in-right {
0%{width:100%}
to{width:0}
}
.overlay-slide-in-right{right:0;width:0;-webkit-animation-name:overlay-slide-in-right;animation-name:overlay-slide-in-right}
@-webkit-keyframes overlay-slide-out-right {
0%{width:0}
to{width:100%}
}
@keyframes overlay-slide-out-right {
0%{width:0}
to{width:100%}
}
.overlay-slide-out-right {
right: 0;
width: 100%;
-webkit-animation-name: overlay-slide-out-right;
animation-name: overlay-slide-out-right
}.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;}
.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;}
.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{position:absolute;top:50%;z-index:9999;display:block;width:50px;height:50px;padding:0;font-size:0;background-color:transparent;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;}
.slick-prev{left:15px;}
.slick-next{right:15px;}
.slick-prev:hover, .slick-next:hover, .slick-prev:focus, .slick-next:focus{background-color:transparent;}
.slick-prev:after, .slick-next:after{line-height:normal;font-size:50px;font-weight:normal;content:"\e687";font-family:"Pe-icon-7-stroke";color:#999;position:absolute;right:0;top:0;width:50px;height:50px;line-height:50px;text-align:center;opacity:0.5;}
.slick-next:after{content:"\e685";}
.slick-dots{position:absolute;left:0;bottom:10px;display:block;width:100%;margin:0;list-style:none;text-align:center;display:flex;align-items:center;justify-content:center;}
.slick-dots li{position:relative;display:inline-block;width:11px;height:11px;margin:0 7px;padding:0;cursor:pointer;}
.slick-dots li:after{content:"";position:absolute;left:2px;top:2px;width:7px;height:7px;border-radius:3.5px;background-color:#2ed37d;opacity:0.5;transition:all 0.45s cubic-bezier(0.680, -0.550, 0.265, 1.550);}
.slick-dots li.slick-active:after{left:0;top:0;width:11px;height:11px;border-radius:5.5px;opacity:1;}
.slick-dots li button {
font-size: 0;
padding: 0;
opacity: 0;
}@font-face{font-family:'ElegantIcons';src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/eleganticons/ElegantIcons.eot);src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/eleganticons/ElegantIcons.eot?#iefix) format('embedded-opentype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/eleganticons/ElegantIcons.woff) format('woff'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/eleganticons/ElegantIcons.ttf) format('truetype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/eleganticons/ElegantIcons.svg#ElegantIcons) format('svg');font-weight:normal;font-style:normal;}
[class^="elegant-"],
[class*=" elegant-"]{font-family:'ElegantIcons' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.elegant-arrow_up:before{content:"\21";}
.elegant-arrow_down:before{content:"\22";}
.elegant-arrow_left:before{content:"\23";}
.elegant-arrow_right:before{content:"\24";}
.elegant-arrow_left-up:before{content:"\25";}
.elegant-arrow_right-up:before{content:"\26";}
.elegant-arrow_right-down:before{content:"\27";}
.elegant-arrow_left-down:before{content:"\28";}
.elegant-arrow-up-down:before{content:"\29";}
.elegant-arrow_up-down_alt:before{content:"\2a";}
.elegant-arrow_left-right_alt:before{content:"\2b";}
.elegant-arrow_left-right:before{content:"\2c";}
.elegant-arrow_expand_alt2:before{content:"\2d";}
.elegant-arrow_expand_alt:before{content:"\2e";}
.elegant-arrow_condense:before{content:"\2f";}
.elegant-arrow_expand:before{content:"\30";}
.elegant-arrow_move:before{content:"\31";}
.elegant-arrow_carrot-up:before{content:"\32";}
.elegant-arrow_carrot-down:before{content:"\33";}
.elegant-arrow_carrot-left:before{content:"\34";}
.elegant-arrow_carrot-right:before{content:"\35";}
.elegant-arrow_carrot-2up:before{content:"\36";}
.elegant-arrow_carrot-2down:before{content:"\37";}
.elegant-arrow_carrot-2left:before{content:"\38";}
.elegant-arrow_carrot-2right:before{content:"\39";}
.elegant-arrow_carrot-up_alt2:before{content:"\3a";}
.elegant-arrow_carrot-down_alt2:before{content:"\3b";}
.elegant-arrow_carrot-left_alt2:before{content:"\3c";}
.elegant-arrow_carrot-right_alt2:before{content:"\3d";}
.elegant-arrow_carrot-2up_alt2:before{content:"\3e";}
.elegant-arrow_carrot-2down_alt2:before{content:"\3f";}
.elegant-arrow_carrot-2left_alt2:before{content:"\40";}
.elegant-arrow_carrot-2right_alt2:before{content:"\41";}
.elegant-arrow_triangle-up:before{content:"\42";}
.elegant-arrow_triangle-down:before{content:"\43";}
.elegant-arrow_triangle-left:before{content:"\44";}
.elegant-arrow_triangle-right:before{content:"\45";}
.elegant-arrow_triangle-up_alt2:before{content:"\46";}
.elegant-arrow_triangle-down_alt2:before{content:"\47";}
.elegant-arrow_triangle-left_alt2:before{content:"\48";}
.elegant-arrow_triangle-right_alt2:before{content:"\49";}
.elegant-arrow_back:before{content:"\4a";}
.elegant-icon_minus-06:before{content:"\4b";}
.elegant-icon_plus:before{content:"\4c";}
.elegant-icon_close:before{content:"\4d";}
.elegant-icon_check:before{content:"\4e";}
.elegant-icon_minus_alt2:before{content:"\4f";}
.elegant-icon_plus_alt2:before{content:"\50";}
.elegant-icon_close_alt2:before{content:"\51";}
.elegant-icon_check_alt2:before{content:"\52";}
.elegant-icon_zoom-out_alt:before{content:"\53";}
.elegant-icon_zoom-in_alt:before{content:"\54";}
.elegant-icon_search:before{content:"\55";}
.elegant-icon_box-empty:before{content:"\56";}
.elegant-icon_box-selected:before{content:"\57";}
.elegant-icon_minus-box:before{content:"\58";}
.elegant-icon_plus-box:before{content:"\59";}
.elegant-icon_box-checked:before{content:"\5a";}
.elegant-icon_circle-empty:before{content:"\5b";}
.elegant-icon_circle-slelected:before{content:"\5c";}
.elegant-icon_stop_alt2:before{content:"\5d";}
.elegant-icon_stop:before{content:"\5e";}
.elegant-icon_pause_alt2:before{content:"\5f";}
.elegant-icon_pause:before{content:"\60";}
.elegant-icon_menu:before{content:"\61";}
.elegant-icon_menu-square_alt2:before{content:"\62";}
.elegant-icon_menu-circle_alt2:before{content:"\63";}
.elegant-icon_ul:before{content:"\64";}
.elegant-icon_ol:before{content:"\65";}
.elegant-icon_adjust-horiz:before{content:"\66";}
.elegant-icon_adjust-vert:before{content:"\67";}
.elegant-icon_document_alt:before{content:"\68";}
.elegant-icon_documents_alt:before{content:"\69";}
.elegant-icon_pencil:before{content:"\6a";}
.elegant-icon_pencil-edit_alt:before{content:"\6b";}
.elegant-icon_pencil-edit:before{content:"\6c";}
.elegant-icon_folder-alt:before{content:"\6d";}
.elegant-icon_folder-open_alt:before{content:"\6e";}
.elegant-icon_folder-add_alt:before{content:"\6f";}
.elegant-icon_info_alt:before{content:"\70";}
.elegant-icon_error-oct_alt:before{content:"\71";}
.elegant-icon_error-circle_alt:before{content:"\72";}
.elegant-icon_error-triangle_alt:before{content:"\73";}
.elegant-icon_question_alt2:before{content:"\74";}
.elegant-icon_question:before{content:"\75";}
.elegant-icon_comment_alt:before{content:"\76";}
.elegant-icon_chat_alt:before{content:"\77";}
.elegant-icon_vol-mute_alt:before{content:"\78";}
.elegant-icon_volume-low_alt:before{content:"\79";}
.elegant-icon_volume-high_alt:before{content:"\7a";}
.elegant-icon_quotations:before{content:"\7b";}
.elegant-icon_quotations_alt2:before{content:"\7c";}
.elegant-icon_clock_alt:before{content:"\7d";}
.elegant-icon_lock_alt:before{content:"\7e";}
.elegant-icon_lock-open_alt:before{content:"\e000";}
.elegant-icon_key_alt:before{content:"\e001";}
.elegant-icon_cloud_alt:before{content:"\e002";}
.elegant-icon_cloud-upload_alt:before{content:"\e003";}
.elegant-icon_cloud-download_alt:before{content:"\e004";}
.elegant-icon_image:before{content:"\e005";}
.elegant-icon_images:before{content:"\e006";}
.elegant-icon_lightbulb_alt:before{content:"\e007";}
.elegant-icon_gift_alt:before{content:"\e008";}
.elegant-icon_house_alt:before{content:"\e009";}
.elegant-icon_genius:before{content:"\e00a";}
.elegant-icon_mobile:before{content:"\e00b";}
.elegant-icon_tablet:before{content:"\e00c";}
.elegant-icon_laptop:before{content:"\e00d";}
.elegant-icon_desktop:before{content:"\e00e";}
.elegant-icon_camera_alt:before{content:"\e00f";}
.elegant-icon_mail_alt:before{content:"\e010";}
.elegant-icon_cone_alt:before{content:"\e011";}
.elegant-icon_ribbon_alt:before{content:"\e012";}
.elegant-icon_bag_alt:before{content:"\e013";}
.elegant-icon_creditcard:before{content:"\e014";}
.elegant-icon_cart_alt:before{content:"\e015";}
.elegant-icon_paperclip:before{content:"\e016";}
.elegant-icon_tag_alt:before{content:"\e017";}
.elegant-icon_tags_alt:before{content:"\e018";}
.elegant-icon_trash_alt:before{content:"\e019";}
.elegant-icon_cursor_alt:before{content:"\e01a";}
.elegant-icon_mic_alt:before{content:"\e01b";}
.elegant-icon_compass_alt:before{content:"\e01c";}
.elegant-icon_pin_alt:before{content:"\e01d";}
.elegant-icon_pushpin_alt:before{content:"\e01e";}
.elegant-icon_map_alt:before{content:"\e01f";}
.elegant-icon_drawer_alt:before{content:"\e020";}
.elegant-icon_toolbox_alt:before{content:"\e021";}
.elegant-icon_book_alt:before{content:"\e022";}
.elegant-icon_calendar:before{content:"\e023";}
.elegant-icon_film:before{content:"\e024";}
.elegant-icon_table:before{content:"\e025";}
.elegant-icon_contacts_alt:before{content:"\e026";}
.elegant-icon_headphones:before{content:"\e027";}
.elegant-icon_lifesaver:before{content:"\e028";}
.elegant-icon_piechart:before{content:"\e029";}
.elegant-icon_refresh:before{content:"\e02a";}
.elegant-icon_link_alt:before{content:"\e02b";}
.elegant-icon_link:before{content:"\e02c";}
.elegant-icon_loading:before{content:"\e02d";}
.elegant-icon_blocked:before{content:"\e02e";}
.elegant-icon_archive_alt:before{content:"\e02f";}
.elegant-icon_heart_alt:before{content:"\e030";}
.elegant-icon_star_alt:before{content:"\e031";}
.elegant-icon_star-half_alt:before{content:"\e032";}
.elegant-icon_star:before{content:"\e033";}
.elegant-icon_star-half:before{content:"\e034";}
.elegant-icon_tools:before{content:"\e035";}
.elegant-icon_tool:before{content:"\e036";}
.elegant-icon_cog:before{content:"\e037";}
.elegant-icon_cogs:before{content:"\e038";}
.elegant-arrow_up_alt:before{content:"\e039";}
.elegant-arrow_down_alt:before{content:"\e03a";}
.elegant-arrow_left_alt:before{content:"\e03b";}
.elegant-arrow_right_alt:before{content:"\e03c";}
.elegant-arrow_left-up_alt:before{content:"\e03d";}
.elegant-arrow_right-up_alt:before{content:"\e03e";}
.elegant-arrow_right-down_alt:before{content:"\e03f";}
.elegant-arrow_left-down_alt:before{content:"\e040";}
.elegant-arrow_condense_alt:before{content:"\e041";}
.elegant-arrow_expand_alt3:before{content:"\e042";}
.elegant-arrow_carrot_up_alt:before{content:"\e043";}
.elegant-arrow_carrot-down_alt:before{content:"\e044";}
.elegant-arrow_carrot-left_alt:before{content:"\e045";}
.elegant-arrow_carrot-right_alt:before{content:"\e046";}
.elegant-arrow_carrot-2up_alt:before{content:"\e047";}
.elegant-arrow_carrot-2dwnn_alt:before{content:"\e048";}
.elegant-arrow_carrot-2left_alt:before{content:"\e049";}
.elegant-arrow_carrot-2right_alt:before{content:"\e04a";}
.elegant-arrow_triangle-up_alt:before{content:"\e04b";}
.elegant-arrow_triangle-down_alt:before{content:"\e04c";}
.elegant-arrow_triangle-left_alt:before{content:"\e04d";}
.elegant-arrow_triangle-right_alt:before{content:"\e04e";}
.elegant-icon_minus_alt:before{content:"\e04f";}
.elegant-icon_plus_alt:before{content:"\e050";}
.elegant-icon_close_alt:before{content:"\e051";}
.elegant-icon_check_alt:before{content:"\e052";}
.elegant-icon_zoom-out:before{content:"\e053";}
.elegant-icon_zoom-in:before{content:"\e054";}
.elegant-icon_stop_alt:before{content:"\e055";}
.elegant-icon_menu-square_alt:before{content:"\e056";}
.elegant-icon_menu-circle_alt:before{content:"\e057";}
.elegant-icon_document:before{content:"\e058";}
.elegant-icon_documents:before{content:"\e059";}
.elegant-icon_pencil_alt:before{content:"\e05a";}
.elegant-icon_folder:before{content:"\e05b";}
.elegant-icon_folder-open:before{content:"\e05c";}
.elegant-icon_folder-add:before{content:"\e05d";}
.elegant-icon_folder_upload:before{content:"\e05e";}
.elegant-icon_folder_download:before{content:"\e05f";}
.elegant-icon_info:before{content:"\e060";}
.elegant-icon_error-circle:before{content:"\e061";}
.elegant-icon_error-oct:before{content:"\e062";}
.elegant-icon_error-triangle:before{content:"\e063";}
.elegant-icon_question_alt:before{content:"\e064";}
.elegant-icon_comment:before{content:"\e065";}
.elegant-icon_chat:before{content:"\e066";}
.elegant-icon_vol-mute:before{content:"\e067";}
.elegant-icon_volume-low:before{content:"\e068";}
.elegant-icon_volume-high:before{content:"\e069";}
.elegant-icon_quotations_alt:before{content:"\e06a";}
.elegant-icon_clock:before{content:"\e06b";}
.elegant-icon_lock:before{content:"\e06c";}
.elegant-icon_lock-open:before{content:"\e06d";}
.elegant-icon_key:before{content:"\e06e";}
.elegant-icon_cloud:before{content:"\e06f";}
.elegant-icon_cloud-upload:before{content:"\e070";}
.elegant-icon_cloud-download:before{content:"\e071";}
.elegant-icon_lightbulb:before{content:"\e072";}
.elegant-icon_gift:before{content:"\e073";}
.elegant-icon_house:before{content:"\e074";}
.elegant-icon_camera:before{content:"\e075";}
.elegant-icon_mail:before{content:"\e076";}
.elegant-icon_cone:before{content:"\e077";}
.elegant-icon_ribbon:before{content:"\e078";}
.elegant-icon_bag:before{content:"\e079";}
.elegant-icon_cart:before{content:"\e07a";}
.elegant-icon_tag:before{content:"\e07b";}
.elegant-icon_tags:before{content:"\e07c";}
.elegant-icon_trash:before{content:"\e07d";}
.elegant-icon_cursor:before{content:"\e07e";}
.elegant-icon_mic:before{content:"\e07f";}
.elegant-icon_compass:before{content:"\e080";}
.elegant-icon_pin:before{content:"\e081";}
.elegant-icon_pushpin:before{content:"\e082";}
.elegant-icon_map:before{content:"\e083";}
.elegant-icon_drawer:before{content:"\e084";}
.elegant-icon_toolbox:before{content:"\e085";}
.elegant-icon_book:before{content:"\e086";}
.elegant-icon_contacts:before{content:"\e087";}
.elegant-icon_archive:before{content:"\e088";}
.elegant-icon_heart:before{content:"\e089";}
.elegant-icon_profile:before{content:"\e08a";}
.elegant-icon_group:before{content:"\e08b";}
.elegant-icon_grid-2x2:before{content:"\e08c";}
.elegant-icon_grid-3x3:before{content:"\e08d";}
.elegant-icon_music:before{content:"\e08e";}
.elegant-icon_pause_alt:before{content:"\e08f";}
.elegant-icon_phone:before{content:"\e090";}
.elegant-icon_upload:before{content:"\e091";}
.elegant-icon_download:before{content:"\e092";}
.elegant-social_facebook:before{content:"\e093";}
.elegant-social_twitter:before{content:"\e094";}
.elegant-social_pinterest:before{content:"\e095";}
.elegant-social_googleplus:before{content:"\e096";}
.elegant-social_tumblr:before{content:"\e097";}
.elegant-social_tumbleupon:before{content:"\e098";}
.elegant-social_wordpress:before{content:"\e099";}
.elegant-social_instagram:before{content:"\e09a";}
.elegant-social_dribbble:before{content:"\e09b";}
.elegant-social_vimeo:before{content:"\e09c";}
.elegant-social_linkedin:before{content:"\e09d";}
.elegant-social_rss:before{content:"\e09e";}
.elegant-social_deviantart:before{content:"\e09f";}
.elegant-social_share:before{content:"\e0a0";}
.elegant-social_myspace:before{content:"\e0a1";}
.elegant-social_skype:before{content:"\e0a2";}
.elegant-social_youtube:before{content:"\e0a3";}
.elegant-social_picassa:before{content:"\e0a4";}
.elegant-social_googledrive:before{content:"\e0a5";}
.elegant-social_flickr:before{content:"\e0a6";}
.elegant-social_blogger:before{content:"\e0a7";}
.elegant-social_spotify:before{content:"\e0a8";}
.elegant-social_delicious:before{content:"\e0a9";}
.elegant-social_facebook_circle:before{content:"\e0aa";}
.elegant-social_twitter_circle:before{content:"\e0ab";}
.elegant-social_pinterest_circle:before{content:"\e0ac";}
.elegant-social_googleplus_circle:before{content:"\e0ad";}
.elegant-social_tumblr_circle:before{content:"\e0ae";}
.elegant-social_stumbleupon_circle:before{content:"\e0af";}
.elegant-social_wordpress_circle:before{content:"\e0b0";}
.elegant-social_instagram_circle:before{content:"\e0b1";}
.elegant-social_dribbble_circle:before{content:"\e0b2";}
.elegant-social_vimeo_circle:before{content:"\e0b3";}
.elegant-social_linkedin_circle:before{content:"\e0b4";}
.elegant-social_rss_circle:before{content:"\e0b5";}
.elegant-social_deviantart_circle:before{content:"\e0b6";}
.elegant-social_share_circle:before{content:"\e0b7";}
.elegant-social_myspace_circle:before{content:"\e0b8";}
.elegant-social_skype_circle:before{content:"\e0b9";}
.elegant-social_youtube_circle:before{content:"\e0ba";}
.elegant-social_picassa_circle:before{content:"\e0bb";}
.elegant-social_googledrive_alt2:before{content:"\e0bc";}
.elegant-social_flickr_circle:before{content:"\e0bd";}
.elegant-social_blogger_circle:before{content:"\e0be";}
.elegant-social_spotify_circle:before{content:"\e0bf";}
.elegant-social_delicious_circle:before{content:"\e0c0";}
.elegant-social_facebook_square:before{content:"\e0c1";}
.elegant-social_twitter_square:before{content:"\e0c2";}
.elegant-social_pinterest_square:before{content:"\e0c3";}
.elegant-social_googleplus_square:before{content:"\e0c4";}
.elegant-social_tumblr_square:before{content:"\e0c5";}
.elegant-social_stumbleupon_square:before{content:"\e0c6";}
.elegant-social_wordpress_square:before{content:"\e0c7";}
.elegant-social_instagram_square:before{content:"\e0c8";}
.elegant-social_dribbble_square:before{content:"\e0c9";}
.elegant-social_vimeo_square:before{content:"\e0ca";}
.elegant-social_linkedin_square:before{content:"\e0cb";}
.elegant-social_rss_square:before{content:"\e0cc";}
.elegant-social_deviantart_square:before{content:"\e0cd";}
.elegant-social_share_square:before{content:"\e0ce";}
.elegant-social_myspace_square:before{content:"\e0cf";}
.elegant-social_skype_square:before{content:"\e0d0";}
.elegant-social_youtube_square:before{content:"\e0d1";}
.elegant-social_picassa_square:before{content:"\e0d2";}
.elegant-social_googledrive_square:before{content:"\e0d3";}
.elegant-social_flickr_square:before{content:"\e0d4";}
.elegant-social_blogger_square:before{content:"\e0d5";}
.elegant-social_spotify_square:before{content:"\e0d6";}
.elegant-social_delicious_square:before{content:"\e0d7";}
.elegant-icon_printer:before{content:"\e103";}
.elegant-icon_calulator:before{content:"\e0ee";}
.elegant-icon_building:before{content:"\e0ef";}
.elegant-icon_floppy:before{content:"\e0e8";}
.elegant-icon_drive:before{content:"\e0ea";}
.elegant-icon_search-2:before{content:"\e101";}
.elegant-icon_id:before{content:"\e107";}
.elegant-icon_id-2:before{content:"\e108";}
.elegant-icon_puzzle:before{content:"\e102";}
.elegant-icon_like:before{content:"\e106";}
.elegant-icon_dislike:before{content:"\e0eb";}
.elegant-icon_mug:before{content:"\e105";}
.elegant-icon_currency:before{content:"\e0ed";}
.elegant-icon_wallet:before{content:"\e100";}
.elegant-icon_pens:before{content:"\e104";}
.elegant-icon_easel:before{content:"\e0e9";}
.elegant-icon_flowchart:before{content:"\e109";}
.elegant-icon_datareport:before{content:"\e0ec";}
.elegant-icon_briefcase:before{content:"\e0fe";}
.elegant-icon_shield:before{content:"\e0f6";}
.elegant-icon_percent:before{content:"\e0fb";}
.elegant-icon_globe:before{content:"\e0e2";}
.elegant-icon_globe-2:before{content:"\e0e3";}
.elegant-icon_target:before{content:"\e0f5";}
.elegant-icon_hourglass:before{content:"\e0e1";}
.elegant-icon_balance:before{content:"\e0ff";}
.elegant-icon_rook:before{content:"\e0f8";}
.elegant-icon_printer-alt:before{content:"\e0fa";}
.elegant-icon_calculator_alt:before{content:"\e0e7";}
.elegant-icon_building_alt:before{content:"\e0fd";}
.elegant-icon_floppy_alt:before{content:"\e0e4";}
.elegant-icon_drive_alt:before{content:"\e0e5";}
.elegant-icon_search_alt:before{content:"\e0f7";}
.elegant-icon_id_alt:before{content:"\e0e0";}
.elegant-icon_id-2_alt:before{content:"\e0fc";}
.elegant-icon_puzzle_alt:before{content:"\e0f9";}
.elegant-icon_like_alt:before{content:"\e0dd";}
.elegant-icon_dislike_alt:before{content:"\e0f1";}
.elegant-icon_mug_alt:before{content:"\e0dc";}
.elegant-icon_currency_alt:before{content:"\e0f3";}
.elegant-icon_wallet_alt:before{content:"\e0d8";}
.elegant-icon_pens_alt:before{content:"\e0db";}
.elegant-icon_easel_alt:before{content:"\e0f0";}
.elegant-icon_flowchart_alt:before{content:"\e0df";}
.elegant-icon_datareport_alt:before{content:"\e0f2";}
.elegant-icon_briefcase_alt:before{content:"\e0f4";}
.elegant-icon_shield_alt:before{content:"\e0d9";}
.elegant-icon_percent_alt:before{content:"\e0da";}
.elegant-icon_globe_alt:before{content:"\e0de";}
.elegant-icon_clipboard:before {
content: "\e0e6";
}@font-face{font-family:'Pe-icon-7-stroke';src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/pe7s/Pe-icon-7-stroke.eot?d7yf1v);src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/pe7s/Pe-icon-7-stroke.eot?#iefixd7yf1v) format('embedded-opentype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/pe7s/Pe-icon-7-stroke.woff?d7yf1v) format('woff'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/pe7s/Pe-icon-7-stroke.ttf?d7yf1v) format('truetype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/pe7s/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke) format('svg');font-weight:normal;font-style:normal;}
[class^="pe-7s-"], [class*=" pe-7s-"]{display:inline-block;font-family:'Pe-icon-7-stroke';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.pe-7s-album:before{content:"\e6aa";}
.pe-7s-arc:before{content:"\e6ab";}
.pe-7s-back-2:before{content:"\e6ac";}
.pe-7s-bandaid:before{content:"\e6ad";}
.pe-7s-car:before{content:"\e6ae";}
.pe-7s-diamond:before{content:"\e6af";}
.pe-7s-door-lock:before{content:"\e6b0";}
.pe-7s-eyedropper:before{content:"\e6b1";}
.pe-7s-female:before{content:"\e6b2";}
.pe-7s-gym:before{content:"\e6b3";}
.pe-7s-hammer:before{content:"\e6b4";}
.pe-7s-headphones:before{content:"\e6b5";}
.pe-7s-helm:before{content:"\e6b6";}
.pe-7s-hourglass:before{content:"\e6b7";}
.pe-7s-leaf:before{content:"\e6b8";}
.pe-7s-magic-wand:before{content:"\e6b9";}
.pe-7s-male:before{content:"\e6ba";}
.pe-7s-map-2:before{content:"\e6bb";}
.pe-7s-next-2:before{content:"\e6bc";}
.pe-7s-paint-bucket:before{content:"\e6bd";}
.pe-7s-pendrive:before{content:"\e6be";}
.pe-7s-photo:before{content:"\e6bf";}
.pe-7s-piggy:before{content:"\e6c0";}
.pe-7s-plugin:before{content:"\e6c1";}
.pe-7s-refresh-2:before{content:"\e6c2";}
.pe-7s-rocket:before{content:"\e6c3";}
.pe-7s-settings:before{content:"\e6c4";}
.pe-7s-shield:before{content:"\e6c5";}
.pe-7s-smile:before{content:"\e6c6";}
.pe-7s-usb:before{content:"\e6c7";}
.pe-7s-vector:before{content:"\e6c8";}
.pe-7s-wine:before{content:"\e6c9";}
.pe-7s-cloud-upload:before{content:"\e68a";}
.pe-7s-cash:before{content:"\e68c";}
.pe-7s-close:before{content:"\e680";}
.pe-7s-bluetooth:before{content:"\e68d";}
.pe-7s-cloud-download:before{content:"\e68b";}
.pe-7s-way:before{content:"\e68e";}
.pe-7s-close-circle:before{content:"\e681";}
.pe-7s-id:before{content:"\e68f";}
.pe-7s-angle-up:before{content:"\e682";}
.pe-7s-wristwatch:before{content:"\e690";}
.pe-7s-angle-up-circle:before{content:"\e683";}
.pe-7s-world:before{content:"\e691";}
.pe-7s-angle-right:before{content:"\e684";}
.pe-7s-volume:before{content:"\e692";}
.pe-7s-angle-right-circle:before{content:"\e685";}
.pe-7s-users:before{content:"\e693";}
.pe-7s-angle-left:before{content:"\e686";}
.pe-7s-user-female:before{content:"\e694";}
.pe-7s-angle-left-circle:before{content:"\e687";}
.pe-7s-up-arrow:before{content:"\e695";}
.pe-7s-angle-down:before{content:"\e688";}
.pe-7s-switch:before{content:"\e696";}
.pe-7s-angle-down-circle:before{content:"\e689";}
.pe-7s-scissors:before{content:"\e697";}
.pe-7s-wallet:before{content:"\e600";}
.pe-7s-safe:before{content:"\e698";}
.pe-7s-volume2:before{content:"\e601";}
.pe-7s-volume1:before{content:"\e602";}
.pe-7s-voicemail:before{content:"\e603";}
.pe-7s-video:before{content:"\e604";}
.pe-7s-user:before{content:"\e605";}
.pe-7s-upload:before{content:"\e606";}
.pe-7s-unlock:before{content:"\e607";}
.pe-7s-umbrella:before{content:"\e608";}
.pe-7s-trash:before{content:"\e609";}
.pe-7s-tools:before{content:"\e60a";}
.pe-7s-timer:before{content:"\e60b";}
.pe-7s-ticket:before{content:"\e60c";}
.pe-7s-target:before{content:"\e60d";}
.pe-7s-sun:before{content:"\e60e";}
.pe-7s-study:before{content:"\e60f";}
.pe-7s-stopwatch:before{content:"\e610";}
.pe-7s-star:before{content:"\e611";}
.pe-7s-speaker:before{content:"\e612";}
.pe-7s-signal:before{content:"\e613";}
.pe-7s-shuffle:before{content:"\e614";}
.pe-7s-shopbag:before{content:"\e615";}
.pe-7s-share:before{content:"\e616";}
.pe-7s-server:before{content:"\e617";}
.pe-7s-search:before{content:"\e618";}
.pe-7s-film:before{content:"\e6a5";}
.pe-7s-science:before{content:"\e619";}
.pe-7s-disk:before{content:"\e6a6";}
.pe-7s-ribbon:before{content:"\e61a";}
.pe-7s-repeat:before{content:"\e61b";}
.pe-7s-refresh:before{content:"\e61c";}
.pe-7s-add-user:before{content:"\e6a9";}
.pe-7s-refresh-cloud:before{content:"\e61d";}
.pe-7s-paperclip:before{content:"\e69c";}
.pe-7s-radio:before{content:"\e61e";}
.pe-7s-note2:before{content:"\e69d";}
.pe-7s-print:before{content:"\e61f";}
.pe-7s-network:before{content:"\e69e";}
.pe-7s-prev:before{content:"\e620";}
.pe-7s-mute:before{content:"\e69f";}
.pe-7s-power:before{content:"\e621";}
.pe-7s-medal:before{content:"\e6a0";}
.pe-7s-portfolio:before{content:"\e622";}
.pe-7s-like2:before{content:"\e6a1";}
.pe-7s-plus:before{content:"\e623";}
.pe-7s-left-arrow:before{content:"\e6a2";}
.pe-7s-play:before{content:"\e624";}
.pe-7s-key:before{content:"\e6a3";}
.pe-7s-plane:before{content:"\e625";}
.pe-7s-joy:before{content:"\e6a4";}
.pe-7s-photo-gallery:before{content:"\e626";}
.pe-7s-pin:before{content:"\e69b";}
.pe-7s-phone:before{content:"\e627";}
.pe-7s-plug:before{content:"\e69a";}
.pe-7s-pen:before{content:"\e628";}
.pe-7s-right-arrow:before{content:"\e699";}
.pe-7s-paper-plane:before{content:"\e629";}
.pe-7s-delete-user:before{content:"\e6a7";}
.pe-7s-paint:before{content:"\e62a";}
.pe-7s-bottom-arrow:before{content:"\e6a8";}
.pe-7s-notebook:before{content:"\e62b";}
.pe-7s-note:before{content:"\e62c";}
.pe-7s-next:before{content:"\e62d";}
.pe-7s-news-paper:before{content:"\e62e";}
.pe-7s-musiclist:before{content:"\e62f";}
.pe-7s-music:before{content:"\e630";}
.pe-7s-mouse:before{content:"\e631";}
.pe-7s-more:before{content:"\e632";}
.pe-7s-moon:before{content:"\e633";}
.pe-7s-monitor:before{content:"\e634";}
.pe-7s-micro:before{content:"\e635";}
.pe-7s-menu:before{content:"\e636";}
.pe-7s-map:before{content:"\e637";}
.pe-7s-map-marker:before{content:"\e638";}
.pe-7s-mail:before{content:"\e639";}
.pe-7s-mail-open:before{content:"\e63a";}
.pe-7s-mail-open-file:before{content:"\e63b";}
.pe-7s-magnet:before{content:"\e63c";}
.pe-7s-loop:before{content:"\e63d";}
.pe-7s-look:before{content:"\e63e";}
.pe-7s-lock:before{content:"\e63f";}
.pe-7s-lintern:before{content:"\e640";}
.pe-7s-link:before{content:"\e641";}
.pe-7s-like:before{content:"\e642";}
.pe-7s-light:before{content:"\e643";}
.pe-7s-less:before{content:"\e644";}
.pe-7s-keypad:before{content:"\e645";}
.pe-7s-junk:before{content:"\e646";}
.pe-7s-info:before{content:"\e647";}
.pe-7s-home:before{content:"\e648";}
.pe-7s-help2:before{content:"\e649";}
.pe-7s-help1:before{content:"\e64a";}
.pe-7s-graph3:before{content:"\e64b";}
.pe-7s-graph2:before{content:"\e64c";}
.pe-7s-graph1:before{content:"\e64d";}
.pe-7s-graph:before{content:"\e64e";}
.pe-7s-global:before{content:"\e64f";}
.pe-7s-gleam:before{content:"\e650";}
.pe-7s-glasses:before{content:"\e651";}
.pe-7s-gift:before{content:"\e652";}
.pe-7s-folder:before{content:"\e653";}
.pe-7s-flag:before{content:"\e654";}
.pe-7s-filter:before{content:"\e655";}
.pe-7s-file:before{content:"\e656";}
.pe-7s-expand1:before{content:"\e657";}
.pe-7s-exapnd2:before{content:"\e658";}
.pe-7s-edit:before{content:"\e659";}
.pe-7s-drop:before{content:"\e65a";}
.pe-7s-drawer:before{content:"\e65b";}
.pe-7s-download:before{content:"\e65c";}
.pe-7s-display2:before{content:"\e65d";}
.pe-7s-display1:before{content:"\e65e";}
.pe-7s-diskette:before{content:"\e65f";}
.pe-7s-date:before{content:"\e660";}
.pe-7s-cup:before{content:"\e661";}
.pe-7s-culture:before{content:"\e662";}
.pe-7s-crop:before{content:"\e663";}
.pe-7s-credit:before{content:"\e664";}
.pe-7s-copy-file:before{content:"\e665";}
.pe-7s-config:before{content:"\e666";}
.pe-7s-compass:before{content:"\e667";}
.pe-7s-comment:before{content:"\e668";}
.pe-7s-coffee:before{content:"\e669";}
.pe-7s-cloud:before{content:"\e66a";}
.pe-7s-clock:before{content:"\e66b";}
.pe-7s-check:before{content:"\e66c";}
.pe-7s-chat:before{content:"\e66d";}
.pe-7s-cart:before{content:"\e66e";}
.pe-7s-camera:before{content:"\e66f";}
.pe-7s-call:before{content:"\e670";}
.pe-7s-calculator:before{content:"\e671";}
.pe-7s-browser:before{content:"\e672";}
.pe-7s-box2:before{content:"\e673";}
.pe-7s-box1:before{content:"\e674";}
.pe-7s-bookmarks:before{content:"\e675";}
.pe-7s-bicycle:before{content:"\e676";}
.pe-7s-bell:before{content:"\e677";}
.pe-7s-battery:before{content:"\e678";}
.pe-7s-ball:before{content:"\e679";}
.pe-7s-back:before{content:"\e67a";}
.pe-7s-attention:before{content:"\e67b";}
.pe-7s-anchor:before{content:"\e67c";}
.pe-7s-albums:before{content:"\e67d";}
.pe-7s-alarm:before{content:"\e67e";}
.pe-7s-airplay:before {
content: "\e67f";
}@font-face{font-family:'FontAwesome';src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/fontawesome/fontawesome-webfont.eot?v=4.7.0);src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/fontawesome/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/fontawesome/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/fontawesome/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@font-face{font-family:'Nusafe Icon';src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/nuicons/nuicons.eot?9c9jm2);src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/nuicons/nuicons.eot?9c9jm2#iefix) format('embedded-opentype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/nuicons/nuicons.ttf?9c9jm2) format('truetype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/nuicons/nuicons.woff?9c9jm2) format('woff'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/nuicons/nuicons.svg?9c9jm2#nuicons) format('svg');font-weight:normal;font-style:normal;font-display:block;}
[class^="nu-"], [class*=" nu-"]{font-family:'Nusafe Icon' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.nu-donation-1:before{content:"\e900";}
.nu-charity:before{content:"\e901";}
.nu-dove:before{content:"\e902";}
.nu-school:before{content:"\e903";}
.nu-ribbon:before{content:"\e904";}
.nu-hospital:before{content:"\e905";}
.nu-smartphone:before{content:"\e906";}
.nu-search:before{content:"\e907";}
.nu-sprout:before{content:"\e908";}
.nu-megaphone:before{content:"\e909";}
.nu-telephone:before{content:"\e90a";}
.nu-piggy-bank:before{content:"\e90b";}
.nu-shirt:before{content:"\e90c";}
.nu-stand:before{content:"\e90d";}
.nu-money:before{content:"\e90e";}
.nu-heart:before{content:"\e90f";}
.nu-vaccine:before{content:"\e910";}
.nu-worldwide:before{content:"\e911";}
.nu-freedom:before{content:"\e912";}
.nu-equality:before{content:"\e913";}
.nu-porridge:before{content:"\e914";}
.nu-solidarity:before{content:"\e915";}
.nu-clipboard:before{content:"\e916";}
.nu-gift1:before{content:"\e917";}
.nu-donation:before{content:"\e918";}
.nu-first-aid-kit:before{content:"\e919";}
.nu-network:before{content:"\e91a";}
.nu-wheelchair:before{content:"\e91c";}
.nu-blood-donation-1:before{content:"\e91f";}
.nu-cardiogram:before{content:"\e920";}
.nu-blood-donation:before{content:"\e923";}
.nu-pin:before{content:"\e924";}
.nu-pawprint:before{content:"\e927";}
.nu-apple:before{content:"\e929";}
.nu-growth:before{content:"\e92a";}
.nu-shelter:before{content:"\e92b";}
.nu-bottle:before{content:"\e92d";}
.nu-education:before{content:"\e92e";}
.nu-medicine:before{content:"\e92f";}
.nu-voluntary:before{content:"\e930";}
.nu-money-bag:before{content:"\e931";}
.nu-family:before{content:"\e932";}
.nu-lifesaver:before{content:"\e933";}
.nu-letter:before{content:"\e934";}
.nu-food:before{content:"\e935";}
.nu-videocall:before{content:"\e936";}
.nu-sharing:before{content:"\e937";}
.nu-package:before{content:"\e938";}
.nu-balloons:before{content:"\e939";}
.nu-group:before{content:"\e93a";}
.nu-avatar:before{content:"\e91b";}
.nu-bear-face:before{content:"\e91d";}
.nu-book:before{content:"\e91e";}
.nu-donation3:before{content:"\e921";}
.nu-drugs:before{content:"\e922";}
.nu-gift:before{content:"\e925";}
.nu-harvest:before{content:"\e926";}
.nu-lifeline-in-a-heart-outline:before{content:"\e928";}
.nu-mortarboard:before{content:"\e92c";}
.nu-long-arrow-left:before{content:"\f177";}
.nu-long-arrow-right:before {
content: "\f178";
}@font-face{font-family:'Core Icon';src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/coreicons/coreicons.eot?);src:url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/coreicons/coreicons.eot?#iefix) format('embedded-opentype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/coreicons/coreicons.ttf?) format('truetype'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/coreicons/coreicons.woff?) format('woff'), url(//wsaegypt.com/wp-content/themes/nusafe/assets/font/coreicons/coreicons.svg?#coreicons) format('svg');font-weight:normal;font-style:normal;font-display:block;}
[class^="ci-"], [class*=" ci-"]{font-family:'Core Icon' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.ci-call:before{content:"\e900";}
.ci-email1:before{content:"\e938";}
.ci-home1:before{content:"\e93a";}
.ci-language:before{content:"\e93b";}
.ci-alarm-clock:before{content:"\e915";}
.ci-angle-double-down:before{content:"\e919";}
.ci-angle-double-left:before{content:"\e91c";}
.ci-angle-double-right:before{content:"\e920";}
.ci-angle-double-up:before{content:"\e923";}
.ci-angle-down:before{content:"\e924";}
.ci-angle-left:before{content:"\e927";}
.ci-angle-right:before{content:"\e929";}
.ci-angle-up:before{content:"\e92a";}
.ci-announcement:before{content:"\e92b";}
.ci-archive:before{content:"\e92d";}
.ci-arrow-circle-down:before{content:"\e92e";}
.ci-arrow-circle-left:before{content:"\e92f";}
.ci-arrow-circle-right:before{content:"\e932";}
.ci-arrow-circle-up:before{content:"\e933";}
.ci-bookmark:before{content:"\e934";}
.ci-briefcase:before{content:"\e935";}
.ci-calendar1:before{content:"\e936";}
.ci-check:before{content:"\e937";}
.ci-close:before{content:"\e939";}
.ci-comment:before{content:"\e93d";}
.ci-comment-alt:before{content:"\e93e";}
.ci-comments1:before{content:"\e93f";}
.ci-control-play:before{content:"\e945";}
.ci-folder:before{content:"\e96a";}
.ci-layout-tab:before{content:"\e9c0";}
.ci-location-pin:before{content:"\e9d1";}
.ci-user:before{content:"\ea47";}
.ci-calendar:before{content:"\e91f";}
.ci-success:before{content:"\e930";}
.ci-target:before{content:"\e931";}
.ci-next:before{content:"\ea60";}
.ci-back:before{content:"\ea62";}
.ci-comments:before{content:"\ea63";}
.ci-email:before{content:"\ea64";}
.ci-headphone-alt1:before{content:"\ea66";}
.ci-magnifying-glass:before{content:"\ea67";}
.ci-shopping-bag:before{content:"\ea68";}
.ci-time1:before{content:"\ea6b";}
.ci-world:before{content:"\ea6c";}
.ci-long-arrow-left:before{content:"\f177";}
.ci-long-arrow-right:before {
content: "\f178";
}html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, section, summary, time, mark, audio, video{margin:0;padding:0;border:0;outline:0;font:inherit;vertical-align:baseline;font-family:'Tajawal', sans-serif;font-size:100%;font-style:inherit;font-weight:inherit;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block}
html{font-size:62.5%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
*,
*:before,
*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
body{background-color:#fff;line-height:1;}
article, aside, details, figcaption, figure, footer, header, main, nav, section{display:block}
ol, ul{list-style:none}
table{border-collapse:collapse;border-spacing:0;}
caption, th, td{font-weight:normal;text-align:right;}
blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;}
blockquote, q{quotes:none}
a:focus{outline:none}
a:hover, a:active{outline:0}
a img{border:0}
img{max-width:100%;height:auto;}
select{max-width:100%}
body{font-family:'Tajawal', sans-serif !important;color:#646464;font-size:16px;line-height:1.75;background-color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;overflow-x:hidden;overflow-y:hidden;}
img {
height: auto;
max-width: 100%;
vertical-align: middle;
-ms-interpolation-mode: bicubic
} p{margin:0 0 25px;direction:rtl;}
strong, b, cite{font-weight:700;}
dfn, cite, em, i{font-style:italic;}
blockquote{font-size:18px;line-height:30px;font-weight:400;color:#191919;padding:0 20px;position:relative;margin:40px 0;}
blockquote:before{content:"";position:absolute;left:0;top:0;width:2px;height:100%;background-color:#fd5a5a;}
blockquote cite{font-style:italic;font-size:14px;font-weight:400;color:#191919;position:relative;margin-top:25px;}
blockquote > p:last-child{margin-bottom:0;}
blockquote i{font-style:normal;}
abbr, acronym{border-bottom:1px dotted #dddfe1;cursor:help;}
mark, ins{text-decoration:none;background-color:#fff9c0;}
sup, sub{font-size:75%;height:0;line-height:0;position:relative;vertical-align:baseline;}
sup{top:-6px;}
sub{bottom:-3px;}
small{font-size:75%;}
big{font-size:125%;}
address{font-style:italic;margin:0 0 20px;}
code, kbd, tt, var{font-family:Inconsolata, monospace;font-size:14px;}
pre{margin:15px 0;padding:15px;background-color:#f7f7f7;border:1px solid #dddfe1;overflow-x:auto;font-family:Inconsolata, monospace;-webkit-hyphens:none;hyphens:none;border-radius:0;height:auto;}
html{box-sizing:border-box;}
*,
*:before,
*:after{box-sizing:inherit;}
hr{background-color:#dddfe1;border:0;height:1px;margin-bottom:20px;}
ul, ol{padding:0;margin:0 0 20px 30px;}
ul{list-style:disc;}
ul ul{list-style-type:circle;}
ol{list-style:decimal;}
li > ul, li > ol{margin-bottom:0;}
dl, dd{margin:0 0 20px;}
dt{font-weight:bold;}
del{opacity:0.5;}
table, th, td{border:1px solid #dddfe1;}
table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 25px;table-layout:fixed;width:100%;}
caption, th, td{font-weight:normal;text-align:left;}
th{border-width:0 1px 1px 0;font-weight:bold;}
td{border-width:0 1px 1px 0;}
th, td{padding:8px 12px;}
embed, iframe, object, video{margin-bottom:20px;max-width:100%;vertical-align:middle;}
p > embed, p > iframe, p > object, p > video{margin-bottom:0;}
.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important;height:1px;width:1px;overflow:hidden;}
.screen-reader-text:focus{background-color:#dddfe1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0, 0, 0, 0.6);clip:auto !important;color:#21759b;display:block;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;}
button, input{line-height:normal;transition:0.3s;}
button, input, select, textarea{font-size:100%;line-height:inherit;vertical-align:baseline;}
.widget select{width:100%;}
input, textarea{font-size:1em;max-width:100%;background-image:-webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));}
textarea{overflow:auto;vertical-align:top;}
input[type="checkbox"]{display:inline;}
button, input[type="button"],
input[type="reset"],
input[type="submit"]{line-height:1;cursor:pointer;-webkit-appearance:button;border:0;font-weight:500;}
input[type="checkbox"],
input[type="radio"]{padding:0;}
input[type="search"]{-webkit-appearance:textfield;}
input[type="search"]:-webkit-search-decoration{-webkit-appearance:none;}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration{display:none;}
button:-moz-focus-inner, input:-moz-focus-inner{border:0;padding:0;}
input:-webkit-autofill{-webkit-box-shadow:0 0 0px 1000px #f7f7f7 inset}
input[type="search"]{outline:0}
input[type="search"]:-webkit-search-decoration,
input[type="search"]:-webkit-search-cancel-button,
input[type="search"]:-webkit-search-results-button,
input[type="search"]:-webkit-search-results-decoration{display:none}
select, textarea, input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]{font-family:'Tajawal', sans-serif !important;color:#646464;background-color:#fff;padding:14px 20px 17px;border-radius:5px;border-style:solid;border-width:1px;border-color:#dddfe1;font-size:16px;margin-bottom:30px;text-shadow:none;box-shadow:none;box-sizing:border-box;transition:all ease 0.3s;}
select{padding:8px 20px;width:100%;-webkit-appearance:none;background:#fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='gray'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;background-size:10px;background-position:calc(100% - 20px) 50%;background-repeat:no-repeat;}
textarea:focus, input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus{border-color:#fd5a5a;outline:0;-webkit-box-shadow:none;box-shadow:none;}
button, input[type="button"],
input[type="reset"],
input[type="submit"]{font-family:'Tajawal', sans-serif !important;font-size:13px;line-height:26px;text-transform:uppercase;color:#fff;background-color:#fd5a5a;padding:17px 35px;border-radius:3px;display:inline-block;-webkit-appearance:none;transition:all ease 0.3s;}
button:hover, input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus, input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus{outline:0;background-color:#191919;color:#fff;border-color:#191919;}::placeholder{color:#999;opacity:1;}:-ms-input-placeholder{color:#999;}::-ms-input-placeholder { color: #999;
} a{color:#fd5a5a;outline:0;text-decoration:none;transition:all ease 0.3s;}
a:hover, a:focus, a:active{outline:0;color:#191919;text-decoration:none}
h1, h2, h3, h4, h5, h6{font-family:'Tajawal', sans-serif !important;color:#191919;margin:0 0 18px;text-rendering:optimizeLegibility;}
h1{font-size:3.5em;line-height:1.2;}
h2{font-size:3em;line-height:1.2;}
h3{font-size:2.625em;line-height:1.3;}
h4{font-size:2.25em;line-height:1.3;}
h5{font-size:1.75em;line-height:1.35;}
h6{font-size:1.375em;line-height:1.555;}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{color:inherit}
.heading-font{font-family:"Tajawal", sans-serif !important;text-rendering:optimizeLegibility;}
.display-none, .hidden{display:none !important;}
.display-block{display:block !important;}
.display-inline{display:inline !important;}
.display-inline-block{display:inline-block !important;}
.position-relative{position:relative !important;}
.position-absolute{position:absolute !important;}
.overflow-inherit{overflow:inherit !important;}
.overflow-hidden{overflow:hidden !important;}
.overflow-visible{overflow:visible !important;}
.display-flex{display:flex;}
.justify-content-center{justify-content:center;}
.justify-content-flex-end{justify-content:flex-end;}
.flex-direction-column{flex-direction:column;}
.flex-direction-row{flex-direction:row;}
.has-shadow{box-shadow:0 10px 20px 0 rgba(0, 41, 124, 0.1);}
.has-shadow-2{box-shadow:0 -10px 20px 0 rgba(0, 41, 124, 0.1);}
.hover-has-shadow:hover{box-shadow:0 10px 20px 0 rgba(0, 41, 124, 0.1);}
.hover-has-shadow-2:hover{box-shadow:0 -10px 20px 0 rgba(0, 41, 124, 0.1);}
.text-accent-color{color:#fd5a5a;}
.text-color-1{color:#0fc392;}
.text-color-2{color:#f37a32;}
.text-color-3{color:#bb5bd6;}
.text-color-4{color:#32b1f3;}
.text-color-5{color:#f87055;}
.text-white{color:#fff !important;}
.text-dark{color:#191919 !important;}
.text-light{color:#646464 !important;}
.text-very-light{color:#a0a0a0 !important;}
.link-dark{color:#191919 !important;}
.link-gray{color:#646464 !important;}
.link-dark:hover, .link-gray:hover{color:#fd5a5a !important;}
.accent-color{color:#fd5a5a;}
.dark-color{color:#191919 !important;}
.bg-accent{background-color:#fd5a5a;}
.bg-dark{background-color:#191919 !important;}
.bg-light{background-color:#f0f0f0 !important;}
.bg-very-light{background-color:#f7f7f7 !important;}
.border-accent{border-color:#fd5a5a;}
.text-italic{font-style:italic !important;}
.text-center{text-align:center !important;}
.text-right{text-align:right !important;}
.text-left{text-align:left !important;}
.text-del{text-decoration:line-through !important;}
.underline-solid, .underline-dotted, .underline-dashed{position:relative;}
.underline-solid:after, .underline-dotted:after, .underline-dashed:after{content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;border-bottom:1px solid #fd5a5a;}
.underline-dotted:after{border-bottom-style:dotted;}
.underline-dashed:after{border-bottom-style:dashed;}
.box-shadow{box-shadow:0px 0px 20px 0px #e9e9e9 !important;}
.letter-spacing-1px{letter-spacing:1px !important;}
.letter-spacing-2px{letter-spacing:2px !important;}
.letter-spacing-3px{letter-spacing:3px !important;}
.letter-spacing-4px{letter-spacing:4px !important;}
.letter-spacing-5px{letter-spacing:5px !important;}
.letter-spacing-6px{letter-spacing:6px !important;}
.letter-spacing-7px{letter-spacing:7px !important;}
.letter-spacing-8px{letter-spacing:8px !important;}
.letter-spacing-9px{letter-spacing:9px !important;}
.letter-spacing-10px{letter-spacing:10px !important;}
.font-size-10{font-size:10px;}
.font-size-11{font-size:11px;}
.font-size-12{font-size:12px;}
.font-size-13{font-size:13px;}
.font-size-14{font-size:14px;}
.font-size-15{font-size:15px;}
.font-size-16{font-size:16px;}
.font-size-17{font-size:17px;}
.font-size-18{font-size:18px;}
.font-size-19{font-size:19px;}
.font-size-20{font-size:20px;}
.font-size-21{font-size:21px;}
.font-size-22{font-size:22px;}
.font-size-23{font-size:23px;}
.font-size-24{font-size:24px;}
.font-size-25{font-size:25px;}
.font-size-26{font-size:26px;}
.font-size-27{font-size:27px;}
.font-size-28{font-size:28px;}
.font-size-29{font-size:29px;}
.font-size-30{font-size:30px;}
.line-height-20{line-height:22px;}
.line-height-1{line-height:21px;}
.line-height-22{line-height:22px;}
.line-height-23{line-height:23px;}
.line-height-24{line-height:24px;}
.line-height-25{line-height:25px;}
.line-height-26{line-height:26px;}
.line-height-27{line-height:27px;}
.line-height-28{line-height:28px;}
.line-height-29{line-height:29px;}
.line-height-30{line-height:30px;}
.line-height-31{line-height:31px;}
.line-height-32{line-height:32px;}
.line-height-33{line-height:33px;}
.line-height-34{line-height:34px;}
.line-height-35{line-height:35px;}
.font-weight-100{font-weight:100;}
.font-weight-200{font-weight:200;}
.font-weight-300{font-weight:300;}
.font-weight-400{font-weight:400;}
.font-weight-500{font-weight:500;}
.font-weight-600{font-weight:600;}
.font-weight-700{font-weight:700;}
.font-weight-800{font-weight:800;}
.font-weight-900{font-weight:900;}
.margin-bottom-0{margin-bottom:0px;}
.margin-bottom-5{margin-bottom:5px;}
.margin-bottom-10{margin-bottom:10px;}
.margin-bottom-15{margin-bottom:15px;}
.margin-bottom-20{margin-bottom:20px;}
.margin-bottom-25{margin-bottom:25px;}
.margin-bottom-30{margin-bottom:30px;}
.margin-bottom-35{margin-bottom:35px;}
.margin-bottom-40{margin-bottom:40px;}
.margin-bottom-45{margin-bottom:45px;}
.margin-bottom-50{margin-bottom:50px;}
.margin-bottom-55{margin-bottom:55px;}
.margin-bottom-60{margin-bottom:60px;}
.margin-bottom-65{margin-bottom:65px;}
.margin-bottom-70{margin-bottom:70px;}
.margin-bottom-75{margin-bottom:75px;}
.margin-bottom-80{margin-bottom:80px;}
.margin-bottom-85{margin-bottom:85px;}
.margin-bottom-90{margin-bottom:90px;}
.margin-bottom-95{margin-bottom:95px;}
.margin-bottom-100{margin-bottom:100px;}
.margin-top-0{margin-top:0px;}
.margin-top-5{margin-top:5px;}
.margin-top-10{margin-top:10px;}
.margin-top-15{margin-top:15px;}
.margin-top-20{margin-top:20px;}
.margin-top-25{margin-top:25px;}
.margin-top-30{margin-top:30px;}
.margin-top-35{margin-top:35px;}
.margin-top-40{margin-top:40px;}
.margin-top-45{margin-top:45px;}
.margin-top-50{margin-top:50px;}
.margin-top-55{margin-top:55px;}
.margin-top-60{margin-top:60px;}
.margin-top-65{margin-top:65px;}
.margin-top-70{margin-top:70px;}
.margin-top-75{margin-top:75px;}
.margin-top-80{margin-top:80px;}
.margin-top-85{margin-top:85px;}
.margin-top-90{margin-top:90px;}
.margin-top-95{margin-top:95px;}
.margin-top-100{margin-top:100px;}
.padding-bottom-0{padding-bottom:0px;}
.padding-bottom-5{padding-bottom:5px;}
.padding-bottom-10{padding-bottom:10px;}
.padding-bottom-15{padding-bottom:15px;}
.padding-bottom-20{padding-bottom:20px;}
.padding-bottom-25{padding-bottom:25px;}
.padding-bottom-30{padding-bottom:30px;}
.padding-bottom-35{padding-bottom:35px;}
.padding-bottom-40{padding-bottom:40px;}
.padding-bottom-45{padding-bottom:45px;}
.padding-bottom-50{padding-bottom:50px;}
.padding-bottom-55{padding-bottom:55px;}
.padding-bottom-60{padding-bottom:60px;}
.padding-bottom-65{padding-bottom:65px;}
.padding-bottom-70{padding-bottom:70px;}
.padding-bottom-75{padding-bottom:75px;}
.padding-bottom-80{padding-bottom:80px;}
.padding-bottom-85{padding-bottom:85px;}
.padding-bottom-90{padding-bottom:90px;}
.padding-bottom-95{padding-bottom:95px;}
.padding-bottom-100{padding-bottom:100px;}
.padding-top-0{padding-top:0px;}
.padding-top-5{padding-top:5px;}
.padding-top-10{padding-top:10px;}
.padding-top-15{padding-top:15px;}
.padding-top-20{padding-top:20px;}
.padding-top-25{padding-top:25px;}
.padding-top-30{padding-top:30px;}
.padding-top-35{padding-top:35px;}
.padding-top-40{padding-top:40px;}
.padding-top-45{padding-top:45px;}
.padding-top-50{padding-top:50px;}
.padding-top-55{padding-top:55px;}
.padding-top-60{padding-top:60px;}
.padding-top-65{padding-top:65px;}
.padding-top-70{padding-top:70px;}
.padding-top-75{padding-top:75px;}
.padding-top-80{padding-top:80px;}
.padding-top-85{padding-top:85px;}
.padding-top-90{padding-top:90px;}
.padding-top-95{padding-top:95px;}
.padding-top-100{padding-top:100px;}
.rounded-30{border-radius:30px;}
.clear:before, .clear:after, .clearfix:before, .clearfix:after, .nusafe-container:before, .nusafe-container:after{clear:both;display:table;line-height:0;content:"";}
.clear:after, .clearfix:after, .nusafe-container:after{clear:both;}
.index1{z-index:1 !important;}
.index-1{z-index:-1 !important;}
.trapezoid-right{position:relative;}
.trapezoid-right:after{position:absolute;top:0;left:-180px;width:180px;height:100%;content:'';z-index:1;border-bottom:900px solid #fd5a5a;border-left:90px solid transparent;}
.video-btn-particular .url-wrap{transform:translate(-118%, -50%) !important;}
.text-shadow{text-shadow:0 0 5px rgba(0,0,0,0.1);}
.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{padding-top:0 !important;}
.wpb_row, .wpb_content_element, ul.wpb_thumbnails-fluid > li, .last_toggle_el_margin, .wpb_button{margin-bottom:0 !important;}
.wp-block-gallery, .wp-block-calendar{margin-bottom:30px;}
.wp-block-search{margin-bottom:20px;}
.wp-block-search input{margin-bottom:0;}
.vc_row.vc-custom-col-spacing-0px{margin-left:0;margin-right:0;}
.vc_row.vc-custom-col-spacing-0px .vc_column_container{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-0px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-1px{margin-left:-0.5px;margin-right:-0.5px;}
.vc_row.vc-custom-col-spacing-1px .vc_column_container{padding-left:0.5px;padding-right:0.5px;}
.vc_row.vc-custom-col-spacing-1px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-5px{margin-left:-2.5px;margin-right:-2.5px;}
.vc_row.vc-custom-col-spacing-5px .vc_column_container{padding-left:2.5px;padding-right:2.5px;}
.vc_row.vc-custom-col-spacing-5px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-10px{margin-left:-5px;margin-right:-5px;}
.vc_row.vc-custom-col-spacing-10px .vc_column_container{padding-left:5px;padding-right:5px;}
.vc_row.vc-custom-col-spacing-10px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-20px{margin-left:-10px;margin-right:-10px;}
.vc_row.vc-custom-col-spacing-20px .vc_column_container{padding-left:10px;padding-right:10px;}
.vc_row.vc-custom-col-spacing-20px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-30px{margin-left:-15px;margin-right:-15px;}
.vc_row.vc-custom-col-spacing-30px .vc_column_container{padding-left:15px;padding-right:15px;}
.vc_row.vc-custom-col-spacing-30px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-40px{margin-left:-20px;margin-right:-20px;}
.vc_row.vc-custom-col-spacing-40px .vc_column_container{padding-left:20px;padding-right:20px;}
.vc_row.vc-custom-col-spacing-40px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-50px{margin-left:-25px;margin-right:-25px;}
.vc_row.vc-custom-col-spacing-50px .vc_column_container{padding-left:25px;padding-right:25px;}
.vc_row.vc-custom-col-spacing-50px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-60px{margin-left:-30px;margin-right:-30px;}
.vc_row.vc-custom-col-spacing-60px .vc_column_container{padding-left:30px;padding-right:30px;}
.vc_row.vc-custom-col-spacing-60px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-70px{margin-left:-35px;margin-right:-35px;}
.vc_row.vc-custom-col-spacing-70px .vc_column_container{padding-left:35px;padding-right:35px;}
.vc_row.vc-custom-col-spacing-70px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-80px{margin-left:-40px;margin-right:-40px;}
.vc_row.vc-custom-col-spacing-80px .vc_column_container{padding-left:40px;padding-right:40px;}
.vc_row.vc-custom-col-spacing-80px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-90px{margin-left:-45px;margin-right:-45px;}
.vc_row.vc-custom-col-spacing-90px .vc_column_container{padding-left:45px;padding-right:45px;}
.vc_row.vc-custom-col-spacing-90px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.vc_row.vc-custom-col-spacing-100px{margin-left:-50px;margin-right:-50px;}
.vc_row.vc-custom-col-spacing-100px .vc_column_container{padding-left:50px;padding-right:50px;}
.vc_row.vc-custom-col-spacing-100px .vc_column_container > .vc_column-inner{padding-left:0;padding-right:0;}
.wpb_single_image{position:relative;overflow:hidden;}
.custom.tparrows{background-color:rgba(255, 255, 2555, 0.3) !important;width:60px !important;height:60px !important;border-radius:50%;transition:all ease 0.3s;}
.custom.tparrows.tp-leftarrow:before, .custom.tparrows.tp-rightarrow:before{content:"\f177" !important;font-family:"Core Icon" !important;font-weight:normal;font-size:22px !important;color:#191919 !important;line-height:60px !important;}
.custom.tparrows.tp-rightarrow:before{content:"\f178" !important;}
.custom.tparrows:hover{background-color:#fff !important;}
.tp-bullets.custom .tp-bullet{width:8px;height:8px;border:2px solid #fff;border-radius:50%;background-color:transparent;transition:all ease 0.3s;}
.tp-bullets.custom .tp-bullet.selected{background-color:#fff;}
a.rev-btn{transition:background 0.3s ease 0s, color 0.3s ease 0s !important;}
.owl-theme .owl-nav, .owl-theme .owl-dots{display:none;}
.has-bullets .owl-theme .owl-dots{display:block;padding-top:50px;}
.has-bullets.bullet45 .owl-theme .owl-dots{padding-top:45px;}
.has-bullets.bullet40 .owl-theme .owl-dots{padding-top:40px;}
.has-bullets.bullet35 .owl-theme .owl-dots{padding-top:35px;}
.has-bullets.bullet30 .owl-theme .owl-dots{padding-top:30px;}
.has-bullets.bullet25 .owl-theme .owl-dots{padding-top:25px;}
.has-bullets.bullet20 .owl-theme .owl-dots{padding-top:20px;}
.has-bullets.bullet15 .owl-theme .owl-dots{padding-top:15px;}
.has-bullets.bullet10 .owl-theme .owl-dots{padding-top:10px;}
.has-bullets.bullet-10 .owl-theme .owl-dots{margin-top:-21px;padding:0 0 10px;}
.has-bullets.bullet-20 .owl-theme .owl-dots{margin-top:-31px;padding:0 0 20px;}
.has-bullets.bullet-30 .owl-theme .owl-dots{margin-top:-41px;padding:0 0 30px;}
.has-bullets.bullet-40 .owl-theme .owl-dots{margin-top:-51px;padding:0 0 40px;}
.has-bullets.bullet-50 .owl-theme .owl-dots{margin-top:-61px;padding:0 0 50px;}
.has-arrows .owl-theme .owl-nav{display:block;}
.has-arrows.arrow-top .owl-theme .owl-nav [class*='owl-'],
.has-arrows.arrow-center .owl-theme .owl-nav [class*='owl-']{position:absolute;}
.has-arrows .owl-theme .owl-nav .owl-next{right:0;}
.has-arrows.arrow-bottom.offsetcenter .owl-theme .owl-nav{position:relative;}
.has-arrows.arrow-top .owl-theme .owl-nav [class*='owl-']{right:40px;}
.has-arrows.arrow-top .owl-theme .owl-nav .owl-next{right:0;}
.has-arrows.arrow-top.arrow20 .owl-theme .owl-nav [class*='owl-']{top:-70px;}
.has-arrows.arrow-top.arrow25 .owl-theme .owl-nav [class*='owl-']{top:-75px;}
.has-arrows.arrow-top.arrow30 .owl-theme .owl-nav [class*='owl-']{top:-80px;}
.has-arrows.arrow-top.arrow35 .owl-theme .owl-nav [class*='owl-']{top:-85px;}
.has-arrows.arrow-top.arrow40 .owl-theme .owl-nav [class*='owl-']{top:-90px;}
.has-arrows.arrow-top.arrow45 .owl-theme .owl-nav [class*='owl-']{top:-95px;}
.has-arrows.arrow-top.arrow50 .owl-theme .owl-nav [class*='owl-']{top:-100px;}
.has-arrows.arrow-top.arrow55 .owl-theme .owl-nav [class*='owl-']{top:-105px;}
.has-arrows.arrow-top.arrow60 .owl-theme .owl-nav [class*='owl-']{top:-110px;}
.has-arrows.arrow-top.arrow65 .owl-theme .owl-nav [class*='owl-']{top:-115px;}
.has-arrows.arrow-top.arrow70 .owl-theme .owl-nav [class*='owl-']{top:-120px;}
.has-arrows.arrow-top.arrow75 .owl-theme .owl-nav [class*='owl-']{top:-125px;}
.has-arrows.arrow-top.arrow80 .owl-theme .owl-nav [class*='owl-']{top:-130px;}
.has-arrows.arrow-top.arrow85 .owl-theme .owl-nav [class*='owl-']{top:-135px;}
.has-arrows.arrow-top.arrow90 .owl-theme .owl-nav [class*='owl-']{top:-140px;}
.has-arrows.arrow-top.arrow95 .owl-theme .owl-nav [class*='owl-']{top:-145px;}
.has-arrows.arrow-top.arrow100 .owl-theme .owl-nav [class*='owl-']{top:-150px;}
.has-arrows.arrow-center .owl-theme .owl-nav .owl-prev{top:50%;transform:translate(-50%, -50%);}
.has-arrows.arrow-center .owl-theme .owl-nav .owl-next{top:50%;transform:translate(50%, -50%);}
.has-arrows.arrow-center.offset-70 .owl-theme .owl-nav [class*='owl-']{left:70px;}
.has-arrows.arrow-center.offset-70 .owl-theme .owl-nav .owl-next{left:auto;right:70px;}
.has-arrows.arrow-center.offset-60 .owl-theme .owl-nav [class*='owl-']{left:60px;}
.has-arrows.arrow-center.offset-60 .owl-theme .owl-nav .owl-next{left:auto;right:60px;}
.has-arrows.arrow-center.offset-50 .owl-theme .owl-nav [class*='owl-']{left:50px;}
.has-arrows.arrow-center.offset-50 .owl-theme .owl-nav .owl-next{left:auto;right:50px;}
.has-arrows.arrow-center.offset-40 .owl-theme .owl-nav [class*='owl-']{left:40px;}
.has-arrows.arrow-center.offset-40 .owl-theme .owl-nav .owl-next{left:auto;right:40px;}
.has-arrows.arrow-center.offset-30 .owl-theme .owl-nav [class*='owl-']{left:30px;}
.has-arrows.arrow-center.offset-30 .owl-theme .owl-nav .owl-next{left:auto;right:30px;}
.has-arrows.arrow-center.offset-20 .owl-theme .owl-nav [class*='owl-']{left:20px;}
.has-arrows.arrow-center.offset-20 .owl-theme .owl-nav .owl-next{left:auto;right:20px;}
.has-arrows.arrow-center.offset-10 .owl-theme .owl-nav [class*='owl-']{left:10px;}
.has-arrows.arrow-center.offset-10 .owl-theme .owl-nav .owl-next{left:auto;right:10px;}
.has-arrows.arrow-center.offsetcenter .owl-theme .owl-nav .owl-prev{top:50%;left:0;transform:translate(-50%, -50%);}
.has-arrows.arrow-center.offsetcenter .owl-theme .owl-nav .owl-next{left:auto;top:50%;right:0;transform:translate(50%, -50%);}
.has-arrows.arrow-center.offset10 .owl-theme .owl-nav .owl-prev{left:-10px;}
.has-arrows.arrow-center.offset10 .owl-theme .owl-nav .owl-next{left:auto;right:-10px;}
.has-arrows.arrow-center.offset20 .owl-theme .owl-nav [class*='owl-']{left:-20px;}
.has-arrows.arrow-center.offset20 .owl-theme .owl-nav .owl-next{left:auto;right:-20px;}
.has-arrows.arrow-center.offset30 .owl-theme .owl-nav [class*='owl-']{left:-30px;}
.has-arrows.arrow-center.offset30 .owl-theme .owl-nav .owl-next{left:auto;right:-30px;}
.has-arrows.arrow-center.offset40 .owl-theme .owl-nav [class*='owl-']{left:-40px;}
.has-arrows.arrow-center.offset40 .owl-theme .owl-nav .owl-next{left:auto;right:-40px;}
.has-arrows.arrow-center.offset50 .owl-theme .owl-nav [class*='owl-']{left:-50px;}
.has-arrows.arrow-center.offset50 .owl-theme .owl-nav .owl-next{left:auto;right:-50px;}
.has-arrows.arrow-center.offset60 .owl-theme .owl-nav [class*='owl-']{left:-60px;}
.has-arrows.arrow-center.offset60 .owl-theme .owl-nav .owl-next{left:auto;right:-60px;}
.has-arrows.arrow-center.offset70 .owl-theme .owl-nav [class*='owl-']{left:-70px;}
.has-arrows.arrow-center.offset70 .owl-theme .owl-nav .owl-next{left:auto;right:-70px;}
.has-arrows.arrow-center.offset-v-120 .owl-theme .owl-nav [class*='owl-']{margin-top:-120px;}
.has-arrows.arrow-center.offset-v-110 .owl-theme .owl-nav [class*='owl-']{margin-top:-110px;}
.has-arrows.arrow-center.offset-v-100 .owl-theme .owl-nav [class*='owl-']{margin-top:-100px;}
.has-arrows.arrow-center.offset-v-90 .owl-theme .owl-nav [class*='owl-']{margin-top:-90px;}
.has-arrows.arrow-center.offset-v-80 .owl-theme .owl-nav [class*='owl-']{margin-top:-80px;}
.has-arrows.arrow-center.offset-v-70 .owl-theme .owl-nav [class*='owl-']{margin-top:-70px;}
.has-arrows.arrow-center.offset-v-60 .owl-theme .owl-nav [class*='owl-']{margin-top:-60px;}
.has-arrows.arrow-center.offset-v-50 .owl-theme .owl-nav [class*='owl-']{margin-top:-50px;}
.has-arrows.arrow-center.offset-v-40 .owl-theme .owl-nav [class*='owl-']{margin-top:-40px;}
.has-arrows.arrow-center.offset-v-30 .owl-theme .owl-nav [class*='owl-']{margin-top:-30px;}
.has-arrows.arrow-center.offset-v-20 .owl-theme .owl-nav [class*='owl-']{margin-top:-20px;}
.has-arrows.arrow-center.offset-v20 .owl-theme .owl-nav [class*='owl-']{margin-top:20px;}
.has-arrows.arrow-center.offset-v30 .owl-theme .owl-nav [class*='owl-']{margin-top:30px;}
.has-arrows.arrow-center.offset-v40 .owl-theme .owl-nav [class*='owl-']{margin-top:40px;}
.has-arrows.arrow-center.offset-v50 .owl-theme .owl-nav [class*='owl-']{margin-top:50px;}
.has-arrows.arrow-center.offset-v60 .owl-theme .owl-nav [class*='owl-']{margin-top:60px;}
.has-arrows.arrow-center.offset-v70 .owl-theme .owl-nav [class*='owl-']{margin-top:70px;}
.has-arrows.arrow-center.offset-v80 .owl-theme .owl-nav [class*='owl-']{margin-top:80px;}
.has-arrows.arrow-center.offset-v90 .owl-theme .owl-nav [class*='owl-']{margin-top:90px;}
.has-arrows.arrow-center.offset-v100 .owl-theme .owl-nav [class*='owl-']{margin-top:100px;}
.has-arrows.arrow-center.offset-v110 .owl-theme .owl-nav [class*='owl-']{margin-top:110px;}
.has-arrows.arrow-center.offset-v120 .owl-theme .owl-nav [class*='owl-']{margin-top:120px;}
.has-arrows.arrow-bottom.offsetcenter .owl-theme .owl-nav{display:block;text-align:center;}
.has-arrows.arrow-bottom .owl-theme .owl-nav .owl-next{margin-left:2px;}
.has-arrows.arrow-bottom.arrow25 .owl-theme .owl-nav{margin-top:25px;}
.has-arrows.arrow-bottom.arrow30 .owl-theme .owl-nav{margin-top:30px;}
.has-arrows.arrow-bottom.arrow35 .owl-theme .owl-nav{margin-top:35px;}
.has-arrows.arrow-bottom.arrow40 .owl-theme .owl-nav{margin-top:40px;}
.has-arrows.arrow-bottom.arrow45 .owl-theme .owl-nav{margin-top:45px;}
.has-arrows.arrow-bottom.arrow50 .owl-theme .owl-nav{margin-top:50px;}
.has-arrows.arrow-bottom.arrow55 .owl-theme .owl-nav{margin-top:55px;}
.has-arrows.arrow-bottom.arrow60 .owl-theme .owl-nav{margin-top:60px;}
.has-arrows.arrow-bottom.arrow65 .owl-theme .owl-nav{margin-top:65px;}
.has-arrows.arrow-bottom.arrow70 .owl-theme .owl-nav{margin-top:70px;}
.has-arrows.arrow-bottom.arrow75 .owl-theme .owl-nav{margin-top:75px;}
.has-arrows.arrow-bottom.arrow80 .owl-theme .owl-nav{margin-top:80px;}
.has-arrows.arrow-bottom.arrow85 .owl-theme .owl-nav{margin-top:85px;}
.has-arrows.arrow-bottom.arrow90 .owl-theme .owl-nav{margin-top:90px;}
.has-arrows.arrow-bottom.arrow95 .owl-theme .owl-nav{margin-top:95px;}
.has-arrows.arrow-bottom.arrow100 .owl-theme .owl-nav{margin-top:100px;}
.has-arrows.arrows-bottom-single .owl-theme .owl-nav [class*='owl-']{position:absolute;bottom:0;left:62.28%;}
.has-arrows.arrows-bottom-single .owl-theme .owl-nav .owl-prev{transform:translateX(-50px);}
.owl-theme .owl-nav [class*="owl-"]{text-align:center;width:40px;height:40px;font-size:0;display:inline-block;font-size:0;position:relative;transition:all ease .3s;padding:0;border-radius:unset;border:1px solid #fd5a5a;background-color:#fd5a5a;}
.owl-theme .owl-nav [class*="owl-"]:hover{border-color:#191919;background-color:#191919;}
.owl-theme .owl-nav [class*="owl-"]:after{font-size:13px;line-height:40px;content:"\f178";font-family:"Core Icon", sans-serif;position:absolute;left:0;top:0;text-indent:0;width:100%;height:100%;color:#fff;transition:0.3s;}
.owl-theme .owl-nav .owl-prev:after{content:"\f177";}
.owl-theme .owl-nav [class*="owl-"].disabled{cursor:default;background-color:transparent;border-color:#dddfe1;}
.owl-theme .owl-nav [class*="owl-"].disabled:after{color:#191919;}
.has-arrows.arrow-style-2 .owl-theme .owl-nav [class*="owl-"]{background-color:transparent;border:none;margin:0 10px;}
.has-arrows.arrow-style-2 .owl-theme .owl-nav [class*="owl-"]:after{font-size:30px;color:#191919;content:'\f178';}
.has-arrows.arrow-style-2 .owl-theme .owl-nav .owl-prev:after{content:'\f177';}
.has-arrows.arrow-style-2 .owl-theme .owl-nav [class*="owl-"]:hover:after,
.has-arrows.arrow-style-2 .owl-theme .owl-nav [class*="owl-"].disabled:hover:after{color:#fd5a5a;transform:scale(1.2);}
.arrow-style-2.arrow-bottom .owl-theme .owl-nav:after{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:8px;height:8px;border-radius:50%;content:'';background-color:#dddfe1;}
@media only screen and (max-width: 991px) {
.nusafe-images-carousel .owl-theme .owl-nav{display:block !important;}
.video-btn-particular .url-wrap{transform:translate(-50%, -50%) !important;}
}
@media only screen and (max-width: 767px) {
.has-arrows.arrows-bottom-single .owl-theme .owl-nav{position:absolute;right:40px;}
}
@media only screen and (max-width: 575px) {
.has-arrows.arrows-bottom-single .owl-theme .owl-nav{display:none !important;}
.nusafe-images-carousel .owl-theme .owl-nav{display:block !important;}
} .owl-theme .owl-dots{line-height:10px;text-align:center;}
.owl-theme .owl-dots .owl-dot{display:inline-block;background-color:transparent;line-height:10px;padding:0;margin:0;}
.owl-theme .owl-dots .owl-dot span{position:relative;display:inline-block;width:10px;height:10px;margin:0 5px;padding:0;border-radius:50%;cursor:pointer;background-color:#fff;}
.owl-theme .owl-dots .owl-dot.active span{background:#fd5a5a;}
@media only screen and (max-width: 991px) {
.hide-on-mobile{display:none !important;}
} .bypostauthor > article{}
.sticky-post{display:inline-block;color:#fd5a5a;font-size:20px;position:absolute;left:0;top:-10px;display:none;}
.post.sticky .post-title{position:relative;padding-left:15px;}
.post.sticky .post-title:after{position:absolute;top:50%;left:0;width:3px;height:calc( 100% - 10px );transform:translateY(-50%);background-color:#fd5a5a;content:'';}
.aligncenter{display:block;margin:0 auto;}
.alignright{float:right;margin:7px 0 15px 25px;}
.alignleft{float:left;margin:7px 25px 15px 0;}
blockquote.alignleft{margin:5px 20px 0;}
blockquote.alignright{margin:5px 0 20px 20px;}
blockquote.aligncenter{margin-bottom:20px;}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p, .wp-block-quote.has-text-align-right p em{font-style:normal;}
blockquote.has-text-align-right:before{right:0;left:unset;}
.wp-block-pullquote blockquote:before{display:none;}
.wp-block-pullquote{text-align:center;}
.wp-block-pullquote.is-style-solid-color{background-color:#dddfe1;}
.wp-block-pullquote.is-style-solid-color blockquote{text-align:center;}
.wp-block-group.has-background{padding:30px;}
.post-content .has-large-font-size{line-height:1.4;}
.floatleftcenter{float:none;margin:0 auto;}
.floatleft{float:left}
.floatright{float:right}
.wp-caption{text-align:center;max-width:100%;text-align:center;margin-bottom:20px;}
.wp-caption img{display:block;margin:0 auto;padding:0;border:0 none;}
.wp-caption img[class*="wp-image-"]{display:block;margin:0;}
.wp-caption .wp-caption-text, .gallery-caption{font-size:1em;padding:10px 0 0;margin:0;text-align:center;font-style:italic;}
.blocks-gallery-grid .blocks-gallery-image figcaption, .blocks-gallery-grid .blocks-gallery-item figcaption, .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption{text-shadow:0 0 5px rgba(0,0,0,0.1);}
.wp-caption.alignnone{margin-bottom:20px}
.wp-smiley{margin:0;max-height:1em;}
#img-attch-page{text-align:center;overflow:hidden;}
#img-attch-page img{display:inline-block;margin:0 auto;max-width:100%;margin-bottom:20px;}
.post-password-form label{font-weight:bolder;color:#191919;}
form.login .lost_password{display:inline-block;}
.wpstats{display:none}
.wp-block-button__link{margin:0 10px 10px 0;}
.wp-block-cover.has-background-dim .wp-block-cover-text{color:#fff;}
.wp-block-cover .wp-block-cover-text strong{font-weight:500;}
.wp-block-latest-comments, .wp-block-latest-posts{margin-left:0;}
.gallery{margin:0 -1.15% 30px;}
.gallery-item{display:inline-block;max-width:33.33%;padding:0 1.15% 2.3%;text-align:center;vertical-align:top;width:100%;}
.gallery-columns-1 .gallery-item{max-width:100%;}
.gallery-columns-2 .gallery-item{max-width:50%;}
.gallery-columns-4 .gallery-item{max-width:25%;}
.gallery-columns-5 .gallery-item{max-width:20%;}
.gallery-columns-6 .gallery-item{max-width:16.66%;}
.gallery-columns-7 .gallery-item{max-width:14.28%;}
.gallery-columns-8 .gallery-item{max-width:12.5%;}
.gallery-columns-9 .gallery-item{max-width:11.11%;}
.text-left{text-align:left;}
.text-right{text-align:right;}
.text-center{text-align:center;}
.nusafe-container{width:1140px;margin:0 auto;max-width:90%;}
#page{background:#fff;}
#main-content{padding:120px 0;}
.no-padding-content #main-content{padding:0;}
.page-single-project #main-content{padding:0 !important;background-image:none !important;}
#inner-content,
#inner-sidebar{position:relative;z-index:1;}
#inner-content:after,
#inner-sidebar:after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;border-style:solid;border-width:0;z-index:-1;}
#site-content{float:left;width:65.79%;}
#sidebar{float:right;width:31.579%;border-style:solid;border-color:#dddfe1;}
.sidebar-left #site-content{float:right;}
.sidebar-left #sidebar{float:left;}
.no-sidebar #site-content,
.page-empty-widget #site-content,
.blog-empty-widget #site-content,
.page-single-project #site-content,
#site-content.archive-project{width:100% !important;max-width:none !important;float:none !important;}
.site-layout-boxed #wrapper{background-color:#f4f4f4;padding:30px;}
.site-layout-boxed #page{width:1240px;max-width:100%;margin:0 auto;position:relative;}
.site-layout-boxed #page .nusafe-container{width:auto !important;max-width:none !important;padding-left:30px;padding-right:30px;}
.site-layout-boxed.box-shadow #page{box-shadow:0px 4px 6px rgba(0, 0, 0, 0.04);}
.site-layout-boxed #site-header.fixed-hide{width:1240px;left:50%;transform:translateX(-50%);}
#site-header{position:relative;z-index:100;border-style:solid;}
#site-header:after{background-color:transparent;content:"";z-index:-1;position:absolute;left:0;top:0;width:100%;height:100%;transition:all ease 0.3s;}
.site-header-inner{position:relative;padding-top:0;padding-bottom:0;height:100%;}
#site-header #main-nav .menu-fallback{padding-right:16px;position:relative;text-decoration:underline;display:inline-block;height:100px;line-height:100px;}
#site-header #main-nav .menu-fallback:hover{color:#aaa;}
#topbar{height:60px;position:relative;}
#topbar.has-divider:after{position:absolute;left::0;bottom:0;content:'';width:100%;height:1px;background-color:#dddfe1;}
#topbar .topbar-left{float:right;}
#topbar .topbar-right{float:left;}
#topbar .topbar-left > div{margin-right::20px}
#topbar .topbar-right > div{margin-left::20px;}
#topbar .topbar-left > div:first-child{margin-left:0px !important;}
#topbar .topbar-right > div:first-child{margin-right:0 !important;}
#topbar .topbar-info{float:right;margin:17px 0;}
#topbar .topbar-socials{float:right;margin:15px 0;}
#topbar .topbar-button{float:right;}
.topbar-info{font-size:13px;line-height:normal;font-weight:400;}
.topbar-info .content{position:relative;padding-left:25px;margin-left:20px;display:inline-block;line-height:26px;}
.topbar-info .content:before{content:"";font-family:"Core Icon";position:absolute;left:0;top:1px;font-weight:normal;}
.topbar-info .content.phone:before{content:"\ea66";}
.topbar-info .content.email:before{content:"\ea64";}
.topbar-info .content.location:before{content:"\e9d1";}
.topbar-info .content:last-child{margin-right:0 !important;}
.topbar-info.has-sep .content{margin-right:40px;}
.topbar-info.has-sep .content:after{position:absolute;top:-17px;right:-20px;width:1px;height:60px;background-color:#dddfe1;content:'';}
.topbar-info.has-sep .content:last-child:after{display:none !important;}
.topbar-socials .topbar-socials-inner{transition:all ease 0.3s;}
.topbar-socials a{margin-left:17px;font-size:14px;display:inline-block;position:relative;z-index:1;color:#8c8c8c;line-height:30px;display:inline-block;}
.topbar-socials a:hover{color:#fd5a5a;}
.topbar-socials a:last-child{margin-right:0;}
.topbar-socials.style-1 a{width:30px;height:30px;line-height:28px;margin-left:14px;border:1px solid #dddfe1;text-align:center;}
.topbar-socials.style-2 a{border:1px solid #dddfe1;border-radius:50%;width:30px;height:30px;line-height:28px;text-align:center;margin-left:14px;}
.topbar-socials.style-1 a:hover, .topbar-socials.style-2 a:hover{color:#fff;background-color:#fd5a5a;border-color:#fd5a5a;}
.topbar-button a{font-size:13px;line-height:26px;padding:17px 32px;background-color:#fd5a5a;color:#fff;text-transform:uppercase;font-weight:500;display:inline-block;text-align:center;}
.topbar-button a:hover{opacity:0.7;}
#topbar.topbar-light{background-color:#f5f5f5;}
#topbar.topbar-dark{background-color:#191919;}
#topbar.topbar-dark .topbar-info .content{color:#fff;}
#topbar.topbar-dark .topbar-info .content:after{background-color:#646464;}
#topbar.topbar-dark .topbar-socials a{color:#8c8c8c;border-color:#8c8c8c;}
#topbar.topbar-dark .topbar-socials a:hover{color:#fff;}
#site-logo{float:right;max-width:100%;transition:all ease 0.3s;}
#site-logo-inner{margin:31px 30px 0px;transition:all ease 0.3s;}
#site-logo .site-logo-text{color:#191919;font-size:30px;line-height:36px;font-weight:bolder;}
#site-logo .site-logo-text:hover{color:#fd5a5a;}
#main-nav{display:block;float:left;}
#main-nav ul{margin:0;}
#main-nav ul li{position:relative;list-style:none;padding-top:0;padding-bottom:0;}
#main-nav > ul > li{float:right;margin:0 14px;}
#main-nav > ul > li > a{font-size:16px;font-weight:500;color:#444;}
#main-nav > ul > li > a > span{padding-bottom:7px;position:relative;z-index:0;transition:0.3s;}
#main-nav > ul > li:hover > a > span{color:#fd5a5a;}
#main-nav > ul > li > a > span:before{position:absolute;z-index:-1;content:"";bottom:0;right:0;width:0;height:2px;background-color:#fd5a5a;transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.2s;}
#main-nav > ul > li:hover > a > span:before{width:100%;}
#main-nav > ul > li.menu-item-has-children > a > span:before{right:20px;}
#main-nav > ul > li.menu-item-has-children:hover > a > span:before{width:calc(100% - 20px);}
#main-nav > ul > li > a{display:block;height:106px;line-height:106px;}
#main-nav > ul > li.menu-item-has-children > a > span{padding-right:20px;}
#main-nav > ul > li.menu-item-has-children > a > span:after{line-height:normal;font-size:20px;font-weight:normal;content:"\e688";font-family:"Pe-icon-7-stroke";position:absolute;right:0;top:0;margin-top:3px;}
#main-nav > ul > li > a:not([href]){cursor:pointer;}
#main-nav .sub-menu{padding:19px 0;background-color:#fff;position:absolute;left:0;top:100%;width:250px;margin-top:5px;opacity:0;visibility:hidden;z-index:9999;box-shadow:0 0px 30px 0 rgba(0, 0, 0, 0.1);transition:all ease 0.3s;}
#main-nav .sub-menu .sub-menu{left:100%;top:-7px;transform:none;margin-left:0;}
#main-nav .sub-menu li a{padding:6px 37px;color:#646464;display:block;position:relative;}
#main-nav .sub-menu li a > span{position:relative;display:inline-block;}
#main-nav .sub-menu li a:hover{color:#191919;padding-left:40px;}
#main-nav .sub-menu li a:before{content:"";position:absolute;left:0;top:0;width:2px;height:0;background-color:#fd5a5a;transition:height 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.2s;}
#main-nav .sub-menu li a:hover:before{height:100%;}
#main-nav .sub-menu li:first-child > a{border:0;}
#main-nav li:hover > .sub-menu{margin-top:0;opacity:1;visibility:visible;transition:all ease 0.3s;}
#main-nav .sub-menu li.menu-item-has-children > a:after{line-height:normal;font-size:16px;font-weight:normal;content:"\e684";font-family:"Pe-icon-7-stroke";position:absolute;right:30px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);}
#main-nav .sub-menu.left{left:auto;right:0;}
#main-nav .sub-menu .sub-menu.left{left:-100%;}
#main-nav li.megamenu{position:inherit;}
#main-nav li.megamenu ul.sub-menu{z-index:99999;background-color:transparent;}
#main-nav li.megamenu > ul.sub-menu ul.sub-menu{transition:none;transform:none;padding:0;}
#main-nav li.megamenu ul.sub-menu li.menu-item-has-children > a:after,
#main-nav li.megamenu ul.sub-menu li.menu-item-has-children > a > span:after{display:none;}
#main-nav li.megamenu > ul.sub-menu{width:100%;left:0;right:auto;background-color:#fff;padding:40px 0;}
#main-nav li.megamenu > ul.sub-menu > li{display:block;float:left;width:100%;border-right:1px solid rgba(0, 0, 0, 0.08);}
#main-nav li.megamenu > ul.sub-menu > li:last-child{border:0;}
#main-nav li.megamenu.col-3 > ul.sub-menu > li{width:26.333%;margin-left:7%;}
#main-nav li.megamenu.col-3 > ul.sub-menu > li:nth-child(4n){clear:both;}
#main-nav li.megamenu.col-4 > ul.sub-menu > li{width:19%;margin-left:6%;}
#main-nav li.megamenu.col-4 > ul.sub-menu > li:nth-child(5n){clear:both;}
#main-nav li.megamenu.col-5 > ul.sub-menu > li{width:15%;margin-left:5%;}
#main-nav li.megamenu.col-5 > ul.sub-menu > li:nth-child(6n){clear:both;}
#main-nav li.megamenu > ul.sub-menu > li ul{display:block !important;top:auto !important;width:100% !important;min-width:0 !important;left:auto !important;position:relative !important;border:none !important;padding:0 !important;box-shadow:none !important;}
#main-nav li.megamenu > ul.sub-menu > .menu-item-has-children > a{transition:none;transform:none;position:relative;font-size:15px;color:#191919;margin-bottom:12px;}
#main-nav li.megamenu.no-heading > ul.sub-menu > .menu-item-has-children > a{display:none}
#main-nav li.megamenu:hover ul li ul{opacity:1;visibility:visible;}
#main-nav-mobi{display:block;position:fixed;top:0;left:-300px;height:100%;z-index:999999;width:300px;max-width:100%;padding-bottom:50px;overflow-x:hidden;overflow-y:auto;background-color:#191919;color:#fff;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-overflow-scrolling:touch;}
#main-nav-mobi::-webkit-scrollbar-track{background-color:#515A4E;}
#main-nav-mobi::-webkit-scrollbar{width:6px;background-color:#fd5a5a;}
#main-nav-mobi::-webkit-scrollbar-thumb{background-color:#fd5a5a;}
.mobi-overlay{opacity:0;visibility:hidden;position:fixed;top:0;left:0;height:100%;width:100%;background:rgba(0, 0, 0, 0.8);z-index:9999;transition:all ease 0.3s;}
.mobi-overlay.show{opacity:1;visibility:visible;}
.mobi-overlay .close:after{content:'\e680';font-family:"Pe-icon-7-stroke";font-weight:400;color:#fff;font-size:50px;font-weight:normal;cursor:pointer;position:absolute;right:20px;top:10px;width:50px;height:50px;line-height:50px;text-align:center;transition:all ease 0.3s;}
.mobi-overlay .close:hover:after{color:#ff4539;}
html.disable-scroll{overflow-y:hidden;}
#main-nav-mobi ul{display:block;list-style:none;margin:0;padding:0;}
#main-nav-mobi ul li{margin:0;position:relative;cursor:pointer;border-top:1px solid rgba(255, 255, 255, 0.07);}
#main-nav-mobi ul li a{color:#fff;display:block;font-size:16px;line-height:50px;text-decoration:none;padding:0 22px 0 35px;}
#main-nav-mobi ul > li > a:hover{opacity:0.7;}
#main-nav-mobi > ul > li li a{font-size:15px;padding:0 22px 0 40px;}
#main-nav-mobi .menu-item-has-children .arrow{cursor:pointer;display:inline-block;font-family:"Pe-icon-7-stroke";font-size:24px;line-height:50px;position:absolute;right:0;text-align:center;top:0;width:50px;color:#fff;transition:all ease 0.3s;}
#main-nav-mobi .menu-item-has-children .arrow:hover{opacity:0.7;}
#main-nav-mobi .menu-item-has-children .arrow:before{content:"\e688";}
#main-nav-mobi .menu-item-has-children .arrow.active:before{content:"\e684";}
#main-nav-mobi ul ul{background-color:rgba(255, 255, 255, 0.02);}
.mobi-nav-extra{display:none;}
#main-nav-mobi .search-form{position:relative;margin:32px 22px 35px;}
#main-nav-mobi .search-form .search-field{padding-right:48px;width:100%;margin-bottom:0;padding:10px 25px;background-color:#fff;border:1px solid #fff;border-radius:3px;}
#main-nav-mobi .search-form .search-submit{position:absolute;right:12px;top:10px;width:30px;height:30px;text-align:center;text-indent:9999px;background-color:transparent;padding:0;border:0;overflow:hidden;}
#main-nav-mobi .search-form .search-submit:before{color:#191919;content:"\ea67";font-family:"Core Icon";font-size:18px;width:30px;height:30px;line-height:30px;position:absolute;left:0;top:1px;text-align:center;text-indent:0;font-weight:normal;transition:all ease 0.3s;}
#main-nav-mobi .search-form .search-submit:hover:before{color:#191919;}
#main-nav-mobi .ext > .text{display:none;}
#main-nav-mobi .ext > .cart-info{position:relative;padding-left:62px;}
#main-nav-mobi .ext > .cart-info:before{content:"\ea68";font-family:"Core Icon";font-weight:normal;font-size:18px;position:absolute;left:34px;top:-1px;color:#fff;}
#main-nav-mobi .ext > .cart-info:hover{opacity:0.7;}
#main-nav-mobi .menu-logo-inner{display:inline-block;margin:25px 22px 25px 35px;}
#main-nav-mobi .menu-logo-inner a{padding:0;}
.mobile-button{width:24px;height:14px;display:none;float:right;position:absolute;top:50%;right:0;transform:translate3d(0, -50%, 0);background:transparent;cursor:pointer;transition:all ease 0.3s;}
.mobile-button.hide{opacity:0;}
.mobile-button:before, .mobile-button:after, .mobile-button span{background-color:#191919;transition:all ease 0.3s;}
.mobile-button:before, .mobile-button:after{content:'';position:absolute;top:0;height:2px;width:24px;border-radius:2px;left:0;top:50%;transform-origin:50% 50%;}
.mobile-button span{position:absolute;width:24px;height:2px;border-radius:2px;left:0;top:50%;margin-top:-1px;overflow:hidden;text-indent:200%;}
.mobile-button:hover span, .mobile-button:hover:before, .mobile-button:hover:after{opacity:0.7;}
.mobile-button:before{transform:translate3d(0, -7px, 0);}
.mobile-button:after{transform:translate3d(0, 5px, 0);}
.nav-top-cart-wrapper{float:right;padding:38px 0 37px;margin-left:13px;position:relative;transition:all ease 0.3s;}
.nav-top-cart-wrapper .nav-cart-trigger{position:relative;display:block;text-align:center;width:30px;height:30px;line-height:30px;font-size:18px;}
.nav-top-cart-wrapper .nav-cart-trigger:after{content:"\ea68";font-family:"Core Icon";position:absolute;left:4px;top:-2px;}
.nav-top-cart-wrapper .shopping-cart-items-count{font-family:IBM Plex Sans, sans-serif;position:absolute;right:-6px;top:-2px;width:18px;height:18px;line-height:18px;font-size:12px;display:block;border-radius:50%;text-align:center;background-color:#fd5a5a;color:#fff;}
.nav-top-cart-wrapper .nav-shop-cart{width:300px;opacity:0;visibility:hidden;margin-top:5px;position:absolute;right:0;top:100%;z-index:999999;background-color:#fff;padding:0;box-shadow:0 0px 30px 0 rgba(0, 0, 0, 0.1);transition:all ease 0.3s;}
.nav-top-cart-wrapper:hover .nav-shop-cart{margin:0;opacity:1;visibility:visible;transition:all ease 0.3s;}
.header-search-wrap{padding:38px 0 37px;margin-left:12px;float:right;}
.header-search-trigger{position:relative;display:block;text-align:center;width:30px;height:30px;line-height:30px;font-size:18px;}
.header-search-trigger:after{content:"\ea67";font-family:"Core Icon";position:absolute;left:4px;top:-1px;}
.header-style-1 #site-header:after{background-color:#fff;}
.header-style-1 #site-header .nav-top-cart-wrapper .nav-cart-trigger,
.header-style-1 #site-header .header-search-trigger{color:#191919;}
.header-style-1 #site-header .nav-top-cart-wrapper .nav-cart-trigger:hover,
.header-style-1 #site-header .header-search-trigger:hover{color:#fd5a5a;}
.header-style-1 #main-nav > ul > li.current-menu-item > a,
.header-style-1 #main-nav > ul > li.current-menu-parent > a,
.header-style-1 #main-nav > ul > li > a:hover{color:#191919;}
.header-style-2 .nav-top-cart-wrapper{padding:25px 0;}
.header-style-2 .nav-top-cart-wrapper .nav-cart-trigger{color:#fff;}
.header-style-2 .nav-top-cart-wrapper .shopping-cart-items-count{background-color:rgba(255, 255, 255, 0.3);}
.header-style-2 #site-header-wrap{position:absolute;width:100%;z-index:150;}
.header-style-2 #site-header-wrap #site-header .site-header-inner{margin-top:20px;background-color:#fd5a5a;padding:0 40px;height:80px;box-shadow:0 20px 0 -10px rgba(253, 90, 90, 0.5);-webkit-box-shadow:0 20px 0 -10px rgba(253, 90, 90, 0.5);-moz-box-shadow:0 20px 0 -10px rgba(253, 90, 90, 0.5);}
.header-style-2 #site-header #site-logo-inner{margin:18px 0;}
.header-style-2 #site-header #main-nav > ul > li > a,
.header-style-2 #site-header .header-extras ul li a{line-height:80px;height:80px;font-size:15px;font-weight:500;text-transform:uppercase;color:#fff;}
.header-style-2 #site-header .header-search-wrap{padding:25px 0;}
.header-style-2 #main-nav > ul > li.current-menu-item > a,
.header-style-2 #main-nav > ul > li.current-menu-parent > a{color:#191919;}
.header-style-2 #main-nav > ul > li.menu-item-has-children > a > span:after{margin-top:0;}
.header-style-2 #main-nav > ul > li:hover > a > span{opacity:0.7;color:#fff;}
.header-style-2 .header-search-wrap{padding:25px 0;}
.header-style-2 .header-search-wrap .header-search-trigger{color:#fff;}
#site-header.fixed-hide{position:fixed;left:0;top:0;width:100%;z-index:9989;transition:background ease 0.3s;}
#site-header.fixed-hide #topbar{display:none;}
#site-header.fixed-hide,
#site-header .site-navigation-wrap.fixed-hide{box-shadow:0 0px 10px rgba(0, 0, 0, 0.07);}
#site-header .site-navigation-wrap.fixed-hide{position:fixed;left:0;top:-200px;width:100%;z-index:99999;transition:all ease 0.3s;}
#site-header .site-navigation-wrap.fixed-hide .inner{position:static;transform:none;padding:0;}
#site-header .site-navigation-wrap.fixed-show{top:0;}
.header-style-1 #site-header.fixed-hide{background-color:rgba(255, 255, 255, 0.9);}
.header-style-2 #site-header.fixed-hide,
.header-style-2 #site-header .site-navigation-wrap.fixed-hide{transition:0.3s;transition-delay:0.3s;}
.header-style-2 #site-header-wrap #site-header .site-header-inner{transition:0.3s;}
.header-style-2 #site-header:after{transform:scale(0, 0);background-color:#fd5a5a;transition:0.3s;transition-delay:0.3s;}
.header-style-2 #site-header.fixed-hide:after{transform:scale(1, 1);transform-origin:50% 50%;}
.header-style-2 #site-header-wrap #site-header.fixed-hide .site-header-inner{margin-top:0;box-shadow:0 0 0 0 rgba(253, 90, 90, 0.5);transition:0.3s;}
.header-style-2 .mobile-button:before, .header-style-2 .mobile-button:after, .header-style-2 .mobile-button span{background-color:#fff;}
.header-style-2 .mobile-button{right:20px;}
.header-has-custom-bg #site-header:after{display:none;}
.search-style-fullscreen .search_form_wrap{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999999;background-color:rgba(0, 0, 0, 0.9);overflow:hidden;opacity:0;visibility:hidden;transition:all ease-in-out 0.3s;}
.search-style-fullscreen .search_form{position:absolute;width:40%;top:50%;left:50%;transform:translate(-50%, -50%);margin-top:10px;transition:all ease-in-out 0.25s;}
.search-style-fullscreen .search-field{width:100%;font-size:22px;margin-bottom:0;background-color:#dddfe1;border-radius:5px;padding:17px 40px;height:80px;}
.search-style-fullscreen .search-field, .search-style-fullscreen .search-field:focus{border:0;}
.search-style-fullscreen .search-submit{position:absolute;right:8px;top:8px;width:64px;height:64px;padding:0;line-height:64px;border-radius:5px;text-indent:-9999px;border-radius:8px;transition:all ease 0.3s;background-color:transparent;}
.search-style-fullscreen .search-submit:after{content:"\ea67";font-family:"Core Icon";font-size:24px;text-indent:0;color:#999;position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;transition:all ease 0.3s;}
.search-style-fullscreen .search-submit:hover:after{color:#fd5a5a;}
.search-style-fullscreen .search-close{position:absolute;top:20px;right:30px;display:inline-block;text-align:center;cursor:pointer;z-index:1;transition:all ease 0.3s;}
.search-style-fullscreen .search-close:before{content:'\e680';font-family:"Pe-icon-7-stroke";font-weight:400;color:#fff;font-size:56px;transition:all ease 0.3s;}
.search-style-fullscreen .search-close:hover:before{color:#ff4539;}
.search-style-fullscreen.search-opened .search_form_wrap{opacity:1;visibility:visible;}
.search-style-fullscreen.search-opened .search_form{margin-top:0;}
#featured-title{background-color:#f5f5f5;background-size:cover;border-style:solid;}
#featured-title .inner-wrap{display:table;overflow:hidden;width:100%;}
#featured-title .inner-wrap{padding:70px 0;}
.header-style-2 #featured-title .inner-wrap{padding:220px 0 70px;}
#featured-title .title-group{display:table-cell;margin:0;text-align:right;vertical-align:middle;width:50%;}
#featured-title #breadcrumbs{display:table-cell;text-align:right;vertical-align:middle;width:40%;}
#featured-title .main-title{position:relative;font-size:70px;z-index:1;display:inline-block;margin:0;}
#featured-title .sub-title{font-size:22px;font-weight:400;margin:3px 0 0;color:#bdbdbd;}
#featured-title .main-title.has-shadow{text-shadow:rgba(0, 0, 0, 0.3) 0px 1px 1px;}
#featured-title .main-title:after,
#featured-title #breadcrumbs .breadcrumbs-inner:after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;z-index:-1;border-style:solid;border-width:0;}
#featured-title #breadcrumbs .breadcrumbs-inner{z-index:1;position:relative;display:inline-block;background-color:rgba(255, 255, 255, 0.1);padding:8px 38px;border-radius:5px;}
#featured-title #breadcrumbs a{color:#191919;}
#featured-title #breadcrumbs a:hover{color:#fd5a5a;}
#featured-title #breadcrumbs .breadcrumb-trail > a,
#featured-title #breadcrumbs .breadcrumb-trail > span{position:relative;display:inline-block;padding-right:0px;}
#featured-title #breadcrumbs .breadcrumb-trail > a:after,
#featured-title #breadcrumbs .breadcrumb-trail > span:after{content:"\f104";font-family:"FontAwesome";font-size:16px;position:absolute;right:8px;top:0;}
#featured-title #breadcrumbs .breadcrumb-trail > span{padding-right:0;}
#featured-title #breadcrumbs .breadcrumb-trail > span:after{display:none;}
#featured-title.centered .inner-wrap{display:block;}
#featured-title.centered .title-group{display:block;width:100%;text-align:center;margin-bottom:20px;}
#featured-title.centered #breadcrumbs{display:block;width:100%;text-align:center;margin-top:20px;}
#featured-title.creative{position:relative;}
#featured-title.creative .inner-wrap{display:block;padding:110px 0;position:relative;}
#featured-title.creative .title-group{display:block;width:100%;text-align:center;margin-bottom:0;}
#featured-title.creative #breadcrumbs .breadcrumbs-inner{background-color:#fd5a5a;border-radius:20px 20px 0 0;display:block;padding:11px 37px;position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:fit-content;}
#featured-title.creative #breadcrumbs .breadcrumb-trail{text-align:center;}
#featured-title.creative #breadcrumbs a,
#featured-title.creative #breadcrumbs span{font-size:16px;color:#fff;}
#featured-title.creative #breadcrumbs span{position:relative;}
#featured-title.creative #breadcrumbs .breadcrumb-trail > a:after{content:'.';font-size:30px;line-height:normal;top:unset;bottom:0;color:#fff;}
#featured-title.creative #breadcrumbs a:hover{color:rgba(255, 255, 255, 0.7);}
.post.hentry{margin-bottom:53px;position:relative;border-bottom:1px dashed #dddfe1;padding-bottom:20px;}
.post.hentry:last-child{margin-bottom:0;}
.hentry .post-media iframe{margin-bottom:0;}
.hentry .post-media{position:relative;margin-bottom:34px;}
.hentry .post-media .post-date-custom{font-size:14px;font-weight:600;color:#191919;padding:6px 20px;border-radius:5px;display:inline-block;background-color:#fd5a5a;position:absolute;left:0;top:0;}
.hentry .post-content-wrap{position:relative;}
.hentry .post-categories{font-size:13px;}
.hentry .page-links{clear:both;padding:20px 0 10px;}
.hentry .page-links > span, .hentry .page-links a > span{display:inline-block;width:30px;height:30px;line-height:30px;font-size:13px;border-radius:15px;border:1px solid #dddfe1;color:#fd5a5a;text-align:center;}
.hentry .page-links a:hover > span{color:#191919;}
.hentry .page-links a > span{color:#646464;}
.post-media{position:relative;border-radius:5px;overflow:hidden;}
.post-media .slick-prev, .post-media .slick-next{padding:0;background-color:rgba(0, 0, 0, 0.2);width:40px;height:40px;margin-top:-20px;position:absolute;top:50%;cursor:pointer;border:none;outline:none;text-shadow:none;z-index:64646499;text-indent:-9999px;display:inline-block;}
.post-media .slick-prev:before, .post-media .slick-next:before{text-indent:0;content:"\e91a";font-family:"Pe-icon-7-stroke";font-size:14px;color:#fff;position:absolute;left:0;top:0;width:100%;height:100%;line-height:40px;text-align:center;display:inline-block;}
.post-media .slick-next:before{content:"\f178";}
.post-media .slick-prev{left:10px;}
.post-media .slick-next{right:10px;}
.post-media .slick-prev:hover, .post-media .slick-next:hover{background-color:#fd5a5a;}
.post-media .slick-dots{list-style:none;margin:0;text-align:center;line-height:10px;position:absolute;left:0;bottom:20px;width:100%;}
.post-media .slick-dots li{padding:0;display:inline-block;}
.post-media .slick-dots li:after{padding:0;left:0;top:0;width:10px;height:10px;margin:0 5px;background-color:#fff;opacity:0.7;font-size:0;display:block;cursor:pointer;color:transparent;border:0;outline:none;border-radius:50%;transition:all ease 0.3s;}
.post-media .slick-dots li.slick-active:after{opacity:1;background-color:#fd5a5a;}
.post-media.custom-cat{border-bottom-left-radius:0;}
.post-media .post-cat-custom a{position:absolute;bottom:0;left:0;display:inline-block;font-size:13px;line-height:40px;color:#fff;padding:0 31px;background-color:#fd5a5a;text-transform:uppercase;font-weight:500;border-top-right-radius:5px;}
.post-media .post-cat-custom a:hover{color:rgba(255, 255, 255, 0.7);}
.hentry .post-title{font-size:36px;margin:0 0 20px;-ms-word-wrap:break-word;word-wrap:break-word;}
.hentry .post-title a{color:#191919;}
.hentry .post-title a:hover{color:#fd5a5a;}
.hentry .post-title-inner{z-index:1;position:relative;display:inline-block;}
.hentry .post-title-inner:before{content:"";position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;border:1px solid transparent;}
.hentry .post-title-inner:after{content:"";position:absolute;left:0;top:100%;width:0;height:0;background-color:transparent;}
.hentry .post-meta{font-size:14px;}
.hentry .post-meta .post-meta-content-inner{margin-bottom:6px;direction:rtl;}
.hentry .post-meta .post-meta-content-inner .item{margin-right:22px;margin-bottom:10px;position:relative;padding-left:20px;display:inline-block;}
.hentry .post-meta .item:before{color:#fd5a5a;font-family:"Core Icon";position:absolute;left:0;top:2px;font-size:13px;font-weight:600;}
.hentry .post-meta .item.post-date:before{content:"\e936";}
.hentry .post-meta .item.post-comment:before{content:"\ea63";}
.hentry .post-meta .item.post-meta-categories:before{content:"\e96a";}
.hentry .post-meta .item.post-by-author:before{content:"\ea47";}
.hentry .post-meta .item.post-by-author a, .hentry .post-meta .item.post-comment a, .hentry .post-meta .item.post-meta-categories a{color:#646464;}
.hentry .post-meta .item.post-by-author a:hover, .hentry .post-meta .item.post-comment a:hover, .hentry .post-meta .item.post-meta-categories a:hover{color:#fd5a5a;}
.hentry .post-excerpt{position:relative;z-index:1;margin:0 0 26px;}
.hentry .post-excerpt p:last-child{margin-bottom:0;}
.hentry .post-link a{font-size:13px;line-height:22px;color:#191919;display:inline-block;text-transform:uppercase;font-weight:500;}
.hentry .post-link a > span{position:relative;padding-right:20px;display:inline-block;transition:transform ease 0.3s;}
.hentry .post-link a > span:before{content:"\ea60";font-family:"Core Icon";font-size:12px;color:#191919;line-height:22px;position:absolute;top:0;right:0;transition:all ease 0.3s;}
.hentry .post-link:hover a, .hentry .post-link:hover a > span:before{color:#fd5a5a;}
.post-item{border:1px solid #dddfe1;border-radius:5px 5px 0 0;direction:rtl;}
.post-item .post.hentry{border:none;}
.post-item .hentry .post-media{border-radius:unset;padding-bottom:18px;margin-bottom:0;}
.post-item .post-media .post-cat-custom a{left:30px;border-radius:3px;line-height:36px;padding:0 35px;}
.post-item .hentry .post-content-wrap{padding:32px 30px 10px 25px;}
.post-item .hentry .post-title{font-size:22px;line-height:32px;direction:rtl;}
.is-single-post .hentry .post-title{margin-bottom:21px;}
.is-single-post .hentry{padding:0;margin:0;border:0;}
.hentry .post-tags{display:block;margin:30px 0 35px;}
.hentry .post-tags .inner{font-size:18px;position:relative;font-family:"Tajawal";color:#191919;}
.hentry .post-tags a{font-family:"IMB Plex Sans";font-size:16px;letter-spacing:0.35px;color:#646464;-ms-word-wrap:break-word;word-wrap:break-word;}
.hentry .post-tags a:hover{color:#fd5a5a;}
.hentry .post-tags a:first-child{padding-left:10px;}
.hentry .post-author{clear:both;overflow:hidden;position:relative;border-bottom:1px solid #dddfe1;border-top:1px solid #dddfe1;padding:33px 0 33px;min-height:220px;}
.hentry .post-author .author-avatar{float:left;margin:5px 27px 0 0;width:100px;height:100px;border-radius:50%;overflow:hidden;}
.hentry .post-author .author-avatar a{width:100px;height:auto;display:inline-block;}
.hentry .post-author .author-avatar a img{width:100%;height:auto;}
.hentry .post-author .name{font-size:20px;line-height:30px;margin-bottom:10px;}
.hentry .post-author .author-desc{overflow:hidden;}
.hentry .post-author .author-desc > p{margin-bottom:0;color:#646464;}
.hentry .post-author .author-socials{margin-top:11px;}
.hentry .post-author .author-socials .text, .hentry .post-author .author-socials .socials{display:inline-block;}
.hentry .post-author .author-socials .socials a{display:inline-block;color:#646464;font-size:14px;margin-right:13px;}
.hentry .post-author .author-socials .socials a:hover{color:#fd5a5a;}
.related-news{margin-top:65px;}
.related-news .related-title{font-size:20px;margin-bottom:32px;color:#fd5a5a;-ms-word-wrap:break-word;word-wrap:break-word;}
.related-news .related-post{margin:0 -5px;position:relative;margin-bottom:0;}
.related-news .post-item{padding:0 5px;}
.related-news .post-item .inner{overflow:hidden;position:relative;}
.related-news .post-item .thumb-wrap{display:none}
.related-news .post-item .text-wrap{padding:48px 35px 20px;border:1px solid #dddfe1;border-radius:5px;}
.related-news .post-item .post-categories a{font-size:14px;color:#646464;}
.related-news .post-item .post-categories a:hover{color:#fd5a5a;}
.related-news .post-item .text-wrap h3{font-size:18px;line-height:28px;margin:8px 0 0;}
.related-news .post-item .text-wrap h3 a:hover{color:#fd5a5a;}
.related-news .related-post .slick-prev, .related-news .related-post .slick-next{padding:0;background-color:transparent;width:45px;height:30px;position:absolute;top:-76px;cursor:pointer;border:none;outline:none;text-shadow:none;z-index:9999;text-indent:-9999px;display:inline-block;}
.related-news .related-post .slick-prev{right:40px;}
.related-news .related-post .slick-next{border-left:1px solid #d7d7d7;right:-5px;}
.related-news .related-post .slick-prev:before, .related-news .related-post .slick-next:before{text-indent:0;content:"\e978";font-family:"Pe-icon-7-stroke";line-height:30px;font-size:20px;color:#aaa;position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;display:inline-block;transition:all ease 0.3s;}
.related-news .related-post .slick-next:before{content:"\e979";}
.related-news .related-post .slick-next:hover:before, .related-news .related-post .slick-prev:hover:before{color:#fd5a5a;}
.comments-area{position:relative;}
.comments-area:after, .comments-area:before{content:'';clear:both;display:table;line-height:0;}
.comments-area .comments-title, .comments-area .comment-reply-title{font-size:24px;color:#191919;margin:45px 0 30px;}
.comment-list{list-style:none;margin:0;}
.comment-list li.comment{padding:0;}
.comment-list .children{list-style:none;margin:0;}
.comment-list .children > li{padding:0 0 0 30px;}
.comment-list article{position:relative;margin-bottom:35px;transition:background ease 0.3s;}
.comment-list article + .comment-respond{margin-bottom:50px;}
.comment-list article .gravatar{width:90px;height:90px;border-radius:50%;float:left;margin:0 40px 0 0;overflow:hidden;}
.comment-list article .gravatar img{width:100%;height:auto;}
.comment-list .comment-content{overflow:hidden;}
.comment-meta{margin-bottom:10px;}
.comment-author{font-size:20px;margin:0;display:inline-block;}
.comment-time{font-size:14px;padding-left:30px;}
.comment-reply-link, .comment-edit-link, #cancel-comment-reply-link{display:inline-block;font-size:13px;font-weight:500;color:#fd5a5a;text-transform:uppercase;}
#cancel-comment-reply-link{margin-top:10px;}
.comment-reply-link:hover, .comment-edit-link:hover, #cancel-comment-reply-link:hover{color:#191919;}
#cancel-comment-reply-link{position:absolute;right:0;top:0;font-family:"IBM Plex Sans";}
.comment-edit-link{padding-left:30px;}
.comment-text{overflow:hidden;margin-bottom:7px;}
.comment-text > p:last-child{margin-bottom:0;}
.unapproved{display:block;color:#fd5a5a;font-size:14px;font-style:italic;}
#comments .comment-respond{position:relative;}
#comments .name-wrap,
#comments .email-wrap{float:left;width:calc(50% - 15px);}
#comments .name-wrap{margin-right:30px;}
#comments .name-wrap input,
#comments .email-wrap input,
#comments .url-wrap input,
#comments .message-wrap textarea{width:100%;}
#comments .message-wrap textarea{height:200px;}
#comments .comment-respond .form-submit{clear:both;margin:0;}
.logged-in-as{margin-bottom:10px;font-size:14px;}
.logged-in-as a{color:#fd5a5a;}
.logged-in-as a:hover, .comment-edit-link:hover{color:#191919;}
.search-page .hentry{margin-bottom:53px;border-bottom:1px dashed #dddfe1;padding-bottom:20px;}
.search-page .hentry:last-child{padding-bottom:0;border-bottom:none;}
.search-page .hentry .post-title{margin-bottom:15px;}
#sidebar .widget{position:relative;z-index:1;border:1px solid #dddfe1;padding:34px 31px 26px 31px;margin-bottom:30px;}
#sidebar .widget:before{position:absolute;top:45px;left:-2px;width:3px;height:40px;content:"";background-color:#fd5a5a;}
#sidebar .widget ul{margin:0;list-style:none;}
.widget_archive ul ul, .widget_categories ul ul, .widget_meta ul ul, .widget_nav_menu ul ul, .widget_pages ul ul, .widget_recent_comments ul ul, .widget_recent_entries ul ul, .widget_rss ul ul{padding-left:16px;}
.widget.widget_pages ul li, .widget.widget_nav_menu ul li, .widget.widget_archive ul li, .widget.widget_categories ul li, .widget.widget_meta ul li, .widget.widget_recent_entries ul li, .widget.widget_recent_comments ul li, .widget.widget_rss ul li{position:relative;}
.widget.widget_archive ul li a, .widget.widget_categories ul li a, .widget.widget_meta ul li a, .widget.widget_nav_menu ul li a, .widget.widget_pages ul li a, .widget.widget_recent_entries ul li a, .widget.widget_recent_comments ul li a, .widget.widget_rss ul li a{color:#646464;display:inline-block;}
.widget.widget_archive ul li a, .widget.widget_categories ul li a, .widget.widget_pages ul li a{font-size:16px;}
.widget.widget_archive ul li a, .widget.widget_categories ul li a, .widget.widget_meta ul li a, .widget.widget_nav_menu ul li a, .widget.widget_pages ul li a, .widget.widget_recent_entries ul li a, .widget.widget_recent_comments ul li, .widget.widget_rss ul li{padding:8px 0;}
.widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover, .widget.widget_meta ul li a:hover, .widget.widget_nav_menu ul li a:hover, .widget.widget_pages ul li a:hover, .widget.widget_recent_entries ul li a:hover, .widget.widget_recent_comments ul li a:hover, .widget.widget_rss ul li a:hover{color:#fd5a5a;}
.widget.widget_categories ul li a, .widget.widget_meta ul li a, .widget.widget_pages ul li a, .widget.widget_archive ul li a, .widget.widget_nav_menu ul li a{position:relative;}
.widget.widget_categories ul li > span, .widget.widget_archive ul li > span{float:right;display:inline-block;color:#fd5a5a;font-size:16px;margin-top:17px;}
#sidebar .widget.widget_recent_comments{color:#aaa;}
#sidebar .widget.widget_recent_entries .post-date{display:block;font-size:14px;}
#sidebar .widget.widget_recent_comments .comment-author-link{color:#646464}
#sidebar .widget.widget_calendar caption{color:#fd5a5a;}
#footer .widget.widget_archive ul li a,
#footer .widget.widget_categories ul li a,
#footer .widget.widget_meta ul li a,
#footer .widget.widget_nav_menu ul li a,
#footer .widget.widget_pages ul li a,
#footer .widget.widget_recent_entries ul li a,
#footer .widget.widget_recent_comments ul li a,
#footer .widget.widget_rss ul li a,
#footer .widget.widget_calendar a{color:#7f8183;}
#footer .widget.widget_archive ul li a:hover,
#footer .widget.widget_categories ul li a:hover,
#footer .widget.widget_meta ul li a:hover,
#footer .widget.widget_nav_menu ul li a:hover,
#footer .widget.widget_pages ul li a:hover,
#footer .widget.widget_recent_entries ul li a:hover,
#footer .widget.widget_recent_comments ul li a:hover,
#footer .widget.widget_rss ul li a:hover,
#footer .widget.widget_calendar a:hover{color:#fff;}
.widget.widget_recent_entries > ul > li, .widget.widget_recent_comments > ul > li, .widget.widget_archive > ul > li, .widget.widget_pages > ul > li, .widget.widget_rss > ul > li, .widget.widget_nav_menu ul li{border-bottom:1px solid #dddfe1;}
.widget.widget_pages > ul > li li, .widget_nav_menu ul ul{border-top:1px solid #dddfe1;}
#footer .widget.widget_recent_entries > ul > li,
#footer .widget.widget_recent_comments > ul > li,
#footer .widget.widget_archive > ul > li,
#footer .widget.widget_pages > ul > li,
#footer .widget.widget_rss > ul > li,
#footer .widget.widget_nav_menu ul li,
#footer .widget.widget_pages > ul > li li,
#footer .widget_nav_menu ul ul{border-color:#383838;}
.widget.widget_recent_entries > ul > li:last-child, .widget.widget_recent_comments > ul > li:last-child, .widget.widget_archive > ul > li:last-child, .widget.widget_pages > ul > li:last-child, .widget.widget_rss > ul > li:last-child, .widget.widget_nav_menu ul li:last-child{border-bottom:none;}
.widget.widget_recent_entries ul li a, .widget.widget_recent_comments ul li, .widget.widget_archive ul li a, .widget.widget_pages ul li a, .widget.widget_rss ul li, .widget.widget_nav_menu ul li a{padding:17px 0;}
#sidebar .widget .widget-title{font-size:24px;color:#191919;margin:0 0 25px 0;direction:rtl;}
#footer-widgets .widget .widget-title{font-size:22px;line-height:30px;color:#fff;}
#sidebar .widget.widget_text p:last-child{margin-bottom:0;}
.widget.widget_categories ul li a{display:inline-block;padding:17px 0;}
.widget.widget_categories > ul > li{border-bottom:1px solid #dddfe1;}
.widget.widget_categories > ul > li:last-child{border-bottom:none;}
.widget.widget_categories > ul > li li{border-top:1px solid #dddfe1;}
.widget.widget_categories .cat-item span{display:inline-block;text-align:right;color:#646464;}
#footer .widget.widget_categories > ul > li,
#footer .widget.widget_categories > ul > li li{border-color:#383838;}
.widget.widget_latest_posts li{padding:28px 0;border-bottom:1px solid #dddfe1;}
.widget.widget_latest_posts li:first-child{padding-top:0;}
.widget.widget_latest_posts li:last-child{padding-bottom:0;border-bottom:none;}
.widget.widget_latest_posts .thumb{float:left;height:auto;margin-right:18px;display:inline-block;border-radius:5px;overflow:hidden;}
.widget.widget_latest_posts .texts{overflow:auto;}
.widget.widget_latest_posts .post-title{font-size:18px;line-height:30px;margin-bottom:10px;}
.widget.widget_latest_posts .post-title:hover a{color:#fd5a5a;}
.widget.widget_latest_posts .entry-date{font-size:14px;line-height:26px;}
.widget.widget_recent_entries ul li:first-child{margin-top:0;}
.widget.widget_nav_menu > .menu-primary-menu-container > ul > li{margin-bottom:5px;}
.widget.widget_nav_menu .menu > li.current-menu-item > a, .widget.widget_nav_menu .menu > li.current-menu-item{color:#fd5a5a;}
.wp-calendar-table table, .widget.widget.widget_calendar table{margin:0;}
.wp-calendar-table td, .wp-calendar-table th, .widget.widget_calendar td, .widget.widget_calendar th{padding:0;text-align:center;font-size:16px;padding:6px;border-color:#d0d0d0;}
.wp-calendar-table th, .widget.widget_calendar th{font-weight:700;}
.wp-calendar-table a, .wp-calendar-table tbody #today,
.widget.widget_calendar a, .widget.widget_calendar tbody #today{color:#fd5a5a;display:block;}
.wp-block-calendar tbody #today{border:none;}
.wp-calendar-table a:hover, .wp-calendar-table tbody #today:hover,
.widget.widget_calendar a:hover, .widget.widget_calendar tbody #today:hover{color:#191919;}
#footer .widget.widget_calendar a,
#footer .widget.widget_calendar tbody #today{color:#fff;}
#footer .widget.widget_calendar a:hover,
#footer .widget.widget_calendar tbody #today:hover{opacity:0.7;}
#sidebar .widget.widget_information ul li{padding:17px 0;border-bottom:1px solid #dddfe1;}
#sidebar .widget.widget_information ul li:last-child{border-bottom:none;}
#sidebar .widget.widget_information span{display:inline-block;}
#sidebar .widget.widget_information .info{float:right;}
#footer-widgets .widget_information{font-size:16px;}
#footer-widgets .widget_information .desc{margin-bottom:15px;color:#939393;}
#footer-widgets .widget_information ul li{margin-bottom:8px;}
#footer-widgets .widget_information ul li .info-title{display:inline-block;color:#fff;}
#footer-widgets .widget_information ul li .info{padding-left:5px;color:#939393;}
.widget.widget_links ul li{border:0;margin-bottom:4px;}
.widget.widget_links ul.col2 li{width:50%;float:left;}
.widget.widget_links ul li a{position:relative;display:inline-block;font-size:16px;transition:all ease 0.3s;}
.widget.widget_links ul li a:after{content:"";width:0;height:0;position:absolute;right:0;bottom:0;border-bottom:1px solid #fd5a5a;z-index:-1;-webkit-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;-moz-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;-ms-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;-o-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;}
.widget.widget_links ul li a:hover:after{width:100%;}
.widget.widget_links ul li a:hover:before{width:100%;}
#footer-widgets .widget.widget_links ul li a{color:#939393;}
#footer-widgets .widget.widget_links ul li a:hover{color:#fff;}
.widget.widget_twitter .tweets-wrap{overflow:hidden;font-size:16px;line-height:28px;}
.widget.widget_twitter .tweets-wrap .tweet-item{margin-bottom:20px;}
.widget.widget_twitter .authorstamp{position:relative;padding:10px 0 0 30px;}
.widget.widget_twitter .authorstamp:before{content:"\e094";font-family:"ElegantIcons";position:absolute;left:0;top:12px;color:#1c9deb;font-size:20px;}
.widget.widget_twitter .author a{color:#191919;font-size:17px;font-family:"Tajawal";}
.widget.widget_twitter .time{color:#646464;font-size:14px;line-height:18px;}
#footer .widget.widget_twitter .author a{color:#fff;}
#footer .widget.widget_twitter .time{color:#7f8183;}
#sidebar .widget.widget_search{padding:40px 30px;background-color:#f7f7f7;border-color:#f7f7f7;}
#sidebar .widget.widget_search:before{display:none;}
.widget.widget_search .search-form{position:relative;}
.widget.widget_search .search-form .search-field{width:100%;background-color:#fff;margin:0;border:none;border-radius:unset;padding:15px 30px;}
.widget.widget_search .search-form .search-submit{background-color:transparent;position:absolute;top:0;right:0;width:58px;height:58px;border:none;padding:0;text-indent:-9999px;}
.widget.widget_search .search-form .search-submit:after{position:absolute;top:0;right:0;width:58px;height:58px;line-height:58px;font-size:16px;font-family:"Core Icon";content:'\ea67';color:#999;text-align:center;text-indent:0;}
.widget.widget_search .search-form .search-field:hover, .widget.widget_search .search-form .search-field:focus{box-shadow:0 0 1px 0 rgba(0, 0, 0, 2);}
.widget.widget_search .search-form .search-submit:hover:after{color:#fd5a5a;}
#footer .widget.widget_search .search-form .search-field{border-radius:5px;color:#fff;}
#footer .widget.widget_search .search-form .search-submit:hover:after{color:#fff;}
.widget.widget_mc4wp_form_widget .desc{display:block;text-align:left;}
.widget.widget_mc4wp_form_widget .email-form{position:relative;padding-right:0;}
.widget.widget_mc4wp_form_widget .email-form .email{background-color:#fff;padding:0 70px 0 20px;line-height:50px;border:none;}
.widget.widget_mc4wp_form_widget .submit{position:absolute;top:0;right:0;width:50px;height:50px;text-align:center;background-color:transparent;font-size:0;}
.widget.widget_mc4wp_form_widget .submit:after{position:absolute;top:0;right:0;width:50px;height:50px;line-height:50px;color:#fff;content:'\e90a';font-family:"Core Icon";background-color:#fd5a5a;font-size:16px;border-top-right-radius:5px;border-bottom-right-radius:5px;}
.widget.widget_socials .socials .icon{float:left;}
.widget.widget_socials .socials a{float:left;font-size:16px;display:inline-block;width:44px;height:44px;line-height:44px;text-align:center;margin-right:10px;background-color:#f6f6f6;color:#191919;}
.widget.widget_socials .socials a:hover{background-color:#fd5a5a;color:#fff;}
#footer-widgets .widget.widget_socials .socials a{background-color:rgba(255, 255, 255, 0.1);border-color:rgba(255, 255, 255, 0.1);color:#fff;}
#footer-widgets .widget.widget_socials .socials a:hover{background-color:#fd5a5a;border-color:#fd5a5a;color:#fff;}
.widget.widget_recent_posts ul li{padding:0;border:0;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #fff;}
.widget.widget_recent_posts .recent-news .thumb{width:80px;overflow:hidden;float:left;margin:5px 20px 0 0;border-radius:5px;}
.widget.widget_recent_posts .recent-news .thumb.hide{display:none;}
.widget.widget_recent_posts .recent-news .thumb img{width:100%;height:auto;}
.widget.widget_recent_posts h3{font-family:'Tajawal', sans-serif !important;font-size:16px;line-height:26px;margin:0 0 2px;}
.widget.widget_recent_posts h3 a{color:#191919;}
.widget.widget_recent_posts h3 a:hover{color:#fd5a5a;}
.widget.widget_recent_posts .recent-news .texts{overflow:hidden;}
.widget.widget_recent_posts .post-author{color:#fd5a5a;font-size:12px;margin-right:27px;position:relative;padding-left:22px;text-transform:uppercase;display:inline-block;letter-spacing:2px;transition:all ease 0.3s;}
.widget.widget_recent_posts .post-author a{color:#fd5a5a;}
.widget.widget_recent_posts .post-author:hover{opacity:0.7;}
.widget.widget_recent_posts .post-author:before{content:"\f007";font-family:"FontAwesome";position:absolute;left:0;top:0;}
#footer-widgets .widget.widget_recent_posts ul li{border-color:#565e53;}
#footer-widgets .widget.widget_recent_posts .recent-news .thumb{margin-top:8px;}
#footer-widgets .widget.widget_recent_posts h3{font-family:'Tajawal', sans-serif !important;font-size:16px;line-height:30px;}
#footer-widgets .widget.widget_recent_posts h3 a{color:#939393;}
#footer-widgets .widget.widget_recent_posts h3 a:hover{color:#fff;}
.widget.widget_instagram .instagram-wrap, .widget.widget_flickr .flickr-wrap{margin:0 -0.5px;}
.widget.widget_instagram .instagram-wrap .instagram_badge_image, .widget.widget_flickr .flickr-wrap .flickr_badge_image{padding:0 0.5px !important;margin:0 0 1px 0 !important;width:33.333%;float:left;height:auto !important;}
.widget.widget_instagram .instagram-wrap .instagram_badge_image img, .widget.widget_flickr .flickr-wrap .flickr_badge_image img{width:100%;height:auto;}
.widget.widget_instagram .instagram-wrap .instagram_badge_image a, .widget.widget_flickr .flickr-wrap .flickr_badge_image a{position:relative;display:block;}
.widget.widget_instagram .instagram-wrap .instagram_badge_image a:after, .widget.widget_flickr .flickr-wrap .flickr_badge_image a:after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background-color:transparent;transition:all ease 0.3s;}
.widget.widget_instagram .instagram-wrap .instagram_badge_image a:hover, .widget.widget_flickr .flickr-wrap .flickr_badge_image a:hover{opacity:0.7;}
.widget.widget_instagram .instagram-wrap.col2 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.col2 .flickr_badge_image{width:50%;}
.widget.widget_instagram .instagram-wrap.col4 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.col4 .flickr_badge_image{width:25%;}
.widget.widget_instagram .instagram-wrap.g0, .widget.widget_flickr .flickr-wrap.g0{margin:0;}
.widget.widget_instagram .instagram-wrap.g0 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.g0 .flickr_badge_image{padding:0 !important;margin:0 !important;}
.widget.widget_instagram .instagram-wrap.g5, .widget.widget_flickr .flickr-wrap.g5{margin:0 -2.5px;}
.widget.widget_instagram .instagram-wrap.g5 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.g5 .flickr_badge_image{padding:0 2.5px !important;margin:0 0 5px 0 !important;}
.widget.widget_instagram .instagram-wrap.g9, .widget.widget_flickr .flickr-wrap.g9{margin:0 -4.5px;}
.widget.widget_instagram .instagram-wrap.g9 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.g9 .flickr_badge_image{padding:0 4.5px !important;margin:0 0 9px 0 !important;}
.widget.widget_instagram .instagram-wrap.g12, .widget.widget_flickr .flickr-wrap.g12{margin:0 -6px;}
.widget.widget_instagram .instagram-wrap.g12 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.g12 .flickr_badge_image{padding:0 6px !important;margin:0 0 12px 0 !important;}
.widget.widget_instagram .instagram-wrap.g15, .widget.widget_flickr .flickr-wrap.g15{margin:0 -7.5px;}
.widget.widget_instagram .instagram-wrap.g15 .instagram_badge_image, .widget.widget_flickr .flickr-wrap.g15 .flickr_badge_image{padding:0 7.5px !important;margin:0 0 15px 0 !important;}
.widget.widget_tag_cloud .tagcloud:before, .widget.widget_tag_cloud .tagcloud:after, .widget_product_tag_cloud .tagcloud:before, .widget_product_tag_cloud .tagcloud:after{display:table;clear:both;content:"";}
.widget.widget_tag_cloud .tagcloud{margin:-10px -10px;padding-top:5px;}
.widget.widget_tag_cloud .tagcloud a{float:left;display:inline-block;font-size:12px;padding:10px 25px;background-color:#f6f6f6;margin:10px 10px;text-transform:uppercase;color:#191919;}
.widget.widget_tag_cloud .tagcloud a:hover{color:#fff;background-color:#fd5a5a;}
#footer .widget.widget_tag_cloud .tagcloud a{background-color:rgba(255, 255, 255, 0.1);color:#999;}
#footer .widget.widget_tag_cloud .tagcloud a:hover{color:#fff;background-color:#fd5a5a;}
.widget.widget_media_gallery .gallery-icon{background-color:#222;overflow:hidden;}
.widget.widget_media_gallery .gallery-icon img{transition:0.3s;}
.widget.widget_media_gallery .gallery-icon:hover img{transform:scale(1.2) rotate(10deg);opacity:0.6;}
#footer{background-color:#191919;padding:114px 0 50px;z-index:1;border-style:solid;position:relative;}
#footer-widgets .widget{color:#939393;margin:0 0 35px;}
#footer-widgets .widget ul{margin:0;list-style:none;}
#footer table,
#footer th,
#footer td{border-color:#383838;}
#footer select{border-color:#404145;background-color:#404145;color:#7f8183;}
#footer input[type="search"]{border-color:#404145;background-color:#404145;color:#7f8183;}
.footer-grid .col{float:left;}
.footer-grid .span_1_of_1.col{float:none;}
.footer-grid .span_1_of_2{width:50%;}
.footer-grid .span_1_of_3{width:33.33%;}
.footer-grid .span_1_of_4{width:25%;}
.footer-grid .w370{width:31.624%;}
.footer-grid .w170{width:14.53%;margin-left:2.564%;}
.footer-grid .w270{width:23.077%;margin-left:2.564%;}
.footer-grid.gutter-5{margin-left:-2.5px;margin-right:-2.5px;}
.footer-grid.gutter-5 > .col{padding-left:2.5px;padding-right:2.5px}
.footer-grid.gutter-10{margin-left:-5px;margin-right:-5px;}
.footer-grid.gutter-10 > .col{padding-left:5px;padding-right:5px;}
.footer-grid.gutter-15{margin-left:-7.5px;margin-right:-7.5px;}
.footer-grid.gutter-15 > .col{padding-left:7.5px;padding-right:7.5px;}
.footer-grid.gutter-20{margin-left:-10px;margin-right:-10px;}
.footer-grid.gutter-20 > .col{padding-left:10px;padding-right:10px;}
.footer-grid.gutter-25{margin-left:-12.5px;margin-right:-12.5px;}
.footer-grid.gutter-25 > .col{padding-left:12.5px;padding-right:12.5px;}
.footer-grid.gutter-30{margin-left:-15px;margin-right:-15px;}
.footer-grid.gutter-30 > .col{padding-left:15px;padding-right:15px;}
.footer-grid.gutter-35{margin-left:-17.5px;margin-right:-17.5px;}
.footer-grid.gutter-35 > .col{padding-left:17.5px;padding-right:17.5px;}
.footer-grid.gutter-40{margin-left:-20px;margin-right:-20px;}
.footer-grid.gutter-40 > .col{padding-left:20px;padding-right:20px;}
.footer-grid.gutter-45{margin-left:-22.5px;margin-right:-22.5px;}
.footer-grid.gutter-45 > .col{padding-left:22.5px;padding-right:22.5px;}
.footer-grid.gutter-50{margin-left:-25px;margin-right:-25px;}
.footer-grid.gutter-50 > .col{padding-left:25px;padding-right:25px;}
.footer-grid.gutter-60{margin-left:-30px;margin-right:-30px;}
.footer-grid.gutter-60 > .col{padding-left:30px;padding-right:30px;}
.footer-grid.gutter-70{margin-left:-35px;margin-right:-35px;}
.footer-grid.gutter-70 > .col{padding-left:35px;padding-right:35px;}
.footer-grid.gutter-80{margin-left:-40px;margin-right:-40px;}
.footer-grid.gutter-80 > .col{padding-left:40px;padding-right:40px;}
#bottom{color:#939393;min-height:100px;background-color:#191919;position:relative;}
#bottom:before{position:absolute;top:0;left:0;width:100%;height:1px;content:'';}
#bottom .bottom-bar-inner-wrap{padding:30px 0;}
#bottom #copyright a:hover{color:#fd5a5a;}
#bottom.style-1 .bottom-bar-copyright{text-align:center;}
#bottom.style-2 #copyright{float:left;}
#bottom.style-2 .bottom-bar-menu{float:right;}
#bottom.style-3 .bottom-bar-copyright{display:flex;justify-content:space-between;align-items:center;}
#bottom.style-3 .bottom-bar-copyright:after,
#bottom.style-3 .bottom-bar-copyright:before{display:none;}
.bottom-bar-menu ul{list-style:none;margin:0;}
.bottom-bar-menu ul ul{display:none;}
.bottom-bar-menu ul li{display:inline-block;padding-left:28px;position:relative;}
.bottom-bar-menu ul li:before{content:"";position:absolute;left:12px;top:9px;width:1px;height:14px;background-color:#444;}
.bottom-bar-menu ul li:first-child{padding-left:0;}
.bottom-bar-menu ul li:first-child:before{display:none;}
.bottom-bar-menu a{color:#646464;font-size:15px;font-weight:600;}
#bottom-logo{float:left;max-width:100%;transition:all ease 0.3s;}
#bottom-logo-inner{transition:all ease 0.3s;}
#bottom #bottom-logo .bottom-logo-text{color:#fff;font-size:32px;line-height:36px;font-weight:bolder;text-transform:uppercase;}
#bottom #bottom-logo .bottom-logo-text:hover{color:#fd5a5a;}
#bottom.style-3 #copyright{margin:0 20px;direction:rtl;}
#bottom .bottom-socials a{display:inline-block;width:36px;height:36px;line-height:36px;font-size:16px;margin:5px;background-color:rgba(255, 255, 255, 0.1);color:#fff;text-align:center;}
#bottom .bottom-socials a:hover{background-color:#fd5a5a;color:#fff;}
#scroll-top{position:fixed !important;right:36px;bottom:0;display:block;line-height:50px;text-align:center;width:50px;height:50px;border-radius:50%;visibility:hidden;opacity:0;z-index:9999;cursor:pointer;z-index:1;overflow:hidden;box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);}
#scroll-top:after{content:"\e682";font-family:"Pe-icon-7-stroke";color:#191919;font-size:40px;position:absolute;left:0;top:0;width:100%;transition:all ease 0.3s;}
#scroll-top:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background-color:#eee;z-index:-1;transition:all ease 0.3s;}
#scroll-top:hover:before{background-color:#fd5a5a;}
#scroll-top:hover:after{color:#fff;}
#scroll-top.show{bottom:75px;opacity:1;visibility:visible;}
.products .product{list-style:none;}
.nusafe-pagination, .woocommerce-pagination, .project-nav .nusafe-pagination{clear:both;margin:80px 0 0;text-align:center;}
.woocommerce-pagination{margin-top:0;border:0;clear:both;padding-top:90px;text-align:center;}
.nusafe-pagination ul, .woocommerce-pagination .page-numbers{margin:0;}
.nusafe-pagination ul li, .woocommerce-pagination .page-numbers li{display:inline-block;padding:0;margin:0 3px;}
.nusafe-pagination ul li .page-numbers, .woocommerce-pagination .page-numbers li .page-numbers{display:inline-block;font-size:16px;line-height:50px;width:50px;height:50px;border:1px solid #dddfe1;color:#191919;font-family:"Tajawal";text-align:center;overflow:hidden;transition:all ease 0.3s;}
.nusafe-pagination ul li .page-numbers:hover, .woocommerce-pagination .page-numbers li .page-numbers:hover, .nusafe-pagination ul li .page-numbers.current, .woocommerce-pagination .page-numbers li .page-numbers.current{background-color:#fd5a5a;border-color:#fd5a5a;color:#fff;}
.project-nav .nusafe-pagination{border-top:0;padding-top:0;margin:80px 0 0;}
@media only screen and (max-width: 575px) {
.nusafe-pagination, .woocommerce-pagination, .project-nav .nusafe-pagination{text-align:left;}
} .no-results-content{max-width:800px;margin:0 auto;text-align:center;}
.no-results-content .search-form{position:relative;}
.no-results-content .text{display:none;}
.no-results-content .search-form .search-field{padding:12px 25px;margin-bottom:0;height:60px;width:100%;border-radius:5px;background-color:#f7f7f7;border-color:#f7f7f7;}
.no-results-content .search-form .search-field:focus{border-color:#fd5a5a;}
.no-results-content .search-form .search-submit{position:absolute;background-color:transparent;right:7px;top:7px;width:46px;height:46px;text-align:center;text-indent:-9999px;padding:0;border:0;overflow:hidden;}
.no-results-content .search-form .search-submit:before{color:#999;border-radius:5px;content:"\f178";font-family:"Core Icon";font-size:18px;width:100%;height:100%;line-height:46px;position:absolute;left:0;top:0;text-align:center;text-indent:0;font-weight:normal;transition:all ease 0.3s;}
.no-results-content .search-form .search-submit:hover:before{color:#fd5a5a;}
@media only screen and (max-width: 1024px) { 
.header-style-2 #site-header .header-search-wrap,
.header-style-2 .nav-top-cart-wrapper{display:none;}
}
@media only screen and (min-width: 992px) {
#featured-title .inner-wrap{padding:95px 0;}
}
@media only screen and (max-width: 991px) {
#main-nav,
.nav-top-cart-wrapper, .header-search-wrap, #sidebar{display:none;}
.mobile-button{display:block;}
#site-content,
#sidebar{width:100% !important;max-width:none !important;float:none;}
#inner-content{padding-left:0 !important;padding-right:0 !important;}
#main-content{padding:60px 0;}
#featured-title .main-title{font-size:50px;}
#featured-title .sub-title{font-size:20px;}
.header-style-2 #site-header-wrap #site-header .site-header-inner{padding:0 20px;}
.hentry .post-tags, .hentry .post-author{margin-top:40px;}
#footer{padding:60px 0 50px;}
#footer-widgets .footer-grid > .col:last-child > .widget:last-child{margin-bottom:0;}
.footer-grid.special-grid .width370{width:100%;}
.footer-grid.special-grid .width170{width:50%;}
#footer-widgets .widget.widget_instagram .instagram-wrap,
#footer-widgets .widget.widget_flickr .flickr-wrap{max-width:400px;}
}
@media only screen and (max-width: 767px) {
.wpcf7 .input-wrap .wpcf7-form-control-wrap{width:100% !important;margin-right:0 !important;}
#main-content{padding:60px 0;}
#topbar{display:none;}
.search-style-fullscreen .search_form{width:80%;}
#featured-title .inner-wrap,
#featured-title .title-group,
#featured-title #breadcrumbs{display:block;width:100%;text-align:left;}
#featured-title .sub-title{display:none;}
.hentry .post-author{text-align:center;}
.hentry .post-author .author-avatar{float:none;margin:0 auto 20px;}
.comment-list .children > li{padding:0 0 30px;}
.comment-list article .gravatar{float:none;margin:0 0 15px;width:80px;height:80px;}
.comment-meta, .comment-text{margin-bottom:15px;}
#comments .name-wrap,
#comments .email-wrap,
#comments .url-wrap{width:100%;float:none;margin:0;}
.widget_media_gallery .gallery img{width:100%;}
#footer{padding:40px 0 50px;}
#footer-widgets .footer-grid .col{width:100%;}
.footer-grid.special-grid .width200{width:100%;}
#bottom .bottom-bar-inner-wrap{padding:30px 0 27px;}
.hentry .post-title{padding-right:0px;}
.hentry .post-link{position:static;margin-bottom:10px;}
#bottom.style-3 .bottom-socials,
#bottom.style-3 #bottom-logo{display:none;}
#bottom.style-3 #copyright{margin:0 auto;}
}
@media only screen and (max-width: 575px) {
#featured-title.creative .inner-wrap{padding-bottom:0;}
#featured-title.creative #breadcrumbs .breadcrumbs-inner{position:relative;transform:translateX(0);bottom:unset;left:unset;margin-top:20px;width:100%;}
}  .nusafe-accordions .item{border-bottom:1px solid #dddfe1;padding:30px 0 0;}
.nusafe-accordions .item:last-child{border:none;padding-bottom:0 !important;}
.nusafe-accordions .item:first-child{padding-top:0;}
.nusafe-accordions .item .heading{position:relative;min-height:26px;margin-bottom:26px;}
.nusafe-accordions .item .heading h6{font-size:18px;position:relative;padding-right:50px;cursor:pointer;}
.nusafe-accordions .item .heading:hover h6{color:#fd5a5a;}
.nusafe-accordions .item .heading .arrow{width:26px;height:26px;position:absolute;top:0;right:0;cursor:pointer;}
.nusafe-accordions .item .heading .arrow:hover{transform:translate(0);}
.nusafe-accordions .item .heading .arrow:after{position:absolute;animation:none;top:0;left:0;width:26px;height:26px;line-height:26px;font-size:10px;color:#fff;background-color:#191919;border-radius:50%;text-align:center;font-family:"FontAwesome";content:'\f067';transition:0.3s;}
.nusafe-accordions .item.active .heading .arrow:after{content:'\f068';background-color:#fd5a5a;}
.nusafe-accordions .item.active{padding-bottom:30px;}
.nusafe-accordions .item .content{display:none;}
.nusafe-calltoaction.style-1{text-align:center;}
.nusafe-calltoaction.style-2{display:table;width:100%;}
.nusafe-calltoaction.style-2 .heading-wrap, .nusafe-calltoaction.style-2 .url-wrap{display:table-cell;vertical-align:middle;}
.nusafe-calltoaction.style-2 .url-wrap{text-align:right;min-width:240px;margin-left:50px;text-align:right;}
@media only screen and (max-width: 991px) {
.nusafe-calltoaction.style-2 .heading-wrap, .nusafe-calltoaction.style-2 .url-wrap{display:block;}
.nusafe-calltoaction.style-2 .heading-wrap{margin-bottom:50px;text-align:center;}
.nusafe-calltoaction.style-2 .url-wrap{text-align:center;margin:0;}
.nusafe-calltoaction.style-2 .heading{margin:0 auto;}
} .nusafe-links{font-size:13px;line-height:26px;font-weight:500;text-transform:uppercase;position:relative;display:inline-block;transition:0.3s;}
.nusafe-links .text{position:relative;display:inline-block;}
.nusafe-links .text:before{position:absolute;bottom:0;left:0;width:100%;height:2px;content:'';}
.nusafe-links.accent-color{color:#fd5a5a;}
.nusafe-links.light-color{color:#fff;}
.nusafe-links.dark-color{color:#191919;}
.nusafe-links.accent-color.link-style-1 .text:before, .nusafe-links.accent-color.link-style-1 .text:after{background-color:#fd5a5a;}
.nusafe-links.light-color.link-style-1 .text:before, .nusafe-links.light-color.link-style-1 .text:after{background-color:#fff;}
.nusafe-links.dark-color.link-style-1 .text:before, .nusafe-links.dark-color.link-style-1 .text:after{background-color:#191919;}
.nusafe-links.link-style-1{position:relative;display:inline-block;overflow:hidden;}
.nusafe-links.link-style-1 .text:before{content:"";width:100%;height:2px;position:absolute;right:0;bottom:0;opacity:0.5;}
.nusafe-links.link-style-1 .text:after{content:"";width:0;height:2px;position:absolute;right:0;bottom:0;z-index:1;-webkit-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;-moz-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;-ms-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;-o-transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;transition:width 0.7s cubic-bezier(0.35, 0.7, 0.35, 1) 0.3s;}
.nusafe-links.link-style-1:hover .text:after{width:100%;}
.nusafe-links.link-style-2{padding-right:20px;}
.nusafe-links.link-style-2:hover{opacity:1;}
.nusafe-links.link-style-2 .icon{position:absolute;top:0;right:0;width:13px;}
.nusafe-links.link-style-2 .icon:after{position:absolute;top:0;right:0;content:'\f178';font-family:"Core Icon";color:#fff;font-size:13px;transition:0.3s;}
.nusafe-links.link-style-2:hover .icon:after{animation:BottomToTop 0.3s forwards;}
.nusafe-button{font-size:13px;font-weight:500;display:inline-block;transition:all ease 0.3s;text-transform:uppercase;padding:9px 35px;}
.nusafe-button.small{padding:11px 30px;}
.nusafe-button.medium{padding:14px 35px;}
.nusafe-button.big{padding:19px 45px;}
.nusafe-button .btn-icon.icon-right{padding-left:5px;}
.nusafe-button.border-solid{border-style:solid;}
.nusafe-button.border-dotted{border-style:dotted;}
.nusafe-button.border-dashed{border-style:dashed;}
.nusafe-button.border-solid.small, .nusafe-button.border-dotted.small, .nusafe-button.border-dashed.small{padding:9px 30px;}
.nusafe-button.border-solid.medium, .nusafe-button.border-dotted.medium, .nusafe-button.border-dashed.medium{padding:12px 35px;}
.nusafe-button.border-solid.big, .nusafe-button.border-dotted.big, .nusafe-button.border-dashed{padding:17px 45px;}
.nusafe-button.button-accent{background-color:#fd5a5a;color:#fff;}
.nusafe-button.button-accent:hover{background-color:#191919;color:#fff}
.nusafe-button.button-accent .btn-icon{color:#fff;}
.nusafe-button.button-accent:hover .btn-icon{color:#fff;}
.nusafe-button.button-outline-accent{border-color:#fd5a5a;color:#fd5a5a;}
.nusafe-button.button-outline-accent:hover{background-color:#fd5a5a;border-color:#fd5a5a;color:#fff;}
.nusafe-button.button-outline-accent .btn-icon{color:#fd5a5a;}
.nusafe-button.button-outline-accent:hover .btn-icon{color:#fff;}
.nusafe-button.has-icon{position:relative;}
.nusafe-button.has-icon:after{position:absolute;font-family:"Core Icon";content:'\f178';}
.nusafe-button.has-icon.small{padding-right:50px;}
.nusafe-button.has-icon.small:after{right:30px;top:11px;}
.nusafe-button.has-icon.medium{padding-right:55px;}
.nusafe-button.has-icon.medium:after{right:35px;top:14px;}
.nusafe-button.has-icon.big{padding-right:65px;}
.nusafe-button.has-icon.big:after{right:45px;top:19px;}
.nusafe-button.has-icon.border-solid.small:after, .nusafe-button.has-icon.border-dotted.small:after, .nusafe-button.has-icon.border-dashed.small:after{top:9px;}
.nusafe-button.has-icon.border-solid.medium:after, .nusafe-button.has-icon.border-dotted.medium:after, .nusafe-button.has-icon.border-dashed.medium:after{top:12px;}
.nusafe-button.has-icon.border-solid.big:after, .nusafe-button.has-icon.border-dotted.big:after, .nusafe-button.has-icon.border-dashed:after{top:17px;}
.submit-btn, .button:after, .submit-btn:after, .mc4wp-form .submit:after, .nusafe-button:after{transition:0.3s;}
.button:hover, .submit-btn:hover, .mc4wp-form .submit:hover, .nusafe-button:hover{transform:translateY(-3px);}
.button:hover:after, .submit-btn:hover:after, .mc4wp-form .submit:hover:after, .nusafe-button:hover:after{opacity:0.9;transform-style:preserve-3d;animation:BottomToTop 0.3s;}
.nusafe-canvas.style-2 img{-webkit-animation:zoomeffect 10s infinite;-moz-animation:zoomeffect 10s infinite;animation:zoomeffect 10s infinite;}
@-webkit-keyframes zoomeffect {
0%{background-position:center;transform:scale(0.8);}
50%{background-position:center;transform:scale(1);}
100%{background-position:center;transform:scale(0.8);}
}
.nusafe-canvas.style-3 img{-webkit-animation:movingeffect 10s infinite;-moz-animation:movingeffect 10s infinite;animation:movingeffect 10s infinite}
@keyframes movingeffect {
0%{-webkit-transform:translateY(0px) translateX(0) rotate(0);transform:translateY(0px) translateX(0) rotate(0);}
30%{-webkit-transform:translateY(30px) translateX(50px) rotate(15deg);transform:translateY(30px) translateX(50px) rotate(15deg);-webkit-transform-origin:center center;transform-origin:center center;}
50%{-webkit-transform:translateY(50px) translateX(100px) rotate(45deg);transform:translateY(50px) translateX(100px) rotate(45deg);-webkit-transform-origin:right bottom;transform-origin:right bottom;}
80%{-webkit-transform:translateY(30px) translateX(50px) rotate(15deg);transform:translateY(30px) translateX(50px) rotate(15deg);-webkit-transform-origin:left top;transform-origin:left top;}
100%{-webkit-transform:translateY(0px) translateX(0) rotate(0);transform:translateY(0px) translateX(0) rotate(0);-webkit-transform-origin:center center;transform-origin:center center;}
}
.nusafe-canvas.style-4 img{-webkit-animation:shakeeffect 10s infinite;-moz-animation:shakeeffect 10s infinite;animation:shakeeffect 10s infinite}
@keyframes shakeeffect {
0%{-webkit-transform:rotate3d(0, 1, 0, 0deg);transform:rotate3d(0, 1, 0, 0deg);}
30%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1, 15deg);}
60%{-webkit-transform:rotate3d(1, 0, 0, 0deg);transform:rotate3d(1, 0, 0, 0deg);}
80%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1, 15deg);}
100%{-webkit-transform:rotate3d(0, 1, 0, 0deg);transform:rotate3d(0, 1, 0, 0deg);}
}
.nusafe-canvas.style-5 img{-webkit-animation:bounceeffect 10s infinite;-moz-animation:bounceeffect 10s infinite;animation:bounceeffect 10s infinite}
@keyframes bounceeffect {
0%{-webkit-transform:translateY(0);transform:translateY(0);}
100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);}
} .nusafe-content-box{transition:0.3s;}
.nusafe-content-box .inner{width:100%;transition:0.3s;}
.nusafe-content-box.hover-effect-1 .inner{position:relative;overflow:hidden;z-index:0;}
.nusafe-content-box.hover-effect-1 .inner:after{position:absolute;top:-40%;left:-100%;width:100%;height:150%;content:'';background-color:rgba(255, 255, 255, 0.2);transform:rotate(10deg);transition:0.5s;opacity:0;visibility:hidden;z-index:-1;}
.nusafe-content-box.hover-effect-1:hover .inner:after{left:-30%;opacity:1;visibility:visible;}
.nusafe-counter .number, .nusafe-counter .heading, .nusafe-counter .divider{font-family:"Tajawal";color:#191919;}
.nusafe-counter .number{font-size:48px;line-height:100px;}
.nusafe-counter .heading{font-size:27px;line-height:30px;margin-bottom:0;}
.nusafe-counter.counter-style-2 .content-wrap{width:100%;display:table;}
.nusafe-counter.counter-style-2 .number, .nusafe-counter.counter-style-2 .heading{display:table-cell;vertical-align:middle;}
.nusafe-counter.counter-style-2 .number{font-size:50px;line-height:60px;position:relative;padding-right:36px;}
.nusafe-counter.counter-style-2 .number:after{position:absolute;bottom:5px;right:18px;content:'';width:1px;height:50px;background-color:#dddfe1;}
.nusafe-counter.counter-style-2 .heading{max-width:125px;}
.nusafe-counter.counter-style-3 .content-wrap{display:table;}
.nusafe-counter.counter-style-3 .number, .nusafe-counter.counter-style-3 .heading, .nusafe-counter.counter-style-3 .divider{display:inline-block;vertical-align:middle;}
.nusafe-counter.counter-style-3 .number{font-size:50px;line-height:60px;}
.nusafe-counter.counter-style-3 .heading{max-width:165px;}
@media only screen and (max-width: 1200px) {
.nusafe-counter.counter-style-2{text-align:center;}
.nusafe-counter.counter-style-2 .content-wrap{display:block;}
.nusafe-counter.counter-style-2 .icon-style-2 .icon-wrap{display:block;transform:translateX(-25%);}
.nusafe-counter.counter-style-2 .number, .nusafe-counter.counter-style-2 .heading{display:block;text-align:center;}
.nusafe-counter.counter-style-2 .number:after{display:none;}
.nusafe-counter.counter-style-2 .number{padding:0;margin:0 auto 20px;}
.nusafe-counter.counter-style-2 .heading{max-width:100%;}
} .nusafe-divider{display:block;width:100%;height:0;background:none;margin:0 auto;}
.nusafe-divider.divider-right{margin:0;float:right;}
.nusafe-divider.divider-left{margin:0;float:left;}
.nusafe-divider .divider-icon{display:inline-block;position:relative;}
.nusafe-divider .divider-icon-before{display:block;position:absolute;top:50%;border-bottom:solid 1px #dddfe1;right:100%;width:9999px;margin-top:-0.5px;}
.nusafe-divider .divider-icon-after{display:block;position:absolute;top:50%;border-bottom:solid 1px #dddfe1;left:100%;width:9999px;margin-top:-0.5px;}
.nusafe-divider.divider-solid{border-top:1px solid #dddfe1}
.nusafe-divider.divider-dashed{border-top:1px dashed #dddfe1}
.nusafe-divider.divider-dotted{border-top:1px dotted #dddfe1}
.nusafe-divider.divider-double, .nusafe-divider.has-icon .divider-double{height:1px;padding-top:1px;padding-bottom:1px;border-top:1px solid #dddfe1;border-bottom:1px solid #dddfe1;}
.nusafe-divider.has-icon{display:block;height:auto;margin:0 auto;text-align:center;border:none;overflow:hidden;}
.nusafe-divider.has-icon .icon-wrap{display:inline-block;padding:0 12px;font-size:16px;}
.nusafe-divider.has-icon .icon-wrap > span{display:inline-block;}
.nusafe-divider.has-icon .icon-wrap > span.accent{color:#fd5a5a;}
.nusafe-divider.has-icon .divider-dotted{border-style:dotted;}
.nusafe-divider.has-icon .divider-dashed{border-style:dashed;}
.divider-icon-before.accent, .divider-icon-after.accent, .nusafe-divider.has-icon .divider-double.accent{border-color:#fd5a5a;}
.nusafe-event-box{position:relative;overflow:hidden;}
.nusafe-event-box .image{position:relative;border-radius:3px;overflow:hidden;}
.nusafe-event-box .image img{transition:0.3s;}
.nusafe-event-box .texts{position:relative;margin:-65px 0 30px 20px;transition:0.3s;width:calc(100% - 130px);min-height:150px;min-width:60%;background-color:#fff;box-shadow:0 10px 20px 0 rgba(0, 41, 124, 0.1);padding:40px 30px;}
.nusafe-event-box .date{position:absolute;top:30px;left:30px;width:90px;height:90px;background-color:#fd5a5a;border-radius:50%;text-align:center;transition:0.3s;}
.nusafe-event-box .date .day{font-size:30px;line-height:35px;margin:auto;color:#fff;display:block;margin-top:15px;}
.nusafe-event-box .date .month{font-size:16px;line-height:20px;color:#fff;display:block;}
.nusafe-event-box .texts .title{font-size:22px;line-height:32px;margin-bottom:0;font-weight:500;}
.nusafe-event-box .texts .title:hover a{color:#fd5a5a;}
.nusafe-event-box .texts .content{font-size:14px;line-height:26px;font-weight:500;padding-left:24px;position:relative;display:inline-block;margin:0 15px 10px 0;}
.nusafe-event-box .texts .content:last-child{margin-left:0;}
.nusafe-event-box .texts .content:after{position:absolute;top:0;left:0;font-family:"Core Icon";}
.nusafe-event-box .texts .content.time:after{content:'\ea6b';}
.nusafe-event-box .texts .content.location:after{content:'\ea6c';}
.nusafe-event-box.style-1 .texts .meta-wrap, .nusafe-event-box.style-1 .texts .title{padding-left:115px;}
.nusafe-event-box.style-1:hover .image img{transform:scale(1.1);}
.column-3 .nusafe-event-box.style-1 .texts{width:calc( 100% - 40px );}
.nusafe-event-box.style-2 .texts{bottom:0;padding:34px 40px 20px;width:calc(100% - 40px);box-shadow:none;}
.nusafe-event-box.style-2 .date{position:absolute;top:30px;left:0;width:70px;height:70px;text-align:center;border-radius:unset;}
.nusafe-event-box.style-2:after{position:absolute;}
.nusafe-event-box.style-2 .date .day{display:block;color:#fff;font-size:30px;line-height:34px;font-family:"Playfair Display";font-weight:700;margin-top:10px;}
.nusafe-event-box.style-2 .date .month{display:block;color:#fff;font-size:13px;line-height:16px;}
.nusafe-event-box.style-2 .content:after{color:#fd5a5a;}
.nusafe-event-box.style-2 .title{font-size:24px;font-weight:700;font-family:"Playfair Display";margin-bottom:10px;}
.nusafe-event-box.style-2 .content{margin-bottom:0;}
.nusafe-event-box.style-2:hover .texts{box-shadow:0 0 20px 0 rgba(0, 41, 124, 0.1);transform:translateY(-10px);}
.nusafe-event-box.style-2:hover .image img{transform:scale(1.05);}
.nusafe-event-box.style-3{padding-bottom:0;}
.nusafe-event-box.style-3 .image{padding-bottom:20px;overflow:hidden;}
.nusafe-event-box.style-3 .image img{border-radius:3px;}
.nusafe-event-box.style-3 .date{position:absolute;bottom:0;left:30px;width:80px;height:80px;text-align:center;border-radius:3px;top:unset;z-index:1;}
.nusafe-event-box.style-3 .date .day{display:block;color:#fff;font-size:36px;line-height:42px;font-family:"Playfair Display";font-weight:700;margin-top:5px;}
.nusafe-event-box.style-3 .date .month{display:block;color:#fff;font-size:14px;line-height:16px;}
.nusafe-event-box.style-3 .texts{position:relative;bottom:unset;left:unset;box-shadow:unset;padding:33px 0 0;margin:0;width:100%;}
.nusafe-event-box.style-3 .title{font-size:27px;line-height:40px;font-weight:700;font-family:"Playfair Display";}
.nusafe-event-box.style-3 .content{margin-bottom:12px;}
@media only screen and (max-width: 991px) {
.nusafe-event-box .texts{width:calc(100% - 40px);padding:30px 25px;}
.nusafe-event-box.style-1 .date{position:absolute;top:20px;left:20px;width:90px;height:90px;border-radius:50%;text-align:center;}
.nusafe-event-box.style-1 .texts .title, .nusafe-event-box.style-1 .texts .meta-wrap{padding-left:125px;}
.nusafe-event-box .image img{width:100%;}
}
@media only screen and (max-width: 767px) {
.nusafe-event-box.style-1 .texts .title, .nusafe-event-box.style-1 .texts .meta-wrap{padding-left:0;}
.nusafe-event-box.style-1 .date{position:static;margin-bottom:10px;display:inline-block;}
} .nusafe-event-block .images-wrap{float:left;width:calc((100% - 30px)/2);margin-right:30px;overflow:hidden;height:675px;border-radius:5px;}
.nusafe-event-block .infos-wrap{float:right;width:calc((100% - 30px)/2);}
.nusafe-event-block .infos-wrap .thumb{display:none;width:160px;height:160px;border-radius:3px;overflow:hidden;}
.nusafe-event-block .event-info{background-color:#f6f6f6;margin-bottom:30px;border-radius:5px;padding:30px 30px 37px;position:relative;}
.nusafe-event-block .event-date{position:absolute;top:0;right:0;border-radius:5px;width:60px;height:60px;background-color:#fd5a5a;text-align:center;}
.nusafe-event-block .event-date .day{font-size:27px;line-height:30px;color:#fff;font-family:"Tajawal";display:block;margin-top:4px;}
.nusafe-event-block .event-date .month{font-size:14px;line-height:20px;color:#fff;display:block;text-transform:uppercase;}
.nusafe-event-block .event-time{display:inline-block;text-transform:uppercase;font-size:14px;margin-bottom:5px;}
.nusafe-event-block .title{font-size:27px;line-height:40px;margin-bottom:10px;}
.nusafe-event-block .title:hover a{color:#fd5a5a;}
.nusafe-event-block .desc{margin-bottom:0;}
@media only screen and (max-width: 991px) {
.nusafe-event-block .images-wrap{display:none;}
.nusafe-event-block .infos-wrap{width:100%;}
.nusafe-event-block .event-info{padding-left:210px;}
.nusafe-event-block .infos-wrap .thumb{display:block;position:absolute;top:20px;left:20px;}
.nusafe-event-block .event-time{padding-right:65px;}
}
@media only screen and (max-width: 576px) {
.nusafe-event-block .event-info{padding-left:30px;}
.nusafe-event-block .infos-wrap .thumb{display:none;}
} .nusafe-fancy-image,
.nusafe-fancy-img{position:relative;}
.nusafe-fancy-image .nusafe-video-button, .nusafe-fancy-img .nusafe-video-button{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);transition:all ease 1.3s;}
.nusafe-fancy-image.simple .nusafe-video-button{opacity:1;margin:0;}
.nusafe-fancy-image.animated .nusafe-video-button, .nusafe-fancy-image.is-in-view .nusafe-video-button{opacity:1;margin-left:0;}
@media screen and (max-width:991px){
.nusafe-fancy-image.stretch-on-mobile img{width:100%;height:auto;}
}
.nusafe-fancy-img-holder, .nusafe-fancy-img-bg{-webkit-transition:opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);transition:opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);transition:opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);transition:opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);-webkit-transform:translate(0, 0);transform:translate(0, 0);opacity:0;}
.nusafe-fancy-img-bg{display:inline-block;position:absolute;top:20px;left:20px;right:20px;bottom:20px;z-index:0;background-color:#4582ff;}
.nusafe-fancy-img-holder{opacity:0;}
.nusafe-fancy-img-holder img{width:100%;}
.nusafe-fancy-img-holder, .nusafe-fancy-img{position:relative;}
.nusafe-fancy-img.is-in-view .nusafe-fancy-img-bg, .nusafe-fancy-img.is-in-view .nusafe-fancy-img-holder{opacity:1;}
.nusafe-fancy-img.is-in-view .nusafe-video-button{opacity:1;margin-left:0;}
.nusafe-fancy-img.is-in-view.bg-top .nusafe-fancy-img-bg{-webkit-transform:translate(-20px, -20px);transform:translate(-20px, -20px);}
.nusafe-fancy-img.is-in-view.bg-top .nusafe-fancy-img-holder{-webkit-transform:translate(15px, 15px);transform:translate(15px, 15px);}
.nusafe-fancy-img.is-in-view.bg-right .nusafe-fancy-img-bg{-webkit-transform:translate(20px, -20px);transform:translate(20px, -20px);}
.nusafe-fancy-img.is-in-view.bg-right .nusafe-fancy-img-holder{-webkit-transform:translate(-15px, 15px);transform:translate(-15px, 15px);}
.nusafe-fancy-img.is-in-view.bg-bottom .nusafe-fancy-img-bg{-webkit-transform:translate(20px, 20px);transform:translate(20px, 20px);}
.nusafe-fancy-img.is-in-view.bg-bottom .nusafe-fancy-img-holder{-webkit-transform:translate(-15px, -15px);transform:translate(-15px, -15px);}
.nusafe-fancy-img.is-in-view.bg-left .nusafe-fancy-img-bg{-webkit-transform:translate(-20px, 20px);transform:translate(-20px, 20px);}
.nusafe-fancy-img.is-in-view.bg-left .nusafe-fancy-img-holder{-webkit-transform:translate(15px, -15px);transform:translate(15px, -15px);}
.nusafe-fancy-image.reveal{display:inline-block;}
.nusafe-fancy-image.reveal > *{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:cubic-bezier(0.86, 0, 0.07, 1);animation-timing-function:cubic-bezier(0.86, 0, 0.07, 1);}
.nusafe-fancy-image.reveal.animated{-webkit-transform:translate(0, 0);transform:translate(0, 0);}
.nusafe-fancy-image.reveal.animated > figure{-webkit-animation-name:hide-show;animation-name:hide-show;}
@keyframes hide-show {
0%{opacity:0;}
66.6%{opacity:0;}
66.7%{opacity:1;}
100%{opacity:1;}
}
.nusafe-fancy-image.reveal:after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background-color:#ddd;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:cubic-bezier(0.86, 0, 0.07, 1);animation-timing-function:cubic-bezier(0.86, 0, 0.07, 1);}
.nusafe-fancy-image.reveal.lr.animated:after{-webkit-animation-name:reveal-from-left;animation-name:reveal-from-left;}
.nusafe-fancy-image.reveal.rl.animated:after{-webkit-animation-name:reveal-from-right;animation-name:reveal-from-right;}
@keyframes reveal-from-left {
0%{-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scale(0,1);transform:scale(0,1);}
66.6%{-webkit-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1,1);transform:scale(1,1);}
66.7%{-webkit-transform-origin:right center;transform-origin:right center;-webkit-transform:scale(1,1);transform:scale(1,1);}
100%{-webkit-transform-origin:right center;transform-origin:right center;-webkit-transform:scale(0,1);transform:scale(0,1);}
}
@keyframes reveal-from-right {
0%{-webkit-transform-origin:right top;transform-origin:right top;-webkit-transform:scale(0,1);transform:scale(0,1);}
66.6%{-webkit-transform-origin:right center;transform-origin:right center;-webkit-transform:scale(1,1);transform:scale(1,1);}
66.7%{-webkit-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1,1);transform:scale(1,1);}
100%{-webkit-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(0,1);transform:scale(0,1);}
} .nusafe-feature-box .nusafe-icon-box .nusafe-icon .icon-wrap{background-repeat:no-repeat;background-position:center center;}
.nusafe-feature-box .nusafe-icon-box .desc{padding-bottom:30px;}
@media only screen and (max-width: 767px) {
.nusafe-feature-box .heading{font-size:20px !important;padding-top:10px !important;}
}
@media only screen and (max-width: 575px) {
.nusafe-feature-box.nusafe-content-box .inner{padding:30px !important;}
.nusafe-feature-box .nusafe-icon-box .nusafe-icon, .nusafe-feature-box .nusafe-icon-box .image-wrap{width:100% !important;position:relative !important;}
.nusafe-feature-box .nusafe-icon-box .nusafe-icon .icon-wrap{position:relative !important;margin:50px auto 15px !important;display:block !important;}
.nusafe-feature-box .nusafe-icon-box .content-wrap{text-align:center;padding-bottom:30px;}
.nusafe-feature-box .nusafe-icon-box .heading, .nusafe-feature-box .nusafe-icon-box .desc{padding:0 45px !important;}
.nusafe-feature-box .heading{font-size:24px !important;}
}  .wpcf7 input[type="text"],
.wpcf7 input[type="password"],
.wpcf7 input[type="datetime"],
.wpcf7 input[type="datetime-local"],
.wpcf7 input[type="date"],
.wpcf7 input[type="month"],
.wpcf7 input[type="time"],
.wpcf7 input[type="week"],
.wpcf7 input[type="number"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="search"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="color"],
.wpcf7 textarea{width:100%;margin-bottom:30px;}
.wpcf7 .input-wrap .wpcf7-form-control-wrap{float:left;width:calc((100% - 30px)/2);display:block;}
.wpcf7 .input-wrap .wpcf7-form-control-wrap:first-child{margin-right:30px;}
.wpcf7 .wpcf7-submit{margin-bottom:0;padding-right:55px;}
.wpcf7 .submit-btn{display:inline-block;position:relative;color:#fff;}
.wpcf7 .submit-btn:after{position:absolute;top:19px;right:55px;content:'\f178';font-family:"Core Icon";font-size:13px;}
.wpcf7-form input[type="submit"]{width:auto;}
.form-small-gap .wpcf7 .input-wrap .wpcf7-form-control-wrap{width:calc((100% - 20px)/2);}
.form-small-gap .wpcf7 .input-wrap .wpcf7-form-control-wrap:first-child{margin-right:20px;}
.wpcf7-form-control.wpcf7-not-valid{margin-bottom:8px !important;}
.form-small-gap .wpcf7 input[type="text"],
.form-small-gap .wpcf7 input[type="password"],
.form-small-gap .wpcf7 input[type="datetime"],
.form-small-gap .wpcf7 input[type="datetime-local"],
.form-small-gap .wpcf7 input[type="date"],
.form-small-gap .wpcf7 input[type="month"],
.form-small-gap .wpcf7 input[type="time"],
.form-small-gap .wpcf7 input[type="week"],
.form-small-gap .wpcf7 input[type="number"],
.form-small-gap .wpcf7 input[type="email"],
.form-small-gap .wpcf7 input[type="url"],
.form-small-gap .wpcf7 input[type="search"],
.form-small-gap .wpcf7 input[type="tel"],
.form-small-gap .wpcf7 input[type="color"],
.form-small-gap .wpcf7 textarea{width:100%;margin-bottom:20px;}
.contact-form-light ::placeholder{color:#fff;}
.contact-form-light :-ms-input-placeholder{color:#fff;}
.contact-form-light ::-ms-input-placeholder{color:#fff;}
.contact-form-light .wpcf7 input[type="text"],
.contact-form-light .wpcf7 input[type="password"],
.contact-form-light .wpcf7 input[type="datetime"],
.contact-form-light .wpcf7 input[type="datetime-local"],
.contact-form-light .wpcf7 input[type="date"],
.contact-form-light .wpcf7 input[type="month"],
.contact-form-light .wpcf7 input[type="time"],
.contact-form-light .wpcf7 input[type="week"],
.contact-form-light .wpcf7 input[type="number"],
.contact-form-light .wpcf7 input[type="email"],
.contact-form-light .wpcf7 input[type="url"],
.contact-form-light .wpcf7 input[type="search"],
.contact-form-light .wpcf7 input[type="tel"],
.contact-form-light .wpcf7 input[type="color"],
.contact-form-light .wpcf7 textarea{color:#fff !important;background-color:transparent;}
.contact-form-light .wpcf7 input[type="text"]:focus,
.contact-form-light .wpcf7 input[type="password"]:focus,
.contact-form-light .wpcf7 input[type="datetime"]:focus,
.contact-form-light .wpcf7 input[type="datetime-local"]:focus,
.contact-form-light .wpcf7 input[type="date"]:focus,
.contact-form-light .wpcf7 input[type="month"]:focus,
.contact-form-light .wpcf7 input[type="time"]:focus,
.contact-form-light .wpcf7 input[type="week"]:focus,
.contact-form-light .wpcf7 input[type="number"]:focus,
.contact-form-light .wpcf7 input[type="email"]:focus,
.contact-form-light .wpcf7 input[type="url"]:focus,
.contact-form-light .wpcf7 input[type="search"]:focus,
.contact-form-light .wpcf7 input[type="tel"]:focus,
.contact-form-light .wpcf7 input[type="color"]:focus,
.contact-form-light .wpcf7 textarea:focus{border-color:#fff;}
.contact-form-light .wpcf7 .wpcf7-submit{background-color:#fff;color:#191919;}
.contact-form-light .wpcf7 .submit-btn:after{color:#191919;}
.contact-form-light .wpcf7 .submit-btn:hover:after{color:#fff;}
.contact-form-light .wpcf7 .submit-btn:hover .wpcf7-submit, .contact-form-light .wpcf7 .wpcf7-submit:hover{background-color:#191919;color:#fff;}
.contact-form-light .wpcf7-not-valid-tip{color:#fff;}
.contact-form-light div.wpcf7-validation-errors, .contact-form-light div.wpcf7-acceptance-missing{color:#fff;}
.wpcf7 input{position:relative;}
.wpcf7-not-valid-tip{font-size:14px;}
.wpcf7 input.wpcf7-not-valid + span{margin-bottom:8px;}
.contact-form-small .wpcf7 input[type="text"],
.contact-form-small .wpcf7 input[type="password"],
.contact-form-small .wpcf7 input[type="datetime"],
.contact-form-small .wpcf7 input[type="datetime-local"],
.contact-form-small .wpcf7 input[type="date"],
.contact-form-small .wpcf7 input[type="month"],
.contact-form-small .wpcf7 input[type="time"],
.contact-form-small .wpcf7 input[type="week"],
.contact-form-small .wpcf7 input[type="number"],
.contact-form-small .wpcf7 input[type="email"],
.contact-form-small .wpcf7 input[type="url"],
.contact-form-small .wpcf7 input[type="search"],
.contact-form-small .wpcf7 input[type="tel"],
.contact-form-small .wpcf7 input[type="color"],
.contact-form-small .wpcf7 textarea{padding:10px 20px;}
.contact-form-small .wpcf7 .submit-btn:after{top:14px;right:50px;}
.contact-form-small .wpcf7 .wpcf7-submit{padding:12px 50px 12px 30px;}
@media only screen and (max-width: 575px) {
.wpcf7 .input-wrap .wpcf7-form-control-wrap{width:100% !important;}
.wpcf7 .input-wrap .wpcf7-form-control-wrap:first-child{margin-right:0 !important;}
} .mc4wp-form .desc{margin-bottom:23px;display:none;}
.mc4wp-form .email-form{position:relative;display:inline-block;padding-right:130px;width:100%;}
.mc4wp-form .email-form .email{background-color:#404145;border:1px solid #404145;width:100%;color:#fff;padding:26px 90px 26px 30px;line-height:26px;font-size:16px;position:relative;border-radius:5px;}
.mc4wp-form .submit{position:absolute;top:10px;right:0;display:inline-block;line-height:26px;padding:17px 50px 17px 30px;color:#fff;text-transform:uppercase;font-size:13px;text-align:center;background-color:#fd5a5a;border-radius:5px;}
.mc4wp-form .submit:after{position:absolute;top:17px;right:30px;line-height:26px;color:#fff;content:'\f178';font-family:"Core Icon";}
@media only screen and (max-width: 575px) {
.mc4wp-form .email-form{padding-right:30px;}
.mc4wp-form .submit{padding:0;text-indent:-9999px;width:60px;height:60px;line-height:60px;text-align:center;overflow:hidden;}
.mc4wp-form .submit:after{text-indent:0px;top:0;right:0;width:60px;height:60px;line-height:60px;text-align:center;border-radius:5px;}
} .nusafe-flip-box{perspective:1000px;}
.nusafe-flip-box .flip-front, .nusafe-flip-box .flip-back{transition:transform 1s;transition-timing-function:cubic-bezier(0.7, 0, 0.3, 1.3);transform-style:preserve-3d;text-shadow:0 0 5px rgba(0,0,0,0.1);}
.nusafe-flip-box .flip-back > *,
.nusafe-flip-box .flip-front > *{transform:translateZ(70px);transition:0.3s;backface-visibility:hidden;transition-timing-function:cubic-bezier(0.7, 0, 0.3, 1.3);animation-delay:0s !important;}
.nusafe-flip-box .flip-back .nusafe-button{transform:translateZ(70px) !important;}
.nusafe-flip-box .flip-front .desc p, .nusafe-flip-box .flip-back .desc p{margin-bottom:0;}
.nusafe-flip-box .flip-front{transform:rotateY(0deg);}
.nusafe-flip-box .flip-back{transform:rotateY(180deg);backface-visibility:hidden;position:absolute;top:0;left:0;bottom:0;right:0;}
.nusafe-flip-box:hover .flip-front{transform:rotateY(-180deg);backface-visibility:hidden;}
.nusafe-flip-box:hover .flip-back{transform:rotateY(0deg);}
.nusafe-galleries .single-image{position:relative;}
.nusafe-galleries .single-image img{width:100%;}
.nusafe-galleries .single-image .view-gallery-btn{position:absolute;top:20px;right:20px;width:40px;height:40px;z-index:9999;text-align:center;border-radius:50%;opacity:0;visibility:hidden;}
.nusafe-galleries .single-image .view-gallery-btn:after{position:absolute;top:0;left:0;width:40px;height:40px;line-height:40px;border-radius:50%;font-size:22px;font-family:"Pe-icon-7-stroke";content:'\e618';background-color:#dddfe1;color:#191919;}
.nusafe-galleries .single-image:hover .view-gallery-btn{opacity:1;visibility:visible;}
.nusafe-galleries .single-image .view-gallery-btn:hover:after{color:#fff;background-color:#fd5a5a;}
@media only screen and (max-width: 767px) {
.nusafe-galleries .single-image img{width:100%;}
} .nusafe-gridbox{display:table;width:100%;}
.nusafe-gridbox > div{display:table-cell;}
.nusafe-gridbox.has-2-col > div{width:50%;}
.nusafe-gridbox.has-3-col > div{width:33.33%;}
.nusafe-gridbox.has-4-col > div{width:25%;}
.nusafe-gridbox.style-2 > div{border:1px solid #e0e5e7;}
.nusafe-gridbox.style-2 > div:not(:last-child){border-right:none;}
.nusafe-gridbox.style-2 > div:hover{border-color:transparent;box-shadow:0 0 30px 0 rgba(0, 41, 124, 0.1);}
@media only screen and (max-width: 767px) {
.nusafe-gridbox > div{display:block;float:left;}
.nusafe-gridbox.has-4-col > div{width:50% !important;}
.nusafe-gridbox.has-4-col.style-2 > div:nth-child(2){border-right:1px solid #e0e5e7 !important;}
.nusafe-gridbox.has-4-col.style-2 > div:nth-child(3),
.nusafe-gridbox.has-4-col.style-2 > div:nth-child(4){border-top:none !important;}
}
@media only screen and (max-width: 576px) {
.nusafe-gridbox.has-2-col > div, .nusafe-gridbox.has-3-col > div, .nusafe-gridbox.has-4-col > div{width:100% !important;}
.nusafe-gridbox.style-2.has-2-col > div, .nusafe-gridbox.style-2.has-3-col > div, .nusafe-gridbox.style-2.has-4-col > div{border:1px solid #e0e5e7 !important;}
.nusafe-gridbox.has-2-col > div:first-child, .nusafe-gridbox.has-3-col > div:first-child, .nusafe-gridbox.has-4-col > div:first-child{border-bottom:none !important;}
.nusafe-gridbox.style-1.has-2-col > div:first-child{margin-bottom:30px !important;}
} .nusafe-headings{margin-bottom:50px;}
.nusafe-headings .pre-heading{position:relative;text-transform:uppercase;font-size:16px;line-height:28px;margin-bottom:12px;z-index:0;color:#191919;font-weight:500;}
.nusafe-headings .pre-heading .text-wrap{display:inline-block;position:relative;}
.nusafe-headings .pre-heading.accent-color{color:#fd5a5a;}
.nusafe-headings .pre-heading .line{position:absolute;width:2px;background-color:#fd5a5a;content:'';z-index:-1;}
.nusafe-headings .heading{font-size:48px;line-height:56px;margin-bottom:32px;direction:rtl;}
.nusafe-headings .sub-heading{color:#191919;font-size:20px;line-height:30px;font-weight:400;}
.nusafe-headings.center{text-align:center;}
.nusafe-headings.center .pre-heading, .nusafe-headings.center .sub-heading, .nusafe-headings.center .heading{margin-left:auto;margin-right:auto;}
.nusafe-headings.text-white .pre-heading, .nusafe-headings.text-white .heading, .nusafe-headings.text-white .sub-heading{color:#fff;}
.nusafe-headings .pre-heading.pre-style-1 .text-wrap{padding-left:15px;}
.nusafe-headings .pre-heading.pre-style-1 .line{top:6px;left:0;height:16px;display:inline-block;transition:height 0.7s cubic-bezier( 0.7, 0, 0.6, 1.3 ) 0.3s;}
.nusafe-headings.animation .pre-heading.pre-style-1 .line{height:0;}
.nusafe-headings.animation.is-in-view .pre-heading.pre-style-1 .line{height:16px;}
.nusafe-headings .pre-heading.pre-style-2{margin-bottom:0;}
.nusafe-headings .pre-heading.pre-style-2 .text-wrap{padding:10px 0 33px;}
.nusafe-headings .pre-heading.pre-style-2 .line{height:100%;top:0;left:50%;transform:translateX(-50%);transition:height 0.7s cubic-bezier( 0.7, 0, 0.6, 1.3 ) 0.3s;}
.nusafe-headings.animation .pre-heading.pre-style-2 .line{height:0;}
.nusafe-headings.animation.is-in-view .pre-heading.pre-style-2 .line{height:100%;}
.nusafe-headings .pre-heading.pre-style-3{margin-bottom:20px;}
.nusafe-headings .pre-heading.pre-style-3 .text-wrap{padding-left:80px;}
.nusafe-headings .pre-heading.pre-style-3 .line{width:60px;height:2px;top:13px;left:0;transition:width 0.7s cubic-bezier( 0.7, 0, 0.6, 1.3 ) 0.3s;}
.nusafe-headings.animation .pre-heading.pre-style-3 .line{width:0;}
.nusafe-headings.animation.is-in-view .pre-heading.pre-style-3 .line{width:60px;}
.nusafe-headings .pre-heading.pre-style-4{padding:15px 0;}
.nusafe-headings .pre-heading.pre-style-4 .line{background-image:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/content-shape.png);height:55px;width:48px;top:50%;left:50%;transform:translate(-50%, -50%);background-color:transparent;background-repeat:no-repeat;background-position:center;}
.nusafe-headings .pre-heading.pre-style-5{padding:15px 0;}
.nusafe-headings .pre-heading.pre-style-5 .pre-heading-svg{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:54px;height:54px;z-index:-1;}
.nusafe-headings .pre-heading.pre-style-5 .pre-heading-svg .nusafe-svg{overflow:visible;}
.nusafe-headings .pre-heading.pre-style-5 .pre-heading-svg .nusafe-svg path{fill:none;stroke-width:5;stroke:#dddfe1;stroke-dasharray:1;stroke-dashoffset:0;}
.nusafe-headings.animation .pre-heading.pre-style-5 .pre-heading-svg .nusafe-svg path{stroke-dashoffset:1;transition:stroke-dashoffset 2s cubic-bezier( 0.7, 0, 0.6, 1 ) 0s;}
.nusafe-headings.animation.is-in-view .pre-heading.pre-style-5 .pre-heading-svg .nusafe-svg path{stroke-dashoffset:0;}
@media only screen and (max-width: 991px) {
.nusafe-headings .sub-heading{max-width:100% !important;}
} .nusafe-icon-box .wrap-inner{position:relative;}
.nusafe-icon-box .heading{margin-bottom:0;transition:0.3s;font-size:27px;line-height:40px;}
.nusafe-icon-box .desc > p:last-child{margin:0;transition:0.3s;}
.nusafe-icon-box .nusafe-icon{position:relative;}
.nusafe-icon-box.icon-has-width .icon-wrap{display:inline-block;text-align:center;}
.nusafe-icon-box.hover-effect-1 .icon-wrap{position:relative;z-index:0;border:1px solid transparent;}
.nusafe-icon-box.hover-effect-1 .icon-wrap:after{position:absolute;top:0;left:0;width:100%;height:100%;content:'';transition:0.6s;z-index:-1;}
.nusafe-icon-box.hover-effect-1:hover .icon-wrap:after{background-color:transparent !important;transform:scale(1.2);}
.nusafe-icon-box.hover-rtl .icon-wrap, .nusafe-icon-box.hover-ltr .icon-wrap, .nusafe-icon-box.hover-ttb .icon-wrap, .nusafe-icon-box.hover-btt .icon-wrap{overflow:hidden;}
.nusafe-icon-box.hover-rtl .icon-wrap i, .nusafe-icon-box.hover-ltr .icon-wrap i, .nusafe-icon-box.hover-ttb .icon-wrap i, .nusafe-icon-box.hover-btt .icon-wrap i{position:absolute;display:inline-block;width:100%;height:100%;top:0;left:0;}
.nusafe-icon-box.hover-rtl:hover .icon-wrap i{animation:RightToLeft 0.3s forwards;}
.nusafe-icon-box.hover-ltr:hover .icon-wrap i{animation:LeftToRight 0.3s forwards;}
.nusafe-icon-box.hover-ttb:hover .icon-wrap i{animation:TopToBottom 0.3s forwards;}
.nusafe-icon-box.hover-btt:hover .icon-wrap i{animation:BottomToTop 0.3s forwards;}
@keyframes RightToLeft {
0%{}
50%{transform:translateX(-100%);opacity:0;}
51%{transform:translateX(100%);opacity:0;}
100%{transform:translateX(0%);opacity:1;}
}
@keyframes LeftToRight {
0%{}
50%{transform:translateX(100%);opacity:0;}
51%{transform:translateX(-100%);opacity:0;}
100%{transform:translateX(0%);opacity:1;}
}
@keyframes BottomToTop {
0%{}
50%{transform:translateY(-100%);opacity:0;}
51%{transform:translateY(100%);opacity:0;}
100%{transform:translateY(0%);opacity:1;}
}
@keyframes TopToBottom {
0%{}
50%{transform:translateY(100%);opacity:0;}
51%{transform:translateY(-100%);opacity:0;}
100%{transform:translateY(0%);opacity:1;}
} .nusafe-icon-box.icon-top.align-center{text-align:center;}
.nusafe-icon-box.icon-top.align-center .icon, .nusafe-icon-box.icon-top.align-center .image-wrap{margin:0 auto;}
.nusafe-icon-box.icon-top.align-right{text-align:right;}
.nusafe-icon-box.icon-top.align-right .icon, .nusafe-icon-box.icon-top.align-right .image-wrap{margin:0;}
.nusafe-icon-box.icon-left{position:relative;}
.nusafe-icon-box.icon-left .nusafe-icon, .nusafe-icon-box.icon-left .image-wrap{position:absolute;left:0;top:0;}
.nusafe-icon-box.icon-right{position:relative;}
.nusafe-icon-box.icon-right .nusafe-icon, .nusafe-icon-box.icon-right .image-wrap{position:absolute;right:0;top:0;}
.nusafe-icon-box.icon-right .heading, .nusafe-icon-box.icon-right .desc, .nusafe-icon-box.icon-right .url-wrap{text-align:right}
.nusafe-icon-box.icon-left2 .heading{margin:0 0 40px 0;}
.nusafe-icon-box.icon-left2 .nusafe-icon, .nusafe-icon-box.icon-left2 .image-wrap{float:left;}
.nusafe-icon-box.feature-style-1{padding:37px 35px 47px;}
.nusafe-icon-box.feature-style-1 .nusafe-icon{margin-bottom:10px;}
.nusafe-icon-box.feature-style-1 .nusafe-icon .icon-wrap{font-size:80px;width:100px;height:100px;}
.nusafe-icon-box.feature-style-1 .heading{font-size:27px;line-height:40px;margin-bottom:17px;}
.nusafe-icon-box.feature-style-1 .desc{margin-bottom:36px;}
.nusafe-icon{display:inline-block;}
.nusafe-icon .icon-wrap{font-size:20px;text-align:center;display:inline-block;color:#191919;position:relative;}
.nusafe-icon .icon-wrap i{line-height:inherit !important;transition:0.3s;}
.nusafe-icon.accent-color .icon-wrap{color:#fd5a5a;}
.nusafe-icon.accent-bg .icon-wrap{background-color:#fd5a5a;}
.nusafe-icon.accent-border .icon-wrap{border-color:#fd5a5a;}
.nusafe-icon.icon-style-2{margin:10px 0 0;transition:0.3s;}
.nusafe-icon.icon-style-2 .icon-wrap{position:relative;background-color:#fd5a5a;width:55px;height:55px;font-size:35px;border-radius:50%;}
.nusafe-icon.icon-style-2 .icon-wrap i{position:absolute;width:100%;height:100%;text-align:center;left:25px;top:0;transition:0.3s;}
.is-in-view .nusafe-icon.icon-style-2 i{animation:iconMoving 1.5s cubic-bezier(0.7, 0, 0.6, 1.3);}
@keyframes iconMoving {
0%{left:0;}
50%{left:0;}
100%{left:25px;}
} .nusafe-list ul{margin:25px 0;}
.nusafe-list ul li{margin:15px 0;padding:0;list-style:none;}
.nusafe-list ul li{padding-left:27px;position:relative;}
.nusafe-list ul li:after{position:absolute;top:0;left:0;font-family:"Core Icon";content:'\f178';color:#fd5a5a;}
.nusafe-list.style-2 ul li:after{width:20px;height:20px;line-height:20px;font-size:10px;color:#fff;background-color:#fd5a5a;text-align:center;border-radius:50%;top:5px}
.nusafe-list.style-3 ul li:after{width:20px;height:20px;line-height:20px;font-size:10px;color:#191919;background-color:#dddfe1;text-align:center;border-radius:50%;top:5px}
.nusafe-list.no-bullets ul li{padding-left:0;}
.nusafe-list.no-bullets ul li:after{display:none;}
.nusafe-list.margin-0 ul li{margin:0;}
.nusafe-list.margin-1 ul li{margin:1px 0;}
.nusafe-list.margin-2 ul li{margin:2px 0;}
.nusafe-list.margin-3 ul li{margin:3px 0;}
.nusafe-list.margin-4 ul li{margin:4px 0;}
.nusafe-list.margin-5 ul li{margin:5px 0;}
.nusafe-list.margin-6 ul li{margin:6px 0;}
.nusafe-list.margin-7 ul li{margin:7px 0;}
.nusafe-list.margin-8 ul li{margin:8px 0;}
.nusafe-list.margin-9 ul li{margin:9px 0;}
.nusafe-list.margin-10 ul li{margin:10px 0;}
.nusafe-list.margin-11 ul li{margin:11px 0;}
.nusafe-list.margin-12 ul li{margin:12px 0;}
.nusafe-list.margin-13 ul li{margin:13px 0;}
.nusafe-list.margin-14 ul li{margin:14px 0;}
.nusafe-list.margin-15 ul li{margin:15px 0;}
.nusafe-list.margin-16 ul li{margin:16px 0;}
.nusafe-list.margin-17 ul li{margin:17px 0;}
.nusafe-list.margin-18 ul li{margin:18px 0;}
.nusafe-list.margin-19 ul li{margin:19px 0;}
.nusafe-list.margin-20 ul li{margin:20px 0;}
.nusafe-news{padding-right:calc(50% + 15px);position:relative;}
.nusafe-news .post-item{border-radius:5px;transition:0.3s;}
.nusafe-news .post-item:last-child{margin-bottom:0;}
.nusafe-news .post-item .cat-item{font-size:13px;font-weight:500;text-transform:uppercase;display:inline-block;color:#fd5a5a;margin-bottom:6px;}
.nusafe-news .post-item:hover{box-shadow:5px 0 20px 0 rgba(5, 39, 109, 0.1);border-color:transparent !important;}
.nusafe-news .post-item .cat-item:hover{color:#191919;}
.nusafe-news .post-item .title{font-size:27px;line-height:40px;margin-bottom:10px;}
.nusafe-news .post-item .title:hover a{color:#fd5a5a;}
.nusafe-news .post-item .meta{display:inline-block;padding-left:20px;margin-right:20px;font-size:14px;line-height:26px;position:relative;color:#646464;}
.nusafe-news .post-item .meta a{font-size:14px;line-height:26px;position:relative;color:#646464;}
.nusafe-news .post-item .meta:hover a{color:#fd5a5a;}
.nusafe-news .post-item .meta:after{position:absolute;top:0;left:0;font-family:"Core Icon";}
.nusafe-news .post-item .meta.calendar:after{content:'\e936';}
.nusafe-news .post-item .meta.comment:after{content:'\e93f';}
.nusafe-news .post-item.first-post{padding:0;border:none;float:right;position:absolute;top:0;right:0;max-width:50%;overflow:hidden;}
.nusafe-news .post-item.first-post .image{position:relative;top:unset;left:unset;}
.nusafe-news .post-item.first-post .image.thumbnail{display:none;}
.nusafe-news .post-item.first-post .texts{position:absolute;bottom:0;left:0;padding:45px 50px 25px;width:100%;background-image:linear-gradient(to top, #111, transparent);transform:translateY(105px);transition:0.3s;}
.nusafe-news .post-item.first-post .cat-item, .nusafe-news .post-item.first-post .meta, .nusafe-news .post-item.first-post .meta a, .nusafe-news .post-item.first-post .title{color:#fff;}
.nusafe-news .post-item.first-post .cat-item:hover, .nusafe-news .post-item.first-post .title:hover a, .nusafe-news .post-item.first-post .meta:hover a{color:#fff;opacity:0.6;}
.usafe-news .post-item.first-post .meta-wrap{margin-bottom:20px;}
.nusafe-news .post-item.first-post .desc{color:#fff;margin-bottom:20px;transition:0.3s;opacity:0;visibility:hidden;}
.nusafe-news .post-item.first-post:hover .texts{transform:translateY(0);}
.nusafe-news .post-item.first-post:hover .desc{opacity:1;visibility:visible;}
.nusafe-news .post-item.standard-post{border:1px solid #dddfe1;padding:20px;position:relative;min-height:200px;overflow:hidden;float:right;width:100%;margin-bottom:30px;display:flex;align-items:center;}
.nusafe-news .post-item.first-post .image.thumbnail, .nusafe-news .post-item.standard-post .image{border-radius:3px;width:165px;height:165px;overflow:hidden;flex-basis:165px;margin-left:40px;}
@media only screen and (max-width: 991px) {
.nusafe-news{padding-right:0;}
.nusafe-news .post-item.first-post .texts{background-image:none;}
.nusafe-news .post-item.first-post{border:1px solid #dddfe1;padding:20px;position:relative;overflow:hidden;float:right;width:100%;margin-bottom:30px;}
.nusafe-news .post-item.first-post .cat-item{font-size:13px;font-weight:500;text-transform:uppercase;display:inline-block;color:#fd5a5a;margin-bottom:3px;}
.nusafe-news .post-item .title{font-size:17px;line-height:20px;margin-bottom:10px;}
.nusafe-news .post-item.first-post .title{font-size:17px;line-height:20px;margin-bottom:13px;color:#191919;}
.nusafe-news .post-item.first-post .meta{display:inline-block;padding-left:20px;margin-right:20px;font-size:14px;line-height:26px;position:relative;color:#646464;}
.nusafe-news .post-item.first-post .meta a{font-size:14px;line-height:26px;position:relative;color:#646464;}
.nusafe-news .post-item.first-post .meta:hover a{color:#fd5a5a;}
.nusafe-news .post-item.first-post .meta:after{position:absolute;top:0;left:0;font-family:"Core Icon";}
.nusafe-news .post-item.first-post .meta.calendar:after{content:'\e936';}
.nusafe-news .post-item.first-post .meta.comment:after{content:'\e93f';}
.nusafe-news .post-item.first-post{position:relative;margin-bottom:30px;max-width:100%;display:flex;align-items:center;}
.nusafe-news .post-item.first-post .texts{position:relative;padding:0;transform:translateY(0);bottom:unset;left:unset;width:auto;}
.nusafe-news .post-item.first-post .image.thumbnail{display:block;}
.nusafe-news .post-item.first-post .image.full{display:none;}
.nusafe-news .post-item.first-post .meta-wrap{margin-bottom:0;}
.nusafe-news .post-item.first-post .desc{display:none;}
.nusafe-news .post-item.first-post .cat-item:hover{opacity:1;color:#191919;}
.nusafe-news .post-item.first-post .title:hover a, .nusafe-news .post-item.first-post .meta:hover a{opacity:1;color:#fd5a5a;}
}
@media only screen and (max-width: 575px) {
.nusafe-news .post-item.first-post, .nusafe-news .post-item.standard-post{display:block;}
.nusafe-news .post-item.first-post .image.thumbnail, .nusafe-news .post-item.standard-post .image{margin-bottom:20px;}
} .nusafe-parallax-box{position:relative;width:100%;}
.nusafe-parallax-item{display:inline-block;position:absolute;left:0;top:0;overflow:hidden;}
.nusafe-parallax-item.has-width img{width:100%;height:auto;}
.nusafe-partner-carousel .owl-carousel .owl-stage{display:flex;}
.nusafe-partner{position:relative;flex:1 0 auto;height:100%;overflow:hidden;display:flex;flex-direction:column;align-items:stretch;justify-content:center;transition:0.3s;}
.nusafe-partner .partner-logo{transition:0.3s;}
.nusafe-partner:hover .partner-logo{opacity:0.8;}
.nusafe-partner-carousel.center-mode .nusafe-partner{opacity:0.5;}
.nusafe-partner-carousel.center-mode .center .nusafe-partner{opacity:1;}
@media only screen and ( max-width: 767px) {
.nusafe-partner .partner-logo img{width:100%;height:auto;}
} .nusafe-price-box{border:1px solid #dddfe1;transition:0.3s;}
.nusafe-price-box:hover{border-color:transparent;box-shadow:0 10px 20px 0 rgba(0, 41, 124, 0.1);}
.nusafe-price-box .plan-name h2{font-size:36px;line-height:50px;font-family:"Playfair Display";font-weight:700;margin-bottom:0;}
.nusafe-price-box .plan-desc{font-size:18px;line-height:30px;display:inline-block;margin-bottom:30px;}
.nusafe-price-box .price{font-size:36px;line-height:48px;font-family:"Playfair Display";font-weight:900;width:100%;margin-bottom:30px;color:#fff;padding:21px 0;}
.nusafe-price-box .list-feature{margin:22px 0 46px;}
.nusafe-price-box .list-feature .feature{margin:0;list-style:none;margin-bottom:9px;}
.nusafe-price-box .list-feature .feature:last-child{margin-bottom:0;}
.project-item{border-radius:5px;overflow:hidden;}
.project-item .project-image{position:relative;}
.project-item .project-image .mask{z-index:1;opacity:0;visibility:hidden;width:100%;height:100%;position:absolute;top:0;left:0;transition:all 0.6s ease-in-out;box-sizing:border-box;}
.project-item .project-image .view-gallery-btn{position:absolute;top:50%;left:50%;transform:scale(0, 0) translate(-50%, -50%);display:inline-block;font-size:0;transition:transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;opacity:0;visibility:hidden;width:80px;height:80px;transform-origin:0 0;}
.project-item .project-image .view-gallery-btn:after{z-index:2;display:inline-block;position:absolute;top:0;left:0;width:80px;height:80px;line-height:76px;text-align:center;border:2px dashed #fff;color:#fff;font-family:"Core Icon";content:'\ea67';font-size:20px;transition:0.3s;}
.project-item .project-image:hover .mask{opacity:1;visibility:visible;box-shadow:inset 0 0 0 360px rgba(253, 90, 90, 0.9);}
.project-item .project-image:hover .view-gallery-btn{opacity:1;visibility:visible;transform:scale(1, 1) translate(-50%, -50%);transition-delay:0.3s;}
.project-item .project-image .view-gallery-btn:hover:after{border-style:solid;background-color:#fff;color:#191919;}
#project-filter .cbp-filter-item span{display:inline-block;font-size:13px;line-height:26px;padding:2px 25px;border-radius:10px;border:2px solid #dddfe1;text-transform:uppercase;transition:0.3s;}
#project-filter .cbp-filter-item.cbp-filter-item-active span,
#project-filter .cbp-filter-item:hover span{color:#fff;background-color:#fd5a5a;border-color:#fd5a5a;}
.cbp-l-filters-alignCenter .cbp-filter-item{padding:0 5px;}
.project-loadmore{text-align:center;margin-top:50px;}
.project-loadmore .loadmore-btn{border-radius:3px;cursor:pointer;}
.nusafe-progress{position:relative;}
.nusafe-progress .perc-wrap{line-height:normal;margin:0;}
.nusafe-progress .progress-bar{position:relative;width:100%;height:6px;background-color:#f6f6f6;border-radius:5px;margin-bottom:34px;}
.nusafe-progress .progress-animate{position:absolute;top:0;left:0;height:6px;width:0;transition:width ease 1s;border-radius:5px;}
.nusafe-progress .progress-bar .progress-animate:after{position:absolute;top:50%;right:0;content:'';width:16px;height:16px;border-radius:50%;transform:translateY(-50%);background-color:inherit;}
.nusafe-progress .progress-animate.accent, .nusafe-progress .progress-animate.accent:after{background-color:#fd5a5a;}
.nusafe-progress .perc{width:0;text-align:right;opacity:0;transition:all ease 1s;position:absolute;top:-40px;}
.nusafe-progress .perc .number-wrap{display:inline-block;transform:translateX(50%);}
.nusafe-progress .perc.accent{color:#fd5a5a;}
.nusafe-progress .perc.show{opacity:1;}
.campaign-style-1 .nusafe-progress .perc.show, .campaign-style-2 .nusafe-progress .perc.show{display:none;}
.nusafe-adv-tabs .tab-title{margin:0;list-style:none;border-bottom:1px solid #dddfe1;}
.nusafe-adv-tabs .tab-title .item-title{list-style:none;display:inline-block;margin-right:50px;font-family:"Tajawal";}
.nusafe-adv-tabs .tab-title .item-title .anchor-link{font-size:26px;color:#191919;cursor:pointer;padding:22px 0;transition:none;border-bottom:none;display:inline-block;margin-right:10px;position:relative;}
.nusafe-adv-tabs .tab-title .item-title .anchor-link:after{position:absolute;left:0;bottom:-2px;width:100%;height:3px;background-color:#0fc392;opacity:0;transition:0.3s;content:'';}
.nusafe-adv-tabs .tab-title .item-title.active > .anchor-link:after{opacity:1;}
.nusafe-adv-tabs .tab-content-wrap{margin-top:40px;}
@media only screen and ( max-width: 991px) {
.nusafe-adv-tabs .anchor-link .image-icon, .nusafe-adv-tabs .tab-title .item-title .anchor-link .icon{display:none;}
}
@media only screen and ( max-width: 767px) {
.nusafe-adv-tabs .tab-title{border-bottom:0;}
.nusafe-adv-tabs .tab-title .item-title .title{margin-bottom:0;}
.nusafe-adv-tabs .tab-title .item-title{display:inline;width:100%;}
.nusafe-adv-tabs.style-1 .tab-title, .nusafe-adv-tabs.style-2 .tab-title, .nusafe-adv-tabs .tab-title .item-title.active .anchor-link{box-shadow:none;text-align:center;}
.nusafe-adv-tabs.style-1 .tab-title .item-title .anchor-link{border:2px solid #e8e8ec;padding:7px 10px;margin:0 4px 8px 4px;}
.nusafe-adv-tabs.style-2 .tab-title .item-title .anchor-link{border:1px solid #414757;padding:7px 10px;margin:0 4px 8px 4px;}
} .nusafe-team-box{position:relative;overflow:hidden;}
.nusafe-team-box .texts{position:absolute;bottom:20px;left:70px;background-color:#fd5a5a;padding:31px 19px 22px 30px;width:calc(100% - 100px);border-radius:5px;transition:0.3s;}
.nusafe-team-box .team-name{font-size:22px;line-height:34px;color:#fff;margin-bottom:0;transition:0.3s;}
.nusafe-team-box .team-name:hover a{color:#fff;opacity:0.8;}
.nusafe-team-box .team-position{font-size:16px;line-height:28px;color:#fff;transition:0.3s;display:inline-block;}
.nusafe-team-box .team-info{float:left;}
.nusafe-team-box .team-socials{float:right;transition:0.3s;}
.nusafe-team-box .team-socials a{display:block;color:#fff;font-size:14px;margin-bottom:14px;}
.nusafe-team-box .team-socials a:last-child{margin-bottom:0;}
.nusafe-team-box .team-socials a:hover{opacity:0.8;}
.nusafe-team-box .texts{transition:0.3s;}
.nusafe-team-box.team-style-1 .texts{border-top-right-radius:0;opacity:0;visibility:hidden;transform:translateY(10px);}
.nusafe-team-box.team-style-1 .texts:after{position:absolute;top:0;right:-10px;width:20px;height:100%;background-color:#fd5a5a;border-top-right-radius:5px;border-bottom-right-radius:15px;clip-path:polygon(0 0, 100% 0, 72% 100%, 0% 100%);}
.nusafe-team-box.team-style-1 .team-info{max-width:calc(100% - 20px);}
.owl-item.center .nusafe-team-box.team-style-1 .texts, .nusafe-team-box.team-style-1:hover .texts{opacity:1;visibility:visible;transform:translateY(0);}
.nusafe-team-box.team-style-2{padding-bottom:100px;}
.nusafe-team-box.team-style-2 .texts{background-color:#fff;bottom:30px;left:30px;width:calc(100% - 60px);box-shadow:0 10px 20px 0 rgba(0, 41, 124, 0.1);border-radius:unset;padding:36px 19px 27px;text-align:center;}
.nusafe-team-box.team-style-2 .texts:after{display:none;}
.nusafe-team-box.team-style-2 .team-name{color:#191919;font-weight:700;font-family:"Playfair Display";}
.nusafe-team-box.team-style-2 .team-position{color:#646464;display:inline-block;}
.nusafe-team-box.team-style-2 .team-info{float:none;text-align:center;}
.nusafe-team-box.team-style-2 .team-socials{float:none;visibility:hidden;transform:translateY(10px);display:none;}
.nusafe-team-box.team-style-2 .team-socials a{display:inline-block;margin:0 4px;line-height:30px;width:30px;height:30px;text-align:center;background-color:rgba(255, 255, 255, 0.2);border-radius:50%;}
.nusafe-team-box.team-style-2 .team-socials a:hover{background-color:#fff;color:#191919;}
.owl-item.center .nusafe-team-box.team-style-2 .texts, .nusafe-team-box.team-style-2:hover .texts{background-color:#fd5a5a;}
.owl-item.center .nusafe-team-box.team-style-2 .team-socials, .nusafe-team-box.team-style-2:hover .team-socials{display:inline-block;transform:translateY(0);visibility:visible;}
.owl-item.center .nusafe-team-box.team-style-2 .team-name, .owl-item.center .nusafe-team-box.team-style-2 .team-position, .nusafe-team-box.team-style-2:hover .team-name, .nusafe-team-box.team-style-2:hover .team-position{color:#fff;}
.nusafe-team-box.team-style-2 .team-name a{transition:0s;}
.nusafe-team-box.team-style-2 .team-name:hover a{transition:0.3s;}
.owl-item.center .nusafe-team-box.team-style-2 .team-position, .nusafe-team-box.team-style-2:hover .team-position{margin-bottom:23px;}
.nusafe-team-box.team-style-3 .texts{width:100%;height:100%;top:0;left:0;background-color:rgba(253, 90, 90, 0.8);padding:30px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;opacity:0;visibility:hidden;transform:translateY(-10px);}
.nusafe-team-box.team-style-3 .texts:after, .nusafe-team-box.team-style-3 .texts:before{display:none;}
.nusafe-team-box.team-style-3 .team-info, .nusafe-team-box.team-style-3 .team-socials{display:table-cell;vertical-align:middle;float:none;}
.nusafe-team-box.team-style-3 .team-name{font-size:24px;line-height:30px;font-family:"Playfair Display";font-weight:700;padding-right:15px;opacity:0;visibility:hidden;transform:translateY(-10px);}
.nusafe-team-box.team-style-3 .team-position{opacity:0;visibility:hidden;transform:translateY(40px);}
.nusafe-team-box.team-style-3 .team-socials a{opacity:0;visibility:hidden;transform:translateY(-10px);}
.nusafe-team-box.team-style-3 .team-socials a:hover{opacity:0.8;}
.nusafe-team-box.team-style-3 .texts, .nusafe-team-box.team-style-3 .team-name, .nusafe-team-box.team-style-3 .team-position, .nusafe-team-box.team-style-3 .team-socials a{transition-delay:0s;}
.nusafe-team-box.team-style-3:hover .texts, .nusafe-team-box.team-style-3:hover .team-name, .nusafe-team-box.team-style-3:hover .team-position, .nusafe-team-box.team-style-3:hover .team-socials a{opacity:1;visibility:visible;transform:translateY(0);transition-delay:0.3s;}
.nusafe-team-box.team-style-3:hover .team-socials a:nth-child(2){transition-delay:0.4s;}
.nusafe-team-box.team-style-3:hover .team-socials a:nth-child(3){transition-delay:0.5s;}
.nusafe-team-box.team-style-3:hover .team-socials a:nth-child(4){transition-delay:0.6s;}
@media only screen and (max-width: 991px) {
.nusafe-team-box.team-style-1 .texts{opacity:1;visibility:visible;transform:translateY(0);}
.nusafe-team-box .avatar img{width:100%;}
} .nusafe-testimonial-box .pre-heading{font-size:16px;line-height:28px;text-transform:uppercase;margin-bottom:23px;}
.nusafe-testimonial-box .pre-heading{display:inline-block;}
.nusafe-testimonial-box .heading{position:relative;font-size:48px;line-height:55px;margin-bottom:45px;}
.nusafe-testimonial-box .desc{font-size:20px;line-height:36px;font-weight:400;margin-bottom:48px;}
.nusafe-testimonial-box .author-wrap .author-name{font-size:27px;line-height:32px;font-family:"Playfair Display";color:#191919;font-weight:700;margin-bottom:5px;}
.nusafe-testimonial-box .author-wrap .author-role{font-size:16px;line-height:32px;color:#444444;}
.nusafe-testimonial-box .author-wrap .divider{width:12px;height:1px;background-color:#444444;margin:0 2px;}
.nusafe-testimonial-box.center .desc{max-width:82%;margin-right:auto;margin-left:auto;}
.heading-testimonial .nusafe-headings .heading{position:relative;}
.heading-testimonial .nusafe-headings .heading:after{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-family:"FontAwesome";content:'\f10d';font-size:75px;color:rgba(0, 0, 0, 0.1);}
.nusafe-testimonial-box.style-2{display:table;width:100%;}
.nusafe-testimonial-box.style-2 .texts, .nusafe-testimonial-box.style-2 .image{display:table-cell;vertical-align:middle;}
.nusafe-testimonial-box.style-2 .texts{padding-right:50px;width:70%;}
.nusafe-testimonial-box.style-2 .image{text-align:right;width:30%;}
.nusafe-testimonial-box.style-2 .image .avatar{border-radius:50%;overflow:hidden;width:260px;height:260px;display:inline-block;}
.nusafe-testimonial-box.style-2 .nusafe-headings{margin-bottom:43px;}
.nusafe-testimonial-box.style-2 .nusafe-headings .heading{margin-bottom:43px;}
.nusafe-testimonial-box.style-2 .pre-heading{margin-bottom:12px;}
.nusafe-testimonial-box.style-2 .heading:after{display:none;}
.nusafe-testimonial-box.style-2 .desc{line-height:32px;margin-bottom:46px;}
.nusafe-testimonial-box.style-2 .author-wrap .author-name, .nusafe-testimonial-box.style-2 .author-wrap .author-position, .nusafe-testimonial-box.style-2 .author-wrap .divider{display:inline-block;}
.nusafe-testimonial-box.style-2 .author-wrap .author-name{margin-bottom:0;font-family:"Tajawal";font-weight:500;}
.nusafe-testimonial-box.style-3{display:block;text-align:center;}
.nusafe-testimonial-box.style-3 .nusafe-headings{margin:0 auto;}
.nusafe-testimonial-box.style-3 .nusafe-headings .heading{position:relative;font-size:48px;font-family:"Playfair Display";font-weight:700;margin-bottom:52px;}
.nusafe-testimonial-box.style-3 .nusafe-headings .heading:after{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-family:"FontAwesome";content:'\f10d';font-size:80px;color:rgba(0, 0, 0, 0.1);width:80px;height:80px;line-height:80px;}
.nusafe-testimonial-box.style-3 .image{display:none;}
.nusafe-testimonial-box.style-3 .desc{max-width:850px;margin:0 auto;margin-bottom:46px;}
.nusafe-testimonial-box.style-3 .divider{display:none;}
.nusafe-testimonial-box.style-4{display:block;text-align:center;}
.nusafe-testimonial-box.style-4 .nusafe-headings{margin:0 auto;}
.nusafe-testimonial-box.style-4 .nusafe-headings .heading{position:relative;font-size:48px;font-family:"Playfair Display";font-weight:700;margin-bottom:40px;}
.nusafe-testimonial-box.style-4 .image{display:none;}
.nusafe-testimonial-box.style-4 .desc{max-width:850px;margin:0 auto;margin-bottom:46px;}
.nusafe-testimonial-box.style-4 .author-wrap{position:relative;}
.nusafe-testimonial-box.style-4 .author-wrap:after{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-family:"FontAwesome";content:'\f10d';font-size:90px;color:rgba(0, 0, 0, 0.1);width:90px;height:90px;line-height:90px;}
@media only screen and (max-width: 991px) {
.nusafe-testimonial-box .divider{display:none;}
.nusafe-testimonial-box.style-2 .image .avatar{width:200px;height:200px;}
.nusafe-testimonial-box.style-3 .author-wrap .divider{display:none;}
}
@media only screen and (max-width: 767px) {
.nusafe-testimonial-box.style-2{display:flex;flex-direction:column;}
.nusafe-testimonial-box.style-2 .texts{width:100%;padding-right:0;}
.nusafe-testimonial-box.style-2 .image .avatar{width:80px;height:80px;position:absolute;bottom:0;left:0;}
.nusafe-testimonial-box.style-2 .author-wrap{padding-left:100px;margin-bottom:7px;}
.nusafe-testimonial-box.style-2 .author-wrap .author-name, .nusafe-testimonial-box.style-2 .author-wrap .author-position{display:block;}
.nusafe-testimonial-box.style-2 .author-wrap .divider{display:none;}
} .nusafe-video-button{position:relative;display:inline-block;width:80px;height:80px;line-height:80px;border-radius:50%;background-color:rgba(255, 255, 255, 0.3);text-align:center;color:#fff;font-size:20px;animation:play-pulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);box-shadow:0 0 0 0 rgba(255, 255, 255, 0.4);}
.nusafe-video-button:before{width:20px;height:20px;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);content:'';background-image:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/video-icon.png);background-size:cover;margin-left:2px;}
.nusafe-video-button:hover{background-color:rgba(255, 255, 255, 0.5);}
@keyframes play-pulse {
to{box-shadow:0 0 0 20px rgba(255, 255, 255, 0);}
}
.nusafe-video-button.style-2{background-color:#fff;}
.nusafe-video-button.style-2:before{display:none;}
.nusafe-video-button.style-2:after{position:absolute;top:0;left:0;right:0;width:80px;height:80px;line-height:80px;font-size:20px;font-family:"FontAwesome";content:'\f04b';color:#0fc392;margin-left:3px;}
.nusafe-video-button.style-2:hover{opacity:0.7;}
.woocommerce-page .content-woocommerce .woocommerce-result-count{position:relative;padding:12px 0 0;margin:0;float:left;font-size:18px;font-weight:500;color:#646464;border-radius:3px;}
.woocommerce-page .content-woocommerce .woocommerce-ordering{float:right;position:relative;}
.woocommerce-page .content-woocommerce .woocommerce-ordering select{margin:0;}
.woocommerce-page .content-woocommerce .woocommerce-ordering select:focus{outline:0;}
.woocommerce-page .content-woocommerce .star-rating{width:120px;height:24px;background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left 0;}
.woocommerce-page .content-woocommerce .star-rating span{background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left -48px;height:0;padding-top:24px;overflow:hidden;float:left;}
.woocommerce-page .content-woocommerce p.stars{overflow:hidden;zoom:1;}
.woocommerce-page .content-woocommerce p.stars span{width:120px;height:24px;position:relative;float:left;background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left 0;}
.woocommerce-page .content-woocommerce p.stars span a{transition:none;float:left;position:absolute;left:0;top:0;width:24px;height:0;padding-top:24px;overflow:hidden;}
.woocommerce-page .content-woocommerce p.stars span a:hover, p.stars span a:focus{background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left -24px;}
.woocommerce-page .content-woocommerce p.stars a.active{background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left -48px;}
.woocommerce-page .content-woocommerce p.stars span a.star-1{width:24px;z-index:10;}
.woocommerce-page .content-woocommerce p.stars span a.star-2{width:48px;z-index:9;}
.woocommerce-page .content-woocommerce p.stars span a.star-3{width:72px;z-index:8;}
.woocommerce-page .content-woocommerce p.stars span a.star-4{width:96px;z-index:7;}
.woocommerce-page .content-woocommerce p.stars span a.star-5{width:120px;z-index:6;}
.woocommerce-page abbr{border:none;text-decoration:none}
.woocommerce-page div.product div.images img{display:block;width:100%;height:auto;box-shadow:none;}
.woocommerce-page div.product div.images img:hover, .woocommerce-page div.product div.images img.flex-active{border:1px solid #dddfe1;}
.woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .button{color:#fd5a5a;background-color:transparent;}
.woocommerce-page .woo-single-post-class .summary .stock.in-stock, .product .onsale{position:absolute;left:10px;top:10px;border-radius:3px;text-align:center;font-size:13px;padding:8px 20px;background-color:#fd5a5a;color:#fff;z-index:999;text-transform:uppercase;}
.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left:hover, .pswp--has_mouse .pswp__button--arrow--right:hover{background-color:transparent;}
.woocommerce-page .content-woocommerce .products{margin:0 -15px;clear:both;list-style:none;padding-top:10px;}
.products.columns-2 li, .woocommerce-page.shop-col-2 .products li{width:50%;}
.products.columns-3 li, .woocommerce-page.shop-col-3 .products li{width:33.33%;}
.products.columns-4 li, .woocommerce-page.shop-col-4 .products li{width:25%;}
.products li{float:left;padding:0 15px;margin-top:40px;}
.products li.first{clear:both;}
.products li .inner{position:relative;border:1px solid #dddfe1;border-radius:5px;overflow:hidden;}
.products li .product-info{padding:35px 35px 38px;position:relative;}
.products li h2{margin-bottom:0;font-size:22px;line-height:32px;transition:color ease 0.3s;}
.products.columns-4 li h2, .woocommerce-page.shop-col-4 .products li h2{font-size:26px;font-size:30px;}
.products.columns-4 li .product-info, .woocommerce-page.shop-col-4 .products li .product-info{padding:15px 0 25px 0;}
.products.columns-4 li .price, .woocommerce-page.shop-col-4 .products li .price{right:0;}
.products li .product-info .button, .products li .product-info .added_to_cart{text-transform:uppercase;color:#fd5a5a;font-size:14px;display:inline-block;position:relative;padding-right:14px;display:none;}
.products li .product-info .button:before, .products li .product-info .added_to_cart:before, .products li .product-info .button:after, .products li .product-info .added_to_cart:after{content:'\f105';font-family:"Pe-icon-7-stroke";font-size:14px;font-style:normal;position:absolute;top:0;right:0;transition:all ease 0.3s;}
.products li .product-info .button:before, .products li .product-info .added_to_cart:before{right:12px;opacity:0;}
.products li .product-info .button:hover:before, .products li .product-info .added_to_cart:hover:before{opacity:1;right:0;}
.products li .product-info .button:hover:after, .products li .product-info .added_to_cart:hover:after{opacity:0;right:-12px;}
.products li .product-info .button:focus, .products li .product-info .added_to_cart:focus{text-decoration:underline;}
.products li .product-thumbnail{overflow:hidden;box-shadow:0px 5px 90px 0px rgba(110, 123, 131, 0.1);}
.products li .product-thumbnail img{width:100%;height:auto;transition:transform ease 0.3s;}
.products li:hover .product-thumbnail img{transform:scale(1.1) rotate(1.5deg);}
.products li:hover .inner{border-color:transparent;overflow:visible;}
.products li:hover .product-info{box-shadow:0 10px 20px 0 rgba(0, 41, 124, 0.1);}
.products li .price{font-size:18px;font-weight:500;color:#646464;display:inline-block;margin-bottom:7px;}
.products li .product-cat{display:none;font-size:16px;color:#646464;}
.products li .product-cat:hover{color:#fd5a5a;}
.products li .star-rating{display:none;}
.products li .price del{color:#999;font-weight:500;padding-right:4px;opacity:1;}
.products li .price ins{background-color:transparent;}
.products li h2:hover{color:#fd5a5a;}
.woo-single-post-class{position:relative;}
.woo-single-post-class .images{width:48.685%;float:left;position:relative;}
.woo-single-post-class .onsale{top:20px;right:auto;left:25px;z-index:999;}
.woo-single-post-class .images .woocommerce-product-gallery__trigger{width:40px;height:40px;z-index:9999;position:absolute;right:17px;top:14px;text-align:center;}
.woo-single-post-class .images .woocommerce-product-gallery__trigger:after{opacity:0;width:38px;height:38px;line-height:38px;border-radius:20px;background-color:#dddfe1;text-align:center;content:"\e618";color:#191919;font-family:"Pe-icon-7-stroke";font-size:22px;position:absolute;left:0;top:0;transition:all ease 0.3s;}
.woo-single-post-class .images:hover .woocommerce-product-gallery__trigger:after{opacity:1;}
.woo-single-post-class .images .woocommerce-product-gallery__trigger:hover:after{background-color:#fd5a5a;color:#fff;}
.woo-single-post-class .images .woocommerce-product-gallery__trigger img{display:none !important;}
.woocommerce-product-gallery .flex-control-thumbs li{float:left;cursor:pointer;}
.woocommerce-product-gallery .flex-control-thumbs{margin:20px -8px 0;width:auto;list-style:none;}
.woocommerce-product-gallery .flex-control-thumbs li{padding:0 8px 16px;}
.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{width:33.333%}
.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:25%}
.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{width:20%}
.woocommerce-product-gallery--columns-6 .flex-control-thumbs li{width:16.667%;}
.woo-single-post-class .summary{width:47.369%;float:right;}
.woo-single-post-class .summary h1{color:#191919;font-size:38px;line-height:52px;margin:0 0 25px;}
.woo-single-post-class .summary .woocommerce-product-rating{position:relative;margin-bottom:15px;}
.woo-single-post-class .summary .woocommerce-review-link{font-size:16px;font-weight:500;position:absolute;left:130px;top:0;line-height:24px;color:#646464;}
.woo-single-post-class .summary .price{font-size:22px;line-height:normal;margin:0 0 25px;position:relative;font-weight:500;}
.woo-single-post-class .summary .price del{color:#999;padding-right:2px;opacity:1;}
.woo-single-post-class .summary .price ins{background-color:transparent;}
.woo-single-post-class .woocommerce-product-details__short-description > p{font-size:16px;line-height:28px;margin-bottom:30px;}
.woo-single-post-class .summary .cart table, .woo-single-post-class .summary .cart tr, .woo-single-post-class .summary .cart td{border:0;}
.woo-single-post-class .summary .cart td{vertical-align:middle;}
.woo-single-post-class .summary .cart td.woocommerce-grouped-product-list-item__quantity{padding-left:0;}
.woo-single-post-class .summary .cart table .label{width:85px;color:#191919;text-transform:uppercase;}
.woo-single-post-class .summary .cart{margin-top:33px;}
.woo-single-post-class .summary .cart .quantity{display:inline-block;float:left;}
.woo-single-post-class .summary .cart .quantity input{border:1px solid #dddfe1;width:70px;margin:0;text-align:center;background-color:#fff;font-size:12px;font-weight:500;padding:10px;height:60px;margin-right:15px;border-radius:5px;}
.woo-single-post-class .summary .cart .single_add_to_cart_button{height:60px;font-size:13px;font-weight:500;padding:0 35px;border-radius:5px;}
.woo-single-post-class .summary .cart table{position:relative;}
.woo-single-post-class .summary .cart .reset_variations{position:absolute;right:0;bottom:-20px;}
.woo-single-post-class .woocommerce-tabs .panel .shop_attributes p{margin-bottom:5px;}
.woo-single-post-class .woocommerce-grouped-product-list-item__quantity{width:100px;}
.woo-single-post-class .woocommerce-grouped-product-list-item__label a{color:#191919;}
.woo-single-post-class .woocommerce-grouped-product-list-item__label a:hover{color:#fd5a5a;}
.woo-single-post-class .summary .product_meta{clear:left;margin-top:35px;}
.woo-single-post-class .summary .product_meta > span{margin-left:10px;display:inline-block;color:#646464;font-size:16px;font-weight:400;}
.woo-single-post-class .summary .product_meta > span:first-child{margin:0;}
.woo-single-post-class .summary .product_meta > span a{color:#646464;}
.woo-single-post-class .summary .product_meta > span a:hover{color:#fd5a5a;}
.woo-single-post-class .summary .product_meta > span a:first-child{padding-left:10px;}
.woo-single-post-class .woocommerce-tabs{clear:both;padding-top:35px;}
.woo-single-post-class .woocommerce-tabs ul{margin:0;border-bottom:1px solid #dddfe1;}
.woo-single-post-class .woocommerce-tabs ul li{padding:0;list-style:none;display:inline-block;margin-right:50px;}
.woo-single-post-class .woocommerce-tabs ul li > a{font-size:22px;font-family:"Tajawal", sans-serif;color:#191919;cursor:pointer;padding:22px 0;transition:none;border-bottom:none;display:inline-block;position:relative;}
.woo-single-post-class .woocommerce-tabs ul li > a:after{position:absolute;left:0;bottom:-2px;width:100%;height:3px;background-color:#0fc392;opacity:0;transition:0.3s;content:'';}
.woo-single-post-class .woocommerce-tabs ul li.active > a:after{opacity:1;}
.woo-single-post-class .woocommerce-tabs .panel{clear:both;padding:40px 0 0;}
.woo-single-post-class .woocommerce-tabs .entry-content .commentlist{clear:both;list-style:none;margin:0;}
.woo-single-post-class .woocommerce-tabs .entry-content .commentlist li{position:relative;margin-bottom:35px;}
.woo-single-post-class .woocommerce-tabs .entry-content .commentlist li:last-child{margin-bottom:0;}
.woo-single-post-class .woocommerce-tabs .entry-content .commentlist li .description > p:last-child{margin-bottom:0;}
.woo-single-post-class .woocommerce-tabs .entry-content .commentlist li:before, .woo-single-post-class .woocommerce-tabs .entry-content .commentlist li:after{content:"";display:table;clear:both;}
.woo-single-post-class .woocommerce-tabs .entry-content .comment_container img{width:90px;height:90px;border-radius:50%;float:left;margin:0 40px 0 0;overflow:hidden;}
.woo-single-post-class .woocommerce-tabs .entry-content .comment-text{overflow:hidden;position:relative;margin:0;}
.woo-single-post-class .woocommerce-tabs .entry-content .star-rating{position:absolute;right:0;top:0;}
.woo-single-post-class .woocommerce-tabs .entry-content .meta{margin:0 0 10px 0;}
.woo-single-post-class .woocommerce-tabs .entry-content .meta strong{font-size:20px;font-family:"Tajawal", sans-serif;color:#191919;margin:0;display:inline-block;font-weight:400;}
.woo-single-post-class .woocommerce-tabs .entry-content .meta .woocommerce-review__dash{display:none;}
.woo-single-post-class .woocommerce-tabs .entry-content .meta .woocommerce-review__published-date{display:inline-block;font-size:14px;padding-left:30px;margin:0 0 10px;}
.woo-single-post-class .woocommerce-tabs .entry-content .comment-text .description{overflow:hidden;}
.woo-single-post-class .woocommerce-tabs .comment-respond{margin:30px 0 0;padding-bottom:75px;border-bottom:1px solid #dddfe1;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-reply-title{font-size:30px;font-family:"Tajawal", sans-serif;color:#191919;display:block;margin:50px 0 20px;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form > p{margin:0;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form > p.comment-form-cookies-consent{margin-bottom:25px;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form > p.comment-form-author{width:49.4%;float:left;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form > p.comment-form-email{width:49.4%;float:right;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form > p.form-submit{clear:both;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-rating{padding-bottom:70px;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-rating > label, .woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-rating > .stars{float:left;margin:0;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-rating > label{color:#646464;font-size:12px;line-height:26px;font-weight:500;text-transform:uppercase;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-rating > .stars{margin-left:14px;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-comment{clear:left;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-comment > label{display:none;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-comment textarea, .woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-author input, .woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-email input{margin-bottom:30px;width:100%;}
.woo-single-post-class .woocommerce-tabs .comment-respond .comment-form-comment textarea{height:170px;}
.woo-single-post-class .related.products{padding:0;margin:0;margin-top:40px;}
.woo-single-post-class .related.products .products:before, .woo-single-post-class .related.products .products:after{content:"";display:table;clear:both;}
.woo-single-post-class .related.products > h2{margin-bottom:0;font-size:30px;}
.woo-single-post-class .related.products .products{margin:0 -15px;padding-top:0;}
.woo-single-post-class .related.products .products li{float:left;padding:0 15px;}
.woocommerce-page .shop_table.cart .product-remove{width:60px;}
.woocommerce-page .shop_table.cart .product-thumbnail, .woocommerce-page .shop_table.cart .product-price, .woocommerce-page .shop_table.cart .product-quantity, .woocommerce-page .shop_table.cart .product-subtotal{width:116px;}
.woocommerce-page .shop_table.cart .product-subtotal{color:#191919;}
.woocommerce-page .shop_table.cart th{font-size:16px;color:#191919;font-weight:600;}
.woocommerce-page .shop_table.cart td, .woocommerce-page .shop_table.cart th{padding:20px;vertical-align:middle;}
.woocommerce-page .shop_table.cart .product-name a{color:#191919;font-family:"Tajawal", sans-serif;font-size:30px;}
.woocommerce-page .shop_table.cart .product-name a:hover{color:#fd5a5a;}
.woocommerce-page .shop_table.cart .product-remove a{position:relative;text-indent:-9999px;display:inline-block;padding:0;font-weight:normal;text-align:center;width:16px;height:16px;}
.woocommerce-page .shop_table.cart .product-remove a:after{content:"\f00d";color:#ff4539;font-size:14px;text-indent:0;font-family:"FontAwesome";position:absolute;left:4px;top:1px;transition:color ease 0.3s;}
.woocommerce-page .shop_table.cart .product-remove a:hover:after{color:#191919;}
.woocommerce-page .shop_table.cart .cart_item .product-thumbnail img{width:80px;}
.woocommerce-page .shop_table.cart .cart_item .product-quantity input[type='number']{width:60px;height:50px;padding-left:22px;padding-right:5px;margin:0;}
.woocommerce-page .shop_table.cart .coupon{float:left;display:table;}
.woocommerce-page input, .woocommerce-page button{vertical-align:middle;}
.woocommerce-page .shop_table.cart .coupon > label{display:none;}
.woocommerce-page .shop_table.cart .coupon #coupon_code{background-color:#f7f7f7;width:240px;border:0;margin:0 5px 0 0;display:inline-block;padding:16px 20px;border-radius:5px;}
.woocommerce-page .shop_table.cart .coupon + button[type='submit']{float:right;}
.woocommerce-page .cart_totals{width:60%;margin-top:60px;font-size:16px;}
.woocommerce-page .cart_totals > h2{font-size:36px;margin-bottom:40px;}
.woocommerce-page .cart_totals .shop_table{border:1px solid #dddfe1;margin-bottom:40px;}
.woocommerce-page .cart_totals .shop_table th, .woocommerce-page .cart_totals .shop_table td{border-color:#dddfe1;}
.woocommerce-page .cart_totals .shop_table .order-total th, .woocommerce-page .cart_totals .shop_table .order-total td{border-bottom:0;}
.woocommerce-page .cart_totals .shop_table td{border-right:0;padding:17px 20px;}
.woocommerce-page .cart_totals .shop_table th{font-size:17px;color:#191919;padding:14px 20px;}
.woocommerce-page .cart_totals .shop_table .cart-subtotal td, .woocommerce-page .cart_totals .shop_table .order-total td, .woocommerce-page .cart_totals .shop_table .tax-rate td{text-align:right;color:#191919;}
.woocommerce-page .cart_totals p, .woocommerce-page .cart_totals .woocommerce-shipping-calculator select{margin:0 0 5px;}
.woocommerce-page .cart_totals .shipping-calculator-form button[type='submit']{width:100%;}
.woocommerce-page .wc-proceed-to-checkout .button{font-size:20px;color:#fff;background-color:#fd5a5a;padding:19px 50px;border-radius:5px;display:inline-block;-webkit-appearance:none;transition:all ease 0.3s;}
.woocommerce-page .wc-proceed-to-checkout .button:hover{background-color:#191919;color:#fff;}
.woocommerce-page .return-to-shop a{padding:20px 30px;margin-top:25px;border-radius:5px;font-weight:600;color:#fff;background-color:#fd5a5a;}
.woocommerce-page .return-to-shop a:hover{background-color:#191919;color:#fff;}
.woocommerce-page .woocommerce-checkout{clear:both;}
.woocommerce-page .login input{margin-bottom:0;}
.woocommerce-page form .form-row{margin:0 0 20px;}
.woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last{float:left;width:49%;overflow:visible;}
.woocommerce-page form .form-row input.input-text, .woocommerce-page form .form-row textarea{border-width:1px;width:100%;margin:0;outline:0;}
.woocommerce-billing-fields .select2-container--default .select2-selection--single, .woocommerce-shipping-fields .select2-container--default .select2-selection--single{display:block;line-height:60px;height:60px;border-color:#dddfe1;border-radius:5px;}
.woocommerce-billing-fields .select2-selection--single .select2-selection__rendered, .woocommerce-shipping-fields .select2-selection--single .select2-selection__rendered{padding:15px 30px;color:#646464;}
.woocommerce-billing-fields .select2-container--default .select2-selection--single .select2-selection__arrow{top:22px;right:20px;}
.woocommerce-page form.checkout_coupon > p{margin-bottom:10px;}
.woocommerce-page form.checkout_coupon > p > button, .woocommerce-page .woocommerce-form.woocommerce-form-login button{padding:17px 35px;}
.woocommerce-page form.checkout_coupon #coupon_code,
.woocommerce-page form.lost_reset_password .form-row input.input-text{margin-bottom:20px;}
.woocommerce-page form .form-row label.inline{display:inline;}
.woocommerce-page form .form-row label.inline input{margin:0 5px 0 10px;width:auto;}
.woocommerce-page form.lost_reset_password .woocommerce-Button.button{margin:0;}
.woocommerce-page .woocommerce-shipping-fields, .woocommerce-page #order_review_heading{clear:both;}
.woocommerce-billing-fields .create-account > label{margin:0;display:inline-block;}
.woocommerce-page .woocommerce-lost-password .form-row-first{float:none;}
.woocommerce-page #ship-to-different-address > label{padding-right:5px;}
.woocommerce-page .woocommerce-billing-fields h3, .woocommerce-page .woocommerce-shipping-fields h3, .woocommerce-page #order_review_heading,
.woocommerce-page .woocommerce-additional-fields h3{font-size:36px;margin-bottom:30px;padding-top:30px;}
.woocommerce-page .woocommerce-additional-fields .notes > label{display:none;}
.woocommerce-page form .form-row.create-account #createaccount{width:auto;margin-right:5px;}
.woocommerce-page form .form-row.create-account + .create-account > p:first-child{margin-bottom:10px;}
.woocommerce-checkout-review-order table th{font-size:18px;color:#191919;padding:18px 30px;}
.woocommerce-checkout-review-order table td{padding:10px 25px;font-weight:600;}
.woocommerce-checkout-review-order .cart-subtotal td, .woocommerce-checkout-review-order .order-total{font-size:16px;color:#191919;}
.woocommerce-checkout #payment ul.payment_methods{list-style:none;margin:0;}
.woocommerce-checkout #payment ul.payment_methods li label{display:inline-block;padding-left:5px;}
#payment .about_paypal{position:absolute;right:0;top:23px;}
#payment .payment_methods > li:not(.woocommerce-notice){position:relative;}
#payment .payment_methods > li .payment_box,
#payment .place-order{background-color:#fff;padding:10px;}
#payment .payment_methods > li .payment_box > p:last-child{margin-bottom:0;}
#payment .payment_methods > .wc_payment_method > label,
#payment .payment_methods > .woocommerce-PaymentMethod > label{display:block;padding:20px 0;cursor:pointer;}
.woocommerce-page #payment .payment_methods .woocommerce-message,
.woocommerce-page #payment .payment_methods .woocommerce-info,
.woocommerce-page #payment .payment_methods .woocommerce-error{margin-bottom:10px;}
#payment .payment_methods li img{border:0;padding:0 0 0 10px;max-height:25px;}
#payment .place-order{padding:25px 25px 25px 0;}
#payment #place_order{font-size:20px;color:#fff;background-color:#fd5a5a;padding:27px 50px;border-radius:5px;margin-top:15px;}
#payment #place_order:hover{background-color:#191919;color:#fff;}
.woocommerce-page .myaccount_user + h2,
.woocommerce-page .addresses h3, .woocommerce-page #customer_login h2{margin-bottom:0;font-size:18px;}
.woocommerce-page .register input{margin-bottom:0;}
.woocommerce-page .woocommerce-MyAccount-content legend{border:0;font-size:18px;color:#191919;padding-top:20px;margin:0;}
.woocommerce-page .form-row:before, .woocommerce ul.cart_list li:after, .woocommerce-page ul.cart_list li:before, .woocommerce-page ul.product_list_widget li:after, .woocommerce-page ul.product_list_widget li:before, .woocommerce-page .cart-collaterals .shipping_calculator:after, .woocommerce-page .cart-collaterals .shipping_calculator:before, .woocommerce-page .cart-collaterals:after, .woocommerce-page .cart-collaterals:before, .woocommerce-page form .form-row:after, .woocommerce-page form .form-row:before, .woocommerce-page ul.cart_list li:after, .woocommerce-page ul.cart_list li:before, .woocommerce-page ul.product_list_widget li:after, .woocommerce-page ul.product_list_widget li:before{content:" ";display:table;}
.woocommerce-page .cart-collaterals{width:100%;}
.woocommerce-page .cart-collaterals .related{width:30.75%;float:left;}
.woocommerce-page .cart-collaterals .cross-sells{width:100%;float:left;}
.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none;list-style:none;margin:0 -12px;}
.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li{width:25%;padding:0 12px;clear:none;}
.woocommerce-page .cart-collaterals .cross-sells > h2{margin-top:40px;margin-bottom:37px;font-size:16px;color:#999;text-transform:uppercase;}
.woocommerce-page .cart-collaterals .cross-sells .products li h2{font-size:15px;}
.woocommerce-page .cart-collaterals .cross-sells .products li .price{letter-spacing:normal;font-size:18px;}
.woocommerce-page .up-sells > h2{font-size:16px;color:#999;text-transform:uppercase;padding-top:27px;border-top:1px solid #f4f4f4;}
.woocommerce-page .up-sells.products, .woocommerce-page .up-sells .products{margin:0;}
.woocommerce-page .up-sells .products{margin:0 -15px;}
.woocommerce-page .up-sells .products li{padding:0 15px;}
.woocommerce .cart-collaterals .shipping_calculator:after, .woocommerce form .form-row-wide, .woocommerce form .form-row:after, .woocommerce ul.cart_list li:after, .woocommerce ul.product_list_widget li:after, .woocommerce-page .cart-collaterals .shipping_calculator:after, .woocommerce-page form .form-row-wide, .woocommerce-page form .form-row:after, .woocommerce-page ul.cart_list li:after, .woocommerce-page ul.product_list_widget li:after, .woocommerce-page #order_comments_field{clear:both;}
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1, .woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:48%;}
.woocommerce form .form-row label, .woocommerce-page form .form-row label{display:block;margin-bottom:10px;}
.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox{display:inline;}
.woocommerce-page form .form-row select, .woocommerce-page form .form-row .input-text{width:100%;}
.woocommerce-page form .form-row-last{float:right;}
.woocommerce-page #payment .terms,
.woocommerce-page #payment .wc-terms-and-conditions{text-align:left;padding:0 1em 0 0;float:left}
.woocommerce-page .woocommerce-error li{padding:0;}
.woocommerce-page .woocommerce-message .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-error .button{background-color:transparent;text-transform:capitalize;}
.woocommerce-page .woocommerce-message, .woocommerce-page .woocommerce-info, .woocommerce-page .woocommerce-error{position:relative;padding:18px 24px 18px 50px;border-radius:5px;background-color:#e4f2ff;color:#5084b4;font-size:16px;margin:0 0 30px 0;list-style:none;}
.woocommerce-page .woocommerce-message:before, .woocommerce-page .woocommerce-info:before, .woocommerce-page .woocommerce-error:before{font-size:30px;content:"\e684";font-family:"Pe-icon-7-stroke";position:absolute;left:20px;top:4px;}
.woocommerce-page .woocommerce-message a, .woocommerce-page .woocommerce-info a, .woocommerce-page .woocommerce-error a{color:#191919;text-decoration:underline;padding:0 8px 0 0;}
.woocommerce-page .woocommerce-message a:hover, .woocommerce-page .woocommerce-info a:hover, .woocommerce-page .woocommerce-error a:hover{opacity:0.7;}
.product_list_widget li{padding:0;padding-top:25px;margin-top:25px;border-top:1px solid #dddfe1;}
.product_list_widget li:first-child{padding-top:0;margin-top:0;border:0;}
.product_list_widget li > a{display:block;}
.product_list_widget del .amount{padding-right:5px;}
.product_list_widget li img{float:right;width:50px;box-shadow:none;}
.product_list_widget .product-title, .widget_recent_reviews .product_list_widget a{display:block;color:#646464;transition:all ease 0.3s;}
.product_list_widget .product-title:hover, .widget_recent_reviews .product_list_widget a:hover{color:#fd5a5a;}
.product_list_widget .star-rating, .widget_rating_filter .star-rating{width:120px;height:24px;background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left 0;margin:0 0 15px 0;}
.product_list_widget .star-rating span, .widget_rating_filter .star-rating span{background:url(//wsaegypt.com/wp-content/themes/nusafe/assets/img/star.png) repeat-x left -48px;height:0;padding-top:24px;overflow:hidden;float:left;}
.widget_rating_filter .star-rating{display:inline-block;margin:0;}
.widget_product_categories ul li a{color:#646464;font-size:14px;}
.widget_product_categories ul li a:hover{color:#fd5a5a;}
.widget_product_categories ul li{padding:3px 0;}
.widget_price_filter .price_slider{height:3px;margin-bottom:25px;margin-top:46px;background-color:#ebebeb;position:relative;text-align:left;}
.widget_price_filter .price_slider_amount{text-align:right;}
.widget_price_filter .price_slider_amount .button{font-size:13px;float:left;padding:0 20px;height:36px;line-height:36px;}
.widget_price_filter .price_slider_amount .button:hover{opacity:1;background-color:#fd5a5a;color:#fff;}
.widget_price_filter .ui-slider .ui-slider-handle{background-color:#fff;top:-5px;position:absolute;z-index:2;width:14px;height:14px;border:3px solid #fd5a5a;border-radius:50%;cursor:pointer;}
.widget_price_filter .ui-slider .ui-slider-handle:last-child{margin-left:-14px;}
.widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;display:block;border:0;background-color:#c2c3c5;}
.widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%;}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px;}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px;}
.widget_price_filter .price_slider_amount .price_label{color:#999;font-size:13px;height:36px;line-height:36px;margin-left:85px;text-align:center;}
.widget.widget_product_search .woocommerce-product-search{position:relative;}
.widget.widget_product_search .woocommerce-product-search .search-field{padding-right:48px;margin-bottom:0;padding:8px 20px;}
.widget.widget_product_search .woocommerce-product-search .search-submit{position:absolute;background-color:transparent;right:4px;top:5px;width:30px;height:30px;text-align:center;text-indent:999999px;padding:0;border:0;overflow:hidden;}
.widget.widget_product_search .woocommerce-product-search .search-submit:before{color:#646464;content:"\e936";font-family:"Pe-icon-7-stroke";font-size:16px;width:30px;height:30px;line-height:30px;position:absolute;left:0;top:0;text-align:center;text-indent:0;font-weight:normal;transition:all ease 0.3s;}
.widget.widget_product_search .woocommerce-product-search .search-submit:hover:before{color:#fd5a5a;}
.nav-top-cart-wrapper .woocommerce-min-cart-wrap{padding:30px;}
.nav-top-cart-wrapper .woocommerce-mini-cart__empty-message{margin:0;padding:10px 20px;font-size:15px;}
.widget_shopping_cart_content ul{list-style:none;margin:0;}
.widget_shopping_cart_content ul li{display:inline-block;position:relative;width:100%;border-top:1px solid #f4f4f4;padding:20px;margin:0;padding-left:75px;}
.widget_shopping_cart_content ul li.empty{padding:0;}
.widget_shopping_cart_content ul li:first-child{padding-top:0;margin-top:0;border-top:0;}
.widget_shopping_cart_content ul li .product-name{font-size:18px;font-weight:500;color:#191919;font-family:"Tajawal", sans-serif;}
.widget_shopping_cart_content ul li a:hover{color:#fd5a5a;}
.widget_shopping_cart_content ul li a.remove{font-size:14px;color:#ff4539;position:absolute;right:0;top:20px;}
.nav-top-cart-wrapper .nav-shop-cart ul li:first-child a.remove{top:0;}
.widget_shopping_cart_content ul li a.remove:hover{opacity:0.7}
.widget_shopping_cart_content ul li a img{position:absolute;top:27px;left:0;width:55px;}
.widget_shopping_cart_content ul li:first-child a img{top:7px;}
.widget_shopping_cart_content ul li a img:hover{border:1px solid #dddfe1;}
.widget_shopping_cart_content ul li .quantity{display:block;font-size:15px;line-height:24px;}
.widget_shopping_cart_content .total{margin-bottom:25px;padding:12px 0;border-top:1px solid #f4f4f4;border-bottom:1px solid #f4f4f4;font-size:18px;color:#191919;text-align:center;}
.widget_shopping_cart_content .total strong{color:#191919;font-weight:600;}
.widget_shopping_cart_content .buttons:before, .widget_shopping_cart_content .buttons:after{content:"";display:table;clear:both;}
.widget_shopping_cart_content .buttons{margin:0;}
.widget_shopping_cart_content .buttons > a{text-align:center;color:#191919;background-color:#eee;padding:8px 0;border-radius:3px;width:48%;float:left;}
.widget_shopping_cart_content .buttons a.checkout{float:right;background-color:#fd5a5a;color:#fff;}
.widget_shopping_cart_content .buttons a:hover{opacity:0.7;}
@media only screen and (max-width: 991px) {
.products.columns-4 li, .woocommerce-page.shop-col-4 .products li{width:50%;}
.woocommerce-page .content-woocommerce .woocommerce-result-count{display:none;}
.woocommerce-page .content-woocommerce .woocommerce-ordering{float:none;}
.woocommerce-page .content-woocommerce .woocommerce-result-count:after, .woocommerce-page .content-woocommerce .woocommerce-ordering:before{display:none;}
.woo-single-post-class .images, .woo-single-post-class .summary{width:100%;float:none;clear:left;}
.woo-single-post-class .summary{padding-top:60px;}
.woo-single-post-class .woocommerce-tabs ul li > a{padding:12px 30px;}
.woo-single-post-class .woocommerce-tabs ul li:first-child{margin:0 0 0 15px;}
.woo-single-post-class .woocommerce-tabs .comment-respond{margin-top:30px;}
.woo-single-post-class .woocommerce-tabs .panel{padding-top:30px;}
.woocommerce-page .shop_table.cart td, .woocommerce-page .shop_table.cart th{padding:15px;}
.woo-single-post-class .related.products{margin-top:60px;}
}
@media only screen and (max-width: 767px) {
.products.columns-3 li, .woocommerce-page.shop-col-3 .products li{width:50%;}
.products.columns-2 li, .products.columns-4 li, .woocommerce-page.shop-col-2 .products li, .woocommerce-page.shop-col-4 .products li{width:100%;}
.woocommerce-page .content-woocommerce .woocommerce-ordering{float:none;display:inline-block;}
.woo-single-post-class .woocommerce-tabs ul{border:0;}
.woo-single-post-class .woocommerce-tabs ul li{display:block;margin:0 0 10px !important;border:1px solid #dddfe1;top:0 !important;}
.woo-single-post-class .woocommerce-tabs ul li.active{top:0;}
.woo-single-post-class .woocommerce-tabs ul li.active > a{border:0 !important;}
.woo-single-post-class .woocommerce-tabs ul li > a{display:block;padding:10px 25px;}
.woo-single-post-class .related.products .products li:last-child{margin-bottom:0;}
.woo-single-post-class .related.products > h2{margin-bottom:0;}
.woocommerce-page table.shop_table_responsive tr{display:block}
.woocommerce-page table.shop_table_responsive tr td{display:block;text-align:right !important;}
.woocommerce-page table.shop_table_responsive tr td.order-actions{text-align:left !important;}
.woocommerce-page table.shop_table_responsive tr td:before{content:attr(data-title) ":";float:left;line-height:30px;}
.woocommerce-page .shop_table.cart .product-name a{font-size:20px;line-height:30px;}
.woocommerce-page table.shop_table_responsive thead, .woocommerce-page table.shop_table_responsive tbody th, .woocommerce-page table.my_account_orders tr td.order-actions:before, .woocommerce-page #content table.cart .product-thumbnail,
.woocommerce-page table.cart .product-thumbnail, .woocommerce-page table.shop_table_responsive tr td.actions:before, .woocommerce-page table.shop_table_responsive tr td.product-remove:before{display:none;}
.woocommerce-page .shop_table.cart .product-remove, .woocommerce-page .shop_table.cart .product-thumbnail, .woocommerce-page .shop_table.cart .product-price, .woocommerce-page .shop_table.cart .product-quantity, .woocommerce-page .shop_table.cart .product-subtotal{width:auto;}
.woocommerce-page table.my_account_orders tr td.order-actions{text-align:left;}
.woocommerce-page table.shop_table_responsive tr td.actions{text-align:left !important;}
.woocommerce-page .shop_table.cart .coupon + button[type='submit']{float:none;margin:15px 0 0;width:100%;}
.woocommerce-page .shop_table.cart .coupon #coupon_code,
.woocommerce-page .shop_table.cart .coupon > input[type='submit']{float:none;}
.woocommerce-page .cart_totals{width:100%;}
}
@media only screen and (max-width: 575px) { 
.products.columns-3 li, .woocommerce-page.shop-col-3 .products li{width:100%;}
.woocommerce-page .shop_table.cart .coupon #coupon_code{margin-bottom:10px;}
#payment #place_order{font-size:18px;padding:20px 40px;}
.woo-single-post-class .woocommerce-tabs .entry-content .comment_container img{float:none;margin:0 0 20px;}
.woo-single-post-class .woocommerce-tabs .entry-content .star-rating{position:static;margin-bottom:8px;}
}  .single-thumb{margin-bottom:45px;}
.single-title .title{font-size:36px;float:left;margin-bottom:15px;}
.single-title .campaign-donation{float:right;}
.single-title .campaign-donation .donate-btn{border-radius:3px;display:none;}
.single-figure .figure{font-size:16px;font-weight:500;margin-bottom:15px;}
.single-figure .figure .time-left{padding-left:30px;}
.single-campaign .campaign-raised .amount, .single-campaign .campaign-figures .amount, .single-campaign .donors-count, .single-campaign .time-left, .single-campaign .charitable-form-field a:not(.button),
.single-campaign .charitable-form-fields .charitable-fieldset a:not(.button),
.single-campaign .charitable-notice, .single-campaign .charitable-notice .errors a{color:#fd5a5a;}
.single-campaign .progress-bar, .single-campaign .progress-animate{height:12px;border-radius:6px;}
.single-campaign .progress-bar .progress-animate:after{width:22px;height:22px;}
.charitable-fieldset > :last-child, .charitable-fieldset-field-wrapper > :last-child, #charitable-donation-form .donation-amounts,
#charitable-donation-form .donation-amounts .donation-amount:last-child{margin-bottom:0;}
.charitable-donation-form{padding-top:0;}
.charitable-donor-details{padding:0;margin-bottom:25px;}
#charitable-donor-fields,
.charitable-form-fields .charitable-fieldset{padding:15px 20px 30px;margin:0 0 30px;}
#charitable-user-fields, 
#charitable-meta-fields,
#charitable-donor-fields .charitable-form-header{padding:0;}
.charitable-form-field input, .charitable-form-field select, .charitable-form-field textarea{padding:15px 20px;margin-bottom:30px;}
#charitable-donation-form .donation-amounts .donation-amount .amount,
#charitable-donation-form .donation-amounts .donation-amount.custom-donation-amount input{font-weight:500;}
.campaign-nusafe-progress .bar, .donate-button, #charitable-donation-form .donation-amount.selected,
#charitable-donation-amount-form .donation-amount.selected,
#charitable-donation-form .donation-amount.custom-donation-amount.selected .custom-donation-input{background-color:#fd5a5a;color:#fff;}
#charitable-donation-amount-form .donation-amount.custom-donation-amount.selected,
#charitable-donation-form .donation-amount.custom-donation-amount.selected{background-color:#fff;}
#charitable-donation-form .donation-amount.custom-donation-amount.selected input:focus,
#charitable-donation-amount-form .donation-amount.custom-donation-amount.selected input:focus,
#charitable-donation-amount .donation-amount.custom-donation-amount.selected input,
#charitable-donation-amount-form .donation-amount.custom-donation-amount.selected input{color:#fff;background-color:#fd5a5a;}
#charitable-donation-form .donation-amount.custom-donation-amount.selected input::placeholder,
#charitable-donation-amount-form .donation-amount.custom-donation-amount.selected input::placeholder{color:#fff;}
#charitable-donation-form .donation-amount.custom-donation-amount.selected input:-ms-input-placeholder,
#charitable-donation-amount-form .donation-amount.custom-donation-amount.selected input:-ms-input-placeholder{color:#fff;}
#charitable-donation\-form .donation-amount.custom-donation-amount.selected input::-ms-input-placeholder,
#charitable-donation-amount-form .donation-amount.custom-donation-amount.selected input::-ms-input-placeholder{color:#fff;}
#charitable-donation-form .custom-donation-input{margin:0;font-size:16px;font-weight:500;padding:4px 20px;}
#charitable-donation-form .donation-amounts .donation-amount{width:auto;border:1px solid #dddfe1;margin:0 20px 20px 0;border-radius:5px;}
#charitable-donation-form .donation-amounts .donation-amount .custom-donation-amount-wrapper,
#charitable-donation-form .donation-amounts .donation-amount > label{width:80px;height:60px;text-align:center;line-height:50px;padding:5px;font-weight:500;font-size:16px;}
#charitable-donation-form .donation-amounts .donation-amount.custom-donation-amount{border:none;}
#charitable-donation-form .donation-amounts .donation-amount.custom-donation-amount .custom-donation-amount-wrapper,
#charitable-donation-form .donation-amounts .donation-amount.custom-donation-amount > label{width:fit-content;height:auto;padding:0;}
#charitable-donation-form .donation-amount.custom-donation-amount.selected{background-color:transparent;}
#charitable-donation-form .charitable-form-field{margin-bottom:0;}
#charitable-donation-form .charitable-form-field:last-child input{margin-bottom:0;}
#charitable-donation-form .charitable-form-header{font-size:27px;font-weight:400;font-family:"Tajawal";color:#191919;}
#charitable-donation-form .charitable-form-fields .charitable-fieldset{margin-bottom:30px;border:1px solid #dddfe1;}
#charitable-donation-form .charitable-button.donate-button{padding:18px 65px 18px 45px;}
#charitable-donation-form .charitable-button.donate-button:after{top:18px;right:45px;}
.button.charitable-button{position:relative;display:inline-block;font-size:13px;line-height:24px;font-weight:500;text-transform:uppercase;color:#fff;background-color:#fd5a5a;padding:13px 50px 13px 38px;border-radius:3px;}
.button.charitable-button:after{position:absolute;top:13px;right:30px;font-family:"Core Icon";content:'\ea60';}
.button.charitable-button:hover{background-color:#191919;}
.charitable-form-field.charitable-custom-donation-field-alone{margin:0 30px 30px 0;}
.charitable-login-form .login-username, .charitable-login-form .login-password{margin-bottom:0;}
.charitable-login-form{padding:15px 20px 30px;}
.campaign-inner .charitable-button.read-more-button:hover, .campaign-inner .charitable-button.donate-button:hover{background-color:#191919 !important;color:#fff;}
.campaign-inner{padding:33px 30px 15px;}
.campaign-title{font-size:27px;margin-bottom:35px;}
.campaign-title:hover a{color:#fd5a5a;}
.campaign-description{display:none;}
.before-title .nusafe-progress{display:none;}
.campaign-donation-stats{display:table;width:100%;margin-bottom:10px;}
.campaign-donation-stats .donation-stats-wrap, .campaign-donation-stats .donation-percent{display:table-cell;vertical-align:middle;}
.campaign-donation-stats .donation-stats-wrap, .campaign-donation-stats .donation-stats-wrap{margin-bottom:37px;}
.campaign-donation-stats .donation-stats-wrap > span, .campaign-donation-stats .donation-stats-wrap > span{display:block;font-weight:400;font-family:"IBM Plex Sans";padding-left:30px;position:relative;margin-bottom:24px;}
.campaign-donation-stats .donation-stats-wrap > span:after{position:absolute;top:-1px;left:0;color:#fd5a5a;font-family:"Core Icon";content:'';font-size:18px;line-height:28px;}
.campaign-donation-stats .donation-stats-wrap .goal-amount:after, .campaign-donation-stats .donation-stats-wrap .goal-amount:after{content:'\e931';}
.campaign-donation-stats .donation-stats-wrap .amount:after, .campaign-donation-stats .donation-stats-wrap .amount:after{content:'\e930';}
.campaign-donation-stats .donation-stats-wrap .title, .campaign-donation-stats .donation-stats-wrap .title{font-weight:500;}
.campaign-donation-stats .donation-percent, .campaign-donation-stats .donation-percent{font-size:42px;font-family:"Tajawal";color:#191919;}
.wp-post-image{padding:0;overflow:hidden;}
.nusafe-charitable .campaign{border-radius:10px 10px 0 0;overflow:hidden;}
.nusafe-charitable .campaign .image-wrap{position:relative;display:block;overflow:hidden;}
.nusafe-charitable .campaign .image-wrap .donate-btn{position:absolute;top:50%;left:50%;transform:scale(0, 0) translate(-50%, -50%);display:inline-block;font-size:0;transition:transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;opacity:0;visibility:hidden;width:80px;height:80px;transform-origin:0 0;z-index:1;}
.nusafe-charitable .campaign .image-wrap .donate-btn:after{z-index:2;display:inline-block;position:absolute;top:0;left:0;width:80px;height:80px;line-height:76px;text-align:center;border:2px dashed #fff;color:#fff;font-family:"Core Icon";content:'\f178';font-size:20px;transition:0.3s;}
.nusafe-charitable .campaign .image-wrap:after{position:absolute;top:0;left:0;width:100%;height:100%;transition:0.6s;content:'';}
.nusafe-charitable .campaign .image-wrap:hover:after{box-shadow:inset 0 0 0 360px rgba(253, 90, 90, 0.9);}
.nusafe-charitable .campaign .image-wrap:hover .donate-btn{opacity:1;visibility:visible;transform:scale(1, 1) translate(-50%, -50%);transition-delay:0.3s;}
.nusafe-charitable .campaign .image-wrap .donate-btn:hover:after{border-style:solid;background-color:#fff;color:#191919;}
.nusafe-charitable .campaign .charitable-button{padding:10px 55px 10px 35px;}
.nusafe-charitable .campaign .charitable-button:after{top:10px;}
.campaign-style-1 .campaign{background-color:#fff;}
.campaign-style-1 .campaign .campaign-donation-stats .donation-stats-wrap .amount{margin-bottom:0;}
.campaign-style-1 .campaign .campaign-donation-stats{margin-bottom:33px;}
.campaign-style-2 .campaign{border:1px solid #dddfe1;}
.campaign-style-3 .campaign{border:1px solid #dddfe1;text-align:center;border-radius:unset;background-color:#fff;}
.campaign-style-3 .wp-post-image{border-radius:unset;}
.campaign-style-3 .before-title .nusafe-progress{display:block;}
.campaign-style-3 .campaign-inner .nusafe-progress, .campaign-style-3 .campaign-donation-stats .donation-percent{display:none;}
.campaign-style-3 .nusafe-progress .progress-bar{height:6px;border-radius:unset;padding:0;margin:0;}
.campaign-style-3 .nusafe-progress .progress-animate{height:6px;border-radius:unset;}
.campaign-style-3 .nusafe-progress .progress-animate:after{display:none;}
.campaign-style-3 .before-title{position:relative;min-height:55px;}
.campaign-style-3 .perc .number-wrap{position:absolute;top:65px;color:#fff;background-color:#fd5a5a;font-size:13px;line-height:30px;padding:0 12px;transform:translateX(-50%);}
.campaign-style-3 .perc .number-wrap:after{position:absolute;top:-10px;left:50%;transform:translateX(-50%);content:'';width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-bottom:10px solid #fd5a5a;}
.campaign-style-3 .campaign-description{display:block;margin-bottom:30px;}
.campaign-style-3 .campaign-inner{padding:25px 30px 15px;}
.campaign-style-3 .campaign-title{margin-bottom:25px;font-family:"Playfair Display";font-weight:700;}
.campaign-style-3 .campaign-donation-stats .donation-stats-wrap{margin:0 auto 30px;}
.campaign-style-3 .campaign-donation-stats .donation-stats-wrap > span, .campaign-style-3 .campaign-donation-stats .donation-stats-wrap > span{display:inline-block;}
.campaign-style-3 .campaign-donation-stats .donation-stats-wrap .goal-amount, .campaign-style-3 .campaign-donation-stats .donation-stats-wrap .amout{margin:0 12px 25px;}
.nusafe-loading{width:84px;height:84px;border-radius:50%;border:3px solid transparent;border-top-color:#fd5a5a;animation:animsition-loading 1.7s linear infinite;}
.nusafe-loading:before{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;border-radius:50%;border:3px solid transparent;border-top-color:#0fc392;animation:animsition-loading-reverse .6s linear infinite;}
.widget.widget_charitable_donate_widget #charitable-donation-amount-form .charitable-donation-options{margin:0 -30px -30px 0;}
.widget.widget_charitable_donate_widget .charitable-donation-form .donation-amounts .donation-amount .amount{font-weight:500;}
.widget.widget_charitable_donate_widget .charitable-donation-form .donation-amounts .donation-amount .custom-donation-amount-wrapper, .widget.widget_charitable_donate_widget .charitable-donation-form .donation-amounts .donation-amount>label{padding:11px 10px;}
.widget.widget_charitable_donate_widget #charitable-donation-amount-form .donation-amounts .donation-amount{display:inline-block;width:80px;margin:0 20px 20px 0;text-align:center;border-radius:5px;}
.widget.widget_charitable_donate_widget #charitable-donation-amount-form .donation-amounts .description{display:none;}
.widget.widget_charitable_donate_widget #charitable-donation-amount-form .donation-amounts .custom-donation-amount{width:auto;border:none;margin-bottom:0;}
.widget.widget_charitable_donate_widget .charitable-donation-form .donation-amounts .donation-amount .custom-donation-amount-wrapper{padding:0;}
@media only screen and (max-width: 991px) {
.single-title .campaign-donation .donate-btn{display:inline-block;}
}
@media only screen and (max-width: 575px) {
.single-title .title, .single-title .campaign-donation {
float: none;
}
.single-title .campaign-donation .donate-btn {
margin-bottom: 20px;
}
.single-figure .figure .time-left {
display: none;
}
.campaign-style-1 .campaign-donation-stats .donation-stats-wrap, .campaign-style-2 .campaign-donation-stats .donation-stats-wrap, .campaign-style-1 .campaign-donation-stats .donation-percent, .campaign-style-2 .campaign-donation-stats .donation-percent {
display: block;
}
.campaign-style-1 .campaign-donation-stats .donation-stats-wrap, .campaign-style-2 .campaign-donation-stats .donation-stats-wrap {
margin-bottom: 5px;
}
.campaign-style-1 .campaign-donation-stats .donation-stats-wrap > span:last-child, .campaign-style-2 .campaign-donation-stats .donation-stats-wrap > span:last-child {
margin-bottom: 0;
}
}