.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-popup.align_left {
text-align: left;
}
.cl-popup.align_center {
text-align: center;
}
.cl-popup.align_right {
text-align: right;
}
.cl-popup-trigger img {
vertical-align: top;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.cl-popup-trigger:hover img {
opacity: 0.75;
}
.cl-popup-overlay,
.cl-popup-wrap {
display: none;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
}
.cl-popup-overlay.pos_absolute,
.cl-popup-wrap.pos_absolute {
position: absolute;
}
.cl-popup-overlay.pos_fixed,
.cl-popup-wrap.pos_fixed {
position: fixed;
}
.cl-popup-overlay {
z-index: 10001;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
opacity: 0;
}
.cl-popup-overlay.active {
opacity: 1;
}
.cl-popup-wrap {
cursor: pointer;
z-index: 10002;
}
.cl-popup-wrap.pos_fixed {
overflow-x: hidden;
overflow-y: auto;
}
.cl-popup-closer {
position: fixed;
top: 0;
right: 0;
text-align: center;
font-weight: normal;
line-height: 76px;
height: 80px;
width: 80px;
cursor: pointer;
color: #fff;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
opacity: 0;
}
.cl-popup-closer:before {
content: '\00D7';
font-size: 60px;
}
@media (max-width: 600px) {
.cl-popup-closer {
line-height: 48px;
height: 50px;
width: 50px;
background-color: rgba(0, 0, 0, 0.8);
}
.cl-popup-closer:before {
font-size: 40px;
}
}
.cl-popup-box.active + .cl-popup-closer {
opacity: 0.33;
}
.cl-popup-box.active + .cl-popup-closer:hover {
opacity: 1;
}
.cl-popup-box {
position: absolute;
top: 0;
left: 50%;
cursor: default;
}
.cl-popup-box-h {
height: 100%;
overflow: hidden;
border-radius: inherit;
}
.cl-popup-box-closer {
display: none;
position: absolute;
top: 0;
right: 0;
text-align: center;
font-weight: normal;
line-height: 76px;
height: 80px;
width: 80px;
cursor: pointer;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
opacity: 0.33;
}
.cl-popup-box-closer:before {
content: '\00D7';
font-size: 60px;
}
.cl-popup-box-closer:hover {
opacity: 1;
}
.cl-popup-box-title {
font-size: 1.15em;
line-height: 1.5;
font-weight: bold;
padding: 15px 25px;
}
.cl-popup-box-content {
overflow: hidden;
height: 100%;
padding: 40px;
}
.cl-popup-box-content img {
vertical-align: top;
}
.cl-popup-box-content iframe {
vertical-align: top;
}
.cl-popup-box-content h1,
.cl-popup-box-content h2,
.cl-popup-box-content h3,
.cl-popup-box-content h4,
.cl-popup-box-content h5,
.cl-popup-box-content h6 {
color: inherit;
}
.cl-popup-box.paddings_none .cl-popup-box-content {
padding: 0 !important;
}
.cl-popup-box.size_s {
width: 400px;
margin-left: -200px;
padding: 25px 0;
}
.cl-popup-box.size_m {
width: 600px;
margin-left: -300px;
padding: 25px 0;
}
@media (max-width: 700px) {
.cl-popup-box.size_m {
left: 50px;
right: 50px;
width: auto;
margin-left: 0;
}
.cl-popup-box.size_m + .cl-popup-closer {
width: 50px;
}
}
.cl-popup-box.size_l {
width: 800px;
margin-left: -400px;
padding: 25px 0;
}
.cl-popup-box.size_l .cl-popup-box-content {
padding: 50px;
}
@media (max-width: 900px) {
.cl-popup-box.size_l {
left: 50px;
right: 50px;
width: auto;
margin-left: 0;
}
.cl-popup-box.size_l + .cl-popup-closer {
width: 50px;
}
}
.cl-popup-box.size_xl {
width: 1000px;
margin-left: -500px;
padding: 25px 0;
}
.cl-popup-box.size_xl .cl-popup-box-content {
padding: 50px;
}
@media (max-width: 1100px) {
.cl-popup-box.size_xl {
left: 50px;
right: 50px;
width: auto;
margin-left: 0;
}
.cl-popup-box.size_xl + .cl-popup-closer {
width: 50px;
}
}
.cl-popup-box.size_f {
left: 0;
right: 0;
}
.cl-popup-box.size_f .cl-popup-box-content {
min-height: 100vh;
}
.cl-popup-box.size_f.paddings_none + .cl-popup-closer {
background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 601px) {
.cl-popup-box.size_f .cl-popup-box-title {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 25px 80px 25px 40px;
font-size: 20px;
line-height: 30px;
}
.cl-popup-box.size_f.paddings_none .cl-popup-box-title {
position: static;
}
.cl-popup-box.size_f .cl-popup-box-content {
padding: 100px 5% 5%;
}
.cl-popup-box.size_f .cl-popup-box-title + .cl-popup-box-content {
padding-top: calc(5% + 80px);
}
.cl-popup-box.size_f:not(.paddings_none) .cl-popup-box-closer {
display: block;
}
.cl-popup-box.size_f:not(.paddings_none) + .cl-popup-closer {
display: none;
}
}
@media (max-width: 600px) {
.cl-popup-box.size_s,
.cl-popup-box.size_m,
.cl-popup-box.size_l,
.cl-popup-box.size_xl {
left: 0;
right: 0;
width: auto;
padding: 0;
margin: 0;
}
.cl-popup-box-title {
line-height: 20px;
padding-right: 55px;
}
.cl-popup-box-content {
padding: 25px !important;
}
}
.cl-popup-box.animation_fadeIn .cl-popup-box-h {
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.cl-popup-box.animation_fadeIn.active .cl-popup-box-h {
opacity: 1;
}
.cl-popup-box.animation_scaleUp .cl-popup-box-h {
-webkit-transform: scale(0.7);
transform: scale(0.7);
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.cl-popup-box.animation_scaleUp.active .cl-popup-box-h {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.cl-popup-box.animation_scaleDown .cl-popup-box-h {
-webkit-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.cl-popup-box.animation_scaleDown.active .cl-popup-box-h {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.cl-popup-box.animation_slideTop .cl-popup-box-h {
-webkit-transform: translateY(-20%);
transform: translateY(-20%);
opacity: 0;
-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.cl-popup-box.animation_slideTop.active .cl-popup-box-h {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
.cl-popup-box.animation_slideBottom .cl-popup-box-h {
-webkit-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.cl-popup-box.animation_slideBottom.active .cl-popup-box-h {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
.cl-popup-box.animation_flipHor {
-webkit-perspective: 1300px;
-moz-perspective: 1300px;
perspective: 1300px;
}
.cl-popup-box.animation_flipHor .cl-popup-box-h {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: rotateY(-70deg);
transform: rotateY(-70deg);
-webkit-transition: all 0.3s;
transition: all 0.3s;
opacity: 0;
}
.cl-popup-box.animation_flipHor.active .cl-popup-box-h {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
opacity: 1;
}
.cl-popup-box.animation_flipVer {
-webkit-perspective: 1300px;
-moz-perspective: 1300px;
perspective: 1300px;
}
.cl-popup-box.animation_flipVer .cl-popup-box-h {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: rotateX(-70deg);
transform: rotateX(-70deg);
-webkit-transition: all 0.3s;
transition: all 0.3s;
opacity: 0;
}
.cl-popup-box.animation_flipVer.active .cl-popup-box-h {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
}
html.cloverlay_fixed {
overflow: hidden;
}.cl-ib {
display: inline-block;
vertical-align: top;
position: relative;
word-wrap: normal;
width: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.cl-ib-h {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
background-color: inherit;
-webkit-transition-property: none;
transition-property: none;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.cl-ib-image,
.cl-ib-content {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.cl-ib-image {
-webkit-background-size: cover;
background-size: cover;
background-position: 50% 50%;
}
.cl-ib-image img {
display: none;
}
.cl-ib-content {
z-index: 2;
text-align: center;
padding: 10%;
}
.cl-ib.align_left .cl-ib-content {
text-align: left;
}
.cl-ib.align_right .cl-ib-content {
text-align: right;
}
.cl-ib-title {
line-height: 1.4;
padding: 0 !important;
margin: 0 !important;
color: inherit !important;
}
.cl-ib-title.size_tiny {
font-size: 14px;
}
.cl-ib-title.size_small {
font-size: 16px;
}
.cl-ib-title.size_medium {
font-size: 20px;
}
.cl-ib-title.size_large {
font-size: 24px;
}
.cl-ib-title.size_huge {
font-size: 28px;
}
.cl-ib-desc {
font-size: 13px;
line-height: 1.5;
margin-top: 15px;
}
.cl-ib.animation_melete .cl-ib-image {
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_melete .cl-ib-content {
top: 50%;
bottom: auto;
opacity: 0;
-webkit-transform: translateY(-50%) scale(0.2);
transform: translateY(-50%) scale(0.2);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_melete.hover .cl-ib-image {
opacity: 0.1;
-webkit-transform: scale(4);
transform: scale(4);
}
.cl-ib.animation_melete.hover .cl-ib-content {
opacity: 1;
-webkit-transform: translateY(-50%) scale(1);
transform: translateY(-50%) scale(1);
}
.cl-ib.animation_soter .cl-ib-image {
z-index: 1;
border-radius: 50%;
-webkit-transform: scale(0.3);
transform: scale(0.3);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, border-radius;
transition-property: transform, border-radius;
}
.cl-ib.animation_soter.ratio_2x1 .cl-ib-image {
top: -50%;
bottom: -50%;
-webkit-transform-origin: 90% 50%;
transform-origin: 90% 50%;
}
.cl-ib.animation_soter.ratio_3x2 .cl-ib-image {
top: -25%;
bottom: -25%;
-webkit-transform-origin: 90% 66%;
transform-origin: 90% 66%;
}
.cl-ib.animation_soter.ratio_4x3 .cl-ib-image {
top: -16.67%;
bottom: -16.67%;
-webkit-transform-origin: 90% 72%;
transform-origin: 90% 72%;
}
.cl-ib.animation_soter.ratio_1x1 .cl-ib-image {
-webkit-transform-origin: 90% 90%;
transform-origin: 90% 90%;
}
.cl-ib.animation_soter.ratio_3x4 .cl-ib-image {
left: -12.5%;
right: -12.5%;
-webkit-transform: scale(0.24);
transform: scale(0.24);
-webkit-transform-origin: 79.5% 92.5%;
transform-origin: 79.5% 92.5%;
}
.cl-ib.animation_soter.ratio_2x3 .cl-ib-image {
left: -25%;
right: -25%;
-webkit-transform: scale(0.2);
transform: scale(0.2);
-webkit-transform-origin: 73.5% 94%;
transform-origin: 73.5% 94%;
}
.cl-ib.animation_soter.ratio_1x2 .cl-ib-image {
left: -50%;
right: -50%;
-webkit-transform: scale(0.15);
transform: scale(0.15);
-webkit-transform-origin: 66.5% 95.7%;
transform-origin: 66.5% 95.7%;
}
.cl-ib.animation_soter .cl-ib-content {
z-index: 0;
right: 33%;
opacity: 1;
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_soter.hover .cl-ib-image {
border-radius: 0;
-webkit-transform: scale(1.01);
transform: scale(1.01);
}
.cl-ib.animation_soter.hover .cl-ib-content {
opacity: 0;
-webkit-transform: translate3d(-40%, -40%, 0) scale(2);
transform: translate3d(-40%, -40%, 0) scale(2);
}
.cl-ib.animation_phorcys .cl-ib-image {
bottom: -10%;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_phorcys .cl-ib-content {
top: auto;
padding-top: 20% !important;
}
.cl-ib.animation_phorcys .cl-ib-content:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(transparent 0%, rgba(30, 30, 30, 0.8) 100%) repeat-x rgba(30, 30, 30, 0);
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.cl-ib.animation_phorcys .cl-ib-content-h {
position: relative;
}
.cl-ib.animation_phorcys .cl-ib-title {
color: #fff !important;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.cl-ib.animation_phorcys .cl-ib-desc {
position: relative;
opacity: 0;
line-height: 0;
margin-top: 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
-webkit-transition-property: opacity, line-height, margin;
transition-property: opacity, line-height, margin;
}
.cl-ib.animation_phorcys.hover .cl-ib-image {
opacity: 0.15;
-webkit-transform: translateY(-8%);
transform: translateY(-8%);
}
.cl-ib.animation_phorcys.hover .cl-ib-content:before {
opacity: 0;
}
.cl-ib.animation_phorcys.hover .cl-ib-title {
color: inherit !important;
}
.cl-ib.animation_phorcys.hover .cl-ib-desc {
opacity: 0.75;
line-height: 1.5;
margin-top: 15px;
}
.cl-ib.animation_aidos .cl-ib-h {
background-color: inherit;
}
.cl-ib.animation_aidos .cl-ib-image {
background-color: inherit;
-webkit-transform: translateX(0) scale(1.01);
transform: translateX(0) scale(1.01);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_aidos .cl-ib-content {
right: auto;
width: 50%;
background-color: inherit;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_aidos .cl-ib-content:before {
content: '';
display: block;
position: absolute;
top: 50%;
right: 0;
height: 40px;
width: 40px;
margin: -20px 0 0 -20px;
background-color: inherit;
-webkit-transform: translateX(-10px) rotate(45deg);
transform: translateX(-10px) rotate(45deg);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_aidos .cl-ib-content-h {
position: relative;
}
.cl-ib.animation_aidos .cl-ib-title {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-delay: 100ms;
transition-delay: 100ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aidos .cl-ib-desc {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-delay: 200ms;
transition-delay: 200ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aidos.hover .cl-ib-image {
-webkit-transform: translateX(25%) scale(1.01);
transform: translateX(25%) scale(1.01);
}
.cl-ib.animation_aidos.hover .cl-ib-content {
-webkit-transform: translateX(0);
transform: translateX(0);
}
.cl-ib.animation_aidos.hover .cl-ib-content:before {
-webkit-transform: translateX(15px) rotate(45deg);
transform: translateX(15px) rotate(45deg);
}
.cl-ib.animation_aidos.hover .cl-ib-title {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.cl-ib.animation_aidos.hover .cl-ib-desc {
opacity: 0.75;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.cl-ib.animation_caeros .cl-ib-image {
background-color: inherit;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
}
.cl-ib.animation_caeros .cl-ib-image:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: inherit;
opacity: 0.25;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
}
.cl-ib.animation_caeros .cl-ib-title {
text-align: center;
-webkit-transform: translateY(30px);
transform: translateY(30px);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_caeros .cl-ib-desc {
opacity: 0;
text-align: center;
-webkit-transform: scale(0.7);
transform: scale(0.7);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_caeros.hover .cl-ib-image {
-webkit-transform: scale(1.3);
transform: scale(1.3);
-webkit-transition-duration: 7s;
transition-duration: 7s;
}
.cl-ib.animation_caeros.hover .cl-ib-image:after {
opacity: 0.75;
}
.cl-ib.animation_caeros.hover .cl-ib-title {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_caeros.hover .cl-ib-desc {
opacity: 0.75;
-webkit-transform: scale(1);
transform: scale(1);
}
.cl-ib.animation_hebe .cl-ib-image {
background-color: inherit;
-webkit-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.cl-ib.animation_hebe .cl-ib-image:before,
.cl-ib.animation_hebe .cl-ib-image:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: inherit;
opacity: 0.3;
-webkit-transform: translateY(100%);
transform: translateY(100%);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_hebe .cl-ib-image:after {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.cl-ib.animation_hebe .cl-ib-content {
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.cl-ib.animation_hebe .cl-ib-title {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
-webkit-transition-duration: 600ms;
transition-duration: 600ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_hebe .cl-ib-desc {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition-duration: 600ms;
transition-duration: 600ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_hebe.hover .cl-ib-image {
-webkit-transform: scale(1);
transform: scale(1);
}
.cl-ib.animation_hebe.hover .cl-ib-image:before,
.cl-ib.animation_hebe.hover .cl-ib-image:after {
opacity: 0.6;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_hebe.hover .cl-ib-title {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_hebe.hover .cl-ib-desc {
opacity: 0.75;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_aphelia .cl-ib-image {
opacity: 0.25;
-webkit-filter: grayscale(1);
filter: grayscale(1);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-filter, opacity;
transition-property: filter, opacity;
}
.cl-ib.animation_aphelia .cl-ib-content {
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.cl-ib.animation_aphelia .cl-ib-title {
opacity: 1;
-webkit-transform: translateY(0) scale(1);
transform: translateY(0) scale(1);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aphelia .cl-ib-desc {
opacity: 0.75;
-webkit-transform: translateY(0) scale(1);
transform: translateY(0) scale(1);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aphelia.hover .cl-ib-image {
opacity: 1;
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
.cl-ib.animation_aphelia.hover .cl-ib-title {
opacity: 0;
-webkit-transform: translateY(-40px) scale(0.8);
transform: translateY(-40px) scale(0.8);
}
.cl-ib.animation_aphelia.hover .cl-ib-desc {
opacity: 0;
-webkit-transform: translateY(40px) scale(0.8);
transform: translateY(40px) scale(0.8);
}
.cl-ib.animation_nike .cl-ib-image {
-webkit-filter: grayscale(1);
filter: grayscale(1);
-webkit-transform: translateY(25%);
transform: translateY(25%);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, -webkit-filter;
transition-property: transform, filter;
}
.cl-ib.animation_nike .cl-ib-h:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 50%;
background-color: inherit;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_nike .cl-ib-content {
opacity: 1;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_nike.hover .cl-ib-image {
-webkit-filter: grayscale(0);
filter: grayscale(0);
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_nike.hover .cl-ib-h:after {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.cl-ib.animation_nike.hover .cl-ib-content {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px);
}.cl-review + .cl-review {
margin-top: 30px;
}
.cl-review-quote-text q {
display: block;
font-style: normal;
line-height: 1.56;
}
.cl-review-author {
display: block;
line-height: 24px;
overflow: hidden;
padding-top: 15px;
}
.cl-review-author-avatar {
display: block;
float: left;
margin-right: 15px;
height: 60px;
width: 60px;
border-radius: 50%;
background-size: cover;
}
.cl-review-author-name {
vertical-align: top;
font-weight: 600;
margin-right: 8px;
}
.cl-review-author-occupation {
display: inline-block;
font-size: 0.9em;
opacity: 0.5;
}
.cl-review.with_avatar .cl-review-author-name {
display: block;
padding-top: 6px;
margin: 0;
}
.cl-review.quote_italic .cl-review-quote-text q {
font-style: italic;
}
.cl-review.layout_clean .cl-review-quote-text,
.cl-review.layout_clean .cl-review-author {
padding-left: 26px;
}
.cl-review.layout_clean .cl-review-quote-text q {
quotes: none;
position: relative;
}
.cl-review.layout_clean .cl-review-quote-text q:before {
content: '\f10d';
font-family: FontAwesome;
font-size: 18px;
position: absolute;
top: 0;
left: -25px;
padding-right: 3px;
opacity: 0.25;
}
.cl-review.layout_clean .cl-review-quote-text q:after {
content: '\f10e';
font-family: FontAwesome;
font-size: 18px;
margin-left: 7px;
padding-right: 3px;
opacity: 0.25;
}
.cl-review.layout_balloon .cl-review-quote-text {
position: relative;
padding: 23px 30px 25px;
background-color: #eee;
border-radius: 5px;
}
.cl-review.layout_balloon .cl-review-quote-text:after {
content: '';
display: block;
position: absolute;
left: 35px;
bottom: -10px;
width: 20px;
height: 20px;
z-index: -1;
background-color: inherit;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
}
.cl-review.layout_balloon .cl-review-quote-text[style*="color:"] a {
color: inherit;
}
.cl-review.layout_balloon .cl-review-author {
padding: 20px 0 0 30px;
}
.cl-review.layout_balloon.with_avatar .cl-review-author {
padding-left: 15px;
}
.cl-review.layout_framed {
padding: 30px;
background-color: #eee;
}
.cl-review.layout_framed[style*="color:"] a {
color: inherit;
}
.cl-review.layout_centered {
text-align: center;
}
.cl-review.layout_centered .cl-review-author {
text-align: center;
}
.cl-review.layout_centered .cl-review-author-avatar {
float: none;
width: 100px;
height: 100px;
margin: 0 auto;
}
.cl-review.layout_centered .cl-review-author-name,
.cl-review.layout_centered .cl-review-author-occupation {
display: block;
margin: 0;
}
.cl-review.layout_modern .cl-review-quote {
padding-left: 100px;
position: relative;
}
.cl-review.layout_modern .cl-review-icon {
position: absolute;
top: 0;
left: 0;
text-align: center;
line-height: 80px;
height: 80px;
width: 80px;
border-radius: 50%;
background-color: #eee;
}
.cl-review.layout_modern .cl-review-icon:before {
content: '\f10d';
font-size: 30px;
font-family: fontawesome;
}
.cl-review.layout_modern .cl-review-quote-text q {
quotes: none;
}
.cl-review.layout_modern .cl-review-author-avatar {
float: none;
position: absolute;
top: 0;
left: 0;
height: 80px;
width: 80px;
margin: 0;
}
.cl-review.layout_modern .cl-review-author-name {
display: inline;
margin-right: 8px;
padding: 0;
}
.cl-review.type_doc .cl-review-doc {
display: block;
cursor: zoom-in;
margin-bottom: 15px;
}
.cl-review.type_doc .cl-review-doc img {
display: block;
}
@media (min-width: 600px) {
.cl-review.type_doc .cl-review-doc {
float: left;
width: 47%;
margin-bottom: 0;
}
.cl-review.type_doc .cl-review-quote {
float: right;
width: 47%;
}
.cl-review.type_doc:after {
content: '';
display: table;
clear: both;
}
}
.cl-review.type_video .cl-review-video {
margin-bottom: 15px;
}
.cl-review.type_video .cl-review-video iframe,
.cl-review.type_video .cl-review-video video {
display: block;
height: auto !important;
}
@media (min-width: 600px) {
.cl-review.type_video .cl-review-video {
float: left;
width: 47%;
margin-bottom: 0;
}
.cl-review.type_video .cl-review-quote {
float: right;
width: 47%;
}
.cl-review.type_video:after {
content: '';
display: table;
clear: both;
}
}.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;right:0!important;margin-right:0!important}.upb_bg_overlay,.upb_bg_overlay_pattern{color:inherit;position:absolute;width:100%;height:100%!important;right:0;top:0}.upb_bg_overlay_pattern{background-attachment:fixed}.ult-vc-seperator{position:absolute;width:100%;height:0;right: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{right: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%;right: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;left:0;right: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:100% 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;left:0;right:0}.full-browser-size .upb-background-text,.video-browser-size .upb_video-text{margin:initial!important;position:absolute;bottom:auto;top:50%;left:0;right: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;left:0;right: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%);right: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-right:0!important;margin-top:-50px!important}.video-controls{position:absolute;bottom:10%;left: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{left: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)}