.cl-btn {
display: inline-block;
vertical-align: top;
line-height: 1.5;
padding: 8px 20px;
margin: 4px 0;
border-radius: 3px;
background-color: rgba(0, 0, 0, 0.1);
}
[class^="cl-"][class*=" ratio_"]:before {
content: '';
display: block;
}
[class^="cl-"].ratio_2x1:before {
padding-top: 50%;
}
[class^="cl-"].ratio_3x2:before {
padding-top: 66.6666%;
}
[class^="cl-"].ratio_4x3:before {
padding-top: 75%;
}
[class^="cl-"].ratio_1x1:before {
padding-top: 100%;
}
[class^="cl-"].ratio_3x4:before {
padding-top: 125%;
}
[class^="cl-"].ratio_2x3:before {
padding-top: 150%;
}
[class^="cl-"].ratio_1x2:before {
padding-top: 200%;
}
[class^="cl-"] [class^="cl-"][class*=" ratio_"] > [class$="-h"],
[class^="cl-"] [class^="cl-"][class*=" ratio_"] > [class*="-h "] {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.easing_easeInOutExpo .cl-flipbox-hh,
.easing_easeInOutExpo .cl-flipbox-hhh,
.easing_easeInOutExpo .cl-flipbox-front,
.easing_easeInOutExpo .cl-flipbox-back,
.easing_easeInOutExpo .cl-flipbox-xflank,
.easing_easeInOutExpo .cl-flipbox-yflank,
.easing_easeInOutExpo .cl-ib-image,
.easing_easeInOutExpo .cl-ib-content,
.easing_easeInOutExpo .cl-ib-content:before,
.easing_easeInOutExpo .cl-ib-content-h,
.easing_easeInOutExpo .cl-ib-title,
.easing_easeInOutExpo .cl-ib-desc {
-webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.easing_easeInOutCirc .cl-flipbox-hh,
.easing_easeInOutCirc .cl-flipbox-hhh,
.easing_easeInOutCirc .cl-flipbox-front,
.easing_easeInOutCirc .cl-flipbox-back,
.easing_easeInOutCirc .cl-flipbox-xflank,
.easing_easeInOutCirc .cl-flipbox-yflank,
.easing_easeInOutCirc .cl-ib-image,
.easing_easeInOutCirc .cl-ib-content,
.easing_easeInOutCirc .cl-ib-content:before,
.easing_easeInOutCirc .cl-ib-content-h,
.easing_easeInOutCirc .cl-ib-title,
.easing_easeInOutCirc .cl-ib-desc {
-webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.easing_easeOutBack .cl-flipbox-hh,
.easing_easeOutBack .cl-flipbox-hhh,
.easing_easeOutBack .cl-flipbox-front,
.easing_easeOutBack .cl-flipbox-back,
.easing_easeOutBack .cl-flipbox-xflank,
.easing_easeOutBack .cl-flipbox-yflank,
.easing_easeOutBack .cl-ib-image,
.easing_easeOutBack .cl-ib-content,
.easing_easeOutBack .cl-ib-content:before,
.easing_easeOutBack .cl-ib-content-h,
.easing_easeOutBack .cl-ib-title,
.easing_easeOutBack .cl-ib-desc {
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animated_bounceIn,
.animated_fadeIn,
.animated_fadeOut,
.animated_flipInX,
.animated_flipOutX,
.animated_zoomIn {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated_bounceIn,
.animated_flipInX,
.animated_flipOutX {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.animated_bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animated_fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.animated_fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
}
}
@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);
}
}
.animated_flipInX {
transform-origin: 50% 0%;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@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;
}
}
.animated_flipOutX {
transform-origin: 50% 100%;
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.animated_zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}.cl-itext {
display: block;
position: relative;
padding: 0 !important;
margin: 10px 0;
font-size: 50px;
line-height: 1.4;
text-align: center;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.cl-itext.align_left {
text-align: left;
}
.cl-itext.align_right {
text-align: right;
}
.cl-itext-part {
position: relative;
display: inline-block;
white-space: nowrap;
text-align: left;
-webkit-transition-property: width, color;
transition-property: width, color;
}
.cl-itext-part.notransition {
-webkit-transition-property: none !important;
transition-property: none !important;
}
.cl-itext-part > span.measure {
position: absolute;
left: 0;
top: 0;
opacity: 0;
}
.cl-itext-part > span > span {
display: inline-block;
visibility: hidden;
}
.cl-itext-part > span > span[class^="animated_"] {
visibility: visible;
}
.cl-itext-part > span > span:last-child {
margin-right: -200px;
}
.cl-itext.dynamic_bold .dynamic {
font-weight: bold;
}.upb_row_bg,.upb_video-bg,.vcpb-fs-jquery{overflow:hidden}.vc-row-translate-wrapper{margin:0!important}.uvc-vc-full-width .upb_video-bg{width:100%!important;max-width:100%!important;min-width:100%!important;left:0!important;margin-left:0!important}.upb_bg_overlay,.upb_bg_overlay_pattern{color:inherit;position:absolute;width:100%;height:100%!important;left:0;top:0}.upb_bg_overlay_pattern{background-attachment:fixed}.ult-vc-seperator{position:absolute;width:100%;height:0;left:0;z-index:1}.ult-main-seperator-inner{position:relative;height:100%;width:100%}.ult-vc-seperator.top_seperator{top:-1px;bottom:auto}.ult-vc-seperator.bottom_seperator{top:auto;bottom:-1px}.ult-vc-seperator svg{width:100%;height:auto}.uvc-svg-circle,.uvc-svg-triangle{position:absolute;top:-1px;bottom:auto;z-index:1}.bottom_seperator .uvc-svg-circle,.bottom_seperator .uvc-svg-triangle{top:auto;bottom:-1px;-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}.uvc-x-large-triangle{position:absolute;top:-1px;bottom:auto;z-index:1}.bottom_seperator .uvc-x-large-triangle{top:auto;bottom:-1px;-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}.bottom_seperator .uvc-x-large-triangle,.top_seperator .uvc-x-large-triangle-left{-moz-transform:scaleY(-1);-webkit-transform:scaleY(-1);-o-transform:scaleY(-1);-ms-transform:scaleY(-1)}.uvc-x-large-triangle-left,.uvc-x-large-triangle-right{position:absolute;top:-1px;bottom:auto;z-index:1}.bottom_seperator .uvc-x-large-triangle-left,.bottom_seperator .uvc-x-large-triangle-right,.uvc-x-large-circle{top:auto;bottom:-1px}.top_seperator .uvc-x-large-triangle-left{-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}.top_seperator .uvc-x-large-triangle-right{-webkit-transform:scale(-1);-ms-transform:scale(-1);transform:scale(-1)}.bottom_seperator .uvc-x-large-triangle-right{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.uvc-x-large-circle{position:absolute}.top_seperator .uvc-x-large-circle{top:-1px;bottom:auto}.bottom_seperator .uvc-x-large-circle{-ms-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleY(-1)}.bottom_seperator .uvc-x-large-circle,.top_seperator .uvc-curve-up-seperator{-moz-transform:scaleY(-1);-webkit-transform:scaleY(-1);-o-transform:scaleY(-1)}.uvc-curve-up-seperator{position:absolute;top:auto;bottom:-1px}.top_seperator .uvc-curve-up-seperator{top:-1px;bottom:auto;-ms-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleY(-1)}.uvc-curve-down-seperator{position:absolute;top:auto;bottom:-1px}.bottom_seperator .uvc-curve-down-seperator{-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.top_seperator .uvc-curve-down-seperator{top:-1px;bottom:auto;-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,-1);transform:scale(-1,-1)}.uvc-tilt-left-seperator{position:absolute;top:auto;bottom:1px}.top_seperator .uvc-tilt-left-seperator{top:1px;bottom:auto;-webkit-transform:scale(-1);-ms-transform:scale(-1);transform:scale(-1)}.uvc-tilt-right-seperator{position:absolute;top:auto;bottom:1px}.bottom_seperator .uvc-tilt-right-seperator{-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.top_seperator .uvc-tilt-right-seperator{top:1px;bottom:auto;-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}.ult-rounded-split-seperator-wrapper{z-index:1}.ult-rounded-split-seperator{position:relative;height:100%}.ult-rounded-split-seperator:after,.ult-rounded-split-seperator:before{left:0;z-index:10;width:50%;height:70px;background:inherit inherit/inherit inherit inherit inherit;content:'';position:absolute}.ult-vc-seperator.top_seperator svg.uvc-multi-triangle-svg{-webkit-transform:scale(-1);-ms-transform:scale(-1);transform:scale(-1)}.vcpb-vz-jquery,.vertical_layer_parallax{background-position:50% 0}.upb_video-bg,.vcpb-default,.vcpb-fix,.vcpb-hz-jquery,.vcpb-vz-jquery,.vertical_layer_parallax{background-repeat:no-repeat}.upb_video-bg,.vcpb-default,.vcpb-fix{-webkit-background-size:cover;background-size:cover}.top_seperator.ult-rounded-split-seperator-wrapper{top:0;bottom:auto}.uvc-wave-seperator{position:absolute;top:auto;bottom:-1px}.top_seperator .uvc-wave-seperator{top:-1px;bottom:auto;-ms-transform:scale(-1);-webkit-transform:scale(-1);transform:scale(-1)}.top_seperator .uvc-cloud-seperator,.top_seperator .uvc-wave-seperator{-moz-transform:scale(-1);-webkit-transform:scale(-1);-o-transform:scale(-1)}.uvc-cloud-seperator{position:absolute;top:auto;bottom:-1px}.top_seperator .uvc-cloud-seperator{top:-1px;bottom:auto;-ms-transform:scale(-1);-webkit-transform:scale(-1);transform:scale(-1)}.separator-icon{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:5}.vc-row-translate>.vc-row-translate-wrapper{overflow:hidden;width:100%!important;margin:initial!important}.upb_video_class,.wpb_column,.wpb_row{position:relative}.upb_row_bg{position:absolute;width:100%;height:100%;background-position:center center;top:0;bottom:0;right:0;left:0;z-index:0}.upb-background-text-wrapper,.upb_video-text,.upb_video-text-wrapper{position:relative}.upb_bg_img{display:none!important}.vcpb-default{background-attachment:initial}.vcpb-fix,.vcpb-vz-jquery,.vertical_layer_parallax{background-attachment:fixed}.vertical_layer_parallax{-webkit-background-size:cover;background-size:cover}.vcpb-hz-jquery{background-position:0 50%}.upb_video-wrapper{display:block;max-width:100%;height:100%}.upb_video-text{z-index:9;width:100%;height:100%;top:0;bottom:0;right:0;left:0}.full-browser-size .upb-background-text,.video-browser-size .upb_video-text{margin:initial!important;position:absolute;bottom:auto;top:50%;right:0;left:0;height:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.upb_video-bg{position:absolute;width:100%;height:100%;top:0;bottom:0;right:0;left:0;background-position:50% 50%;margin:0 auto}.upb_video-src{max-width:none;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:relative;min-width:100%;min-height:100%}.upb_video-src.ult-make-full-height{height:100%;width:auto!important;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);left:50%;top:0}.upb_utube_iframe,.upb_vimeo_iframe{max-width:none;max-height:none;width:100%;height:100%;position:absolute}.upb_video-bg .mbYTP_wrapper iframe{max-width:none!important;max-height:none!important}.uvc-row.uvc-video-fixer .mbYTP_wrapper iframe{margin-left:0!important;margin-top:-50px!important}.video-controls{position:absolute;bottom:10%;right:5%;cursor:pointer;width:auto!important;min-width:15px!important;height:auto!important;z-index:99}.video-controls i{font-size:40px}body.rtl .upb_row_bg{right:auto}.uvc-multi-color-bg{-webkit-animation:MultiColorVC 10s alternate infinite;animation:MultiColorVC 10s alternate infinite;z-index:9998;opacity:.6;background-color:#e14949}@-webkit-keyframes MultiColorVC{0%{background-color:#e14949}25%{background-color:#3de02c}50%{background-color:#2c8de0}100%{background-color:#e02cbc}}@keyframes MultiColorVC{0%{background-color:#e14949}25%{background-color:#3de02c}50%{background-color:#2c8de0}100%{background-color:#e02cbc}}@media (max-width:479px){.uvc_hidden-xs{display:none!important}}@media (min-width:480px)and (max-width:767px){.uvc_hidden-xsl{display:none!important}}@media (min-width:768px)and (max-width:991px){.uvc_hidden-sm{display:none!important}}@media (min-width:992px)and (max-width:1199px){.uvc_hidden-md{display:none!important}}@media (min-width:1200px)and (max-width:1823px){.uvc_hidden-ml{display:none!important}}@media (min-width:1824px){.uvc_hidden-lg{display:none!important}}.mpcth-vc-row-wrap,.toranj-vc-row-wrapper,.x-content-band{position:relative}.js_active .site-inner{overflow:visible}html.ult-remove-fixed-background .upb_row_bg{background-attachment:scroll!important}.vc_row-flex .upb-background-text-wrapper.full-browser-size,.vc_row-flex .upb_video-text-wrapper.full-browser-size{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:-moz-box;display:flex;width:100%}.vc_row-flex .upb-background-text,.vc_row-flex .upb_video-text,.vc_row-flex .vc-row-translate-wrapper,.vc_row-o-content-bottom .upb-background-text,.vc_row-o-content-bottom .upb_video-text,.vc_row-o-content-bottom .vc-row-translate-wrapper,.vc_row-o-content-middle .upb-background-text,.vc_row-o-content-middle .upb_video-text,.vc_row-o-content-middle .vc-row-translate-wrapper,.vc_row-o-content-top .upb-background-text,.vc_row-o-content-top .upb_video-text,.vc_row-o-content-top .vc-row-translate-wrapper,.vc_row-o-equal-height .upb-background-text,.vc_row-o-equal-height .upb_video-text,.vc_row-o-equal-height .vc-row-translate-wrapper{margin:0 auto!important}.vc_row-o-content-top.full-browser-size .upb-background-text,.vc_row-o-content-top.video-browser-size .upb_video-text{top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.vc_row-o-content-bottom.full-browser-size .upb-background-text,.vc_row-o-content-bottom.video-browser-size .upb_video-text{top:auto;bottom:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}