.cl-row {
    margin-left: 0;
    margin-right: 0;
    float: none;
    width: 100%;
    clear: both;
    position: relative;
}

.cl-row.disabled_row {
    display: none;
}

.cl-row.cl-parallax {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cl-row>.wrapper-layers {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    opacity: 0;
    left: 0;
    will-change: position;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cl-row .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.cl-row .arrow-top,
.cl-row .arrow-bottom {
    display: none;
}

.cl-row.cl-arrow-top .arrow-top {
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid black;
    position: absolute;
    top: -20px;
    z-index: 999;
    left: 50%;
    margin-left: -20px;
}

.cl-row.cl-arrow-bottom .arrow-bottom {
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #f00;
    position: absolute;
    bottom: -20px;
    z-index: 999;
    left: 50%;
    margin-left: -20px;
}

.cl_column {
    min-height: 40px;
    z-index: 99;
}

.cl_column.disabled_col {
    display: none;
}

.cl_column>.cl_col_wrapper>.overlay {
    z-index: 0 !important;
}

.cl_column .column_link {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cl_column>.cl_col_wrapper {
    background-repeat: no-repeat;
    background-position: left top;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    position: relative;
    height: 100%;
    width: 100%;
}

.cl_column.cl-border-rounded>.cl_col_wrapper {
    border-radius: 6px;
}

.cl_column>.cl_col_wrapper>.col-content {
    z-index: 9;
    position: relative;
    min-height: 40px;
    height: 100%;
}

.cl_column.align-h-middle {
    text-align: center;
}

.cl_column.align-h-right {
    text-align: right;
}

.cl_column.align-v-middle>.cl_col_wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.cl_row-equal_height>.cl_column.align-v-middle>.cl_col_wrapper {
    align-self: flex-start;
}

.cl_column.align-v-middle>.cl_col_wrapper>.col-content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.cl_column.align-v-bottom>.cl_col_wrapper {
    display: table;
    width: 100%;
}

.cl_column.align-v-bottom>.cl_col_wrapper>.col-content {
    display: table-cell;
    vertical-align: bottom
}

/* Column Effect */

.cl_column.effect-image_zoom {
    overflow: hidden;
}

.cl_column.effect-image_zoom>.cl_col_wrapper {
    overflow: hidden;
}

.cl_column.effect-image_zoom>.cl_col_wrapper>.bg-layer {
    -webkit-transition: background-color 0.3s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform .5s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: background-color 0.3s ease-in-out, opacity 0.5s ease-in-out, -moz-transform .5s cubic-bezier(.19, 1, .22, 1);
    transition: background-color 0.3s ease-in-out, opacity 0.5s ease-in-out, transform .5s cubic-bezier(.19, 1, .22, 1);
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
}

.cl_column.effect-image_zoom:hover>.cl_col_wrapper>.bg-layer {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* Column Anim Elements */

div.row>.cl_column.effect-anim_elements>.cl_col_wrapper>.col-content>.cl-element {
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out, -moz-transform 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out, -o-transform 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out, -moz-transform 0.25s ease-in-out, -o-transform 0.25s ease-in-out, transform 0.2s ease-in-out;
    /* Bottom-t-top */
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0) scale(1.0, 1.0);
    -moz-transform: translate3d(0, 20px, 0) scale(1.0, 1.0);
    -ms-transform: translate3d(0, 20px, 0) scale(1.0, 1.0);
    transform: translate3d(0, 20px, 0) scale(1.0, 1.0);
}

div.row>.cl_column.effect-anim_elements:hover>.cl_col_wrapper>.col-content>.cl-element {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

div.row>.cl_column.effect-anim_elements:hover>.cl_col_wrapper>.col-content>.cl-element:nth-child(1) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

div.row>.cl_column.effect-anim_elements:hover>.cl_col_wrapper>.col-content>.cl-element:nth-child(2) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

div.row>.cl_column.effect-anim_elements:hover>.cl_col_wrapper>.col-content>.cl-element:nth-child(3) {
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

div.row>.cl_column.effect-anim_elements:hover>.cl_col_wrapper>.col-content>.cl-element:nth-child(4) {
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

div.row>.cl_column.effect-anim_elements:hover>.cl_col_wrapper>.col-content>.cl-element:nth-child(5) {
    -webkit-transition-delay: 8000ms;
    -moz-transition-delay: 8000ms;
    -o-transition-delay: 8000ms;
    transition-delay: 8000ms;
}

.cl_column.effect-background_hover>.cl_col_wrapper>.bg-layer {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.cl_column.effect-background_hover:hover>.cl_col_wrapper>.bg-layer {
    opacity: 1;
}

.cl_column.extra_small-shadow>.cl_col_wrapper {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.cl_column.small-shadow>.cl_col_wrapper {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cl_column.medium-shadow>.cl_col_wrapper {
    box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.45);
    -webkit-box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.45);
}

.cl_column.large-shadow>.cl_col_wrapper {
    box-shadow: 0 60px 133px rgba(0, 0, 0, 0.14), 0 15px 73px rgba(0, 0, 0, 0.15)
}

.cl_column.extra_large-shadow>.cl_col_wrapper {
    box-shadow: 0px 70px 100px -39px rgba(0, 0, 0, 0.45);
}

.cl_column.hover_dark:hover>.cl_col_wrapper>.overlay {
    background-color: rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
}

.cl_column.hover_light:hover>.cl_col_wrapper>.overlay {
    background-color: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.cl_column.hover_soft_dark:hover>.cl_col_wrapper>.overlay {
    background-color: rgba(0, 0, 0, 0.05) !important;
    opacity: 1 !important;
}

.cl_column_inner.hover_dark:hover>.wrapper>.overlay {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.cl_column_inner.hover_light:hover>.wrapper>.overlay {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.cl_column_inner.hover_soft_dark:hover>.wrapper>.overlay {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.cl_column>.cl_col_wrapper>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.cl_column_inner>.wrapper>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.cl_column_inner.disabled_col {
    display: none;
}

.cl_column_inner.align-h-middle {
    text-align: center;
}

.cl_column_inner.align-h-right {
    text-align: right;
}

.cl_column_inner.align-v-middle>.wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.cl_column_inner.align-v-middle>.wrapper>.col-content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.cl_column_inner.align-v-bottom>.wrapper {
    display: table;
    width: 100%;
}

.cl_column_inner.align-v-bottom>.wrapper>.col-content {
    display: table-cell;
    vertical-align: bottom
}

.row.cl_row-fullheight {
    min-height: 100vh
}

@media (min-width:768px) {
    .row.cl_row-fullheight .cl_column-fullheight {
        height: 100vh;
    }
    .row.cl_row-fullheight .cl_column-fullheight .cl_column_inner {
        height: 50vh;
    }
}

@media (max-width: 767px) {
    .cl-element.cl_slider .row.cl_row-flex:not(.cl-col-tablet-full) {
        box-sizing: border-box;
        display: flex;
        -webkit-flex: 1 1 auto;
        display: -webkit-flex;
        display: -ms-flexbox;
    }
    .row.cl_row-fullheight .cl_column-fullheight,
    .row.cl_row-fullheight .cl_column-fullheight .cl_col_wrapper {
        min-height: 100vh;
    }
    .row.cl_row-fullheight .cl_column-fullheight .cl_column_inner,
    .row.cl_row-fullheight .cl_column-fullheight .cl_column_inner .wrapper {
        min-height: 50vh;
    }
}

@media (min-width: 768px) {
    .cl-element .row.cl_row-flex:not(.cl-col-tablet-full) {
        box-sizing: border-box;
        display: flex;
        -webkit-flex: 1 1 auto;
        display: -webkit-flex;
        display: -ms-flexbox;
    }
}

@media (min-width:992px) {
    .row.cl_row-flex.cl-col-tablet-full {
        box-sizing: border-box;
        display: flex;
        -webkit-flex: 1 1 auto;
        display: -webkit-flex;
        display: -ms-flexbox;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .cl-col-tablet-full>.cl_column {
        width: 100%;
        margin-top: 20px;
    }
    .container-content.container-fluid>.cl-col-tablet-full>.cl_column {
        margin-top: 0;
    }
    .cl-col-tablet-full>.cl_column:first-child {
        margin-top: 0px;
    }
    .cl-col-tablet-half>.cl_column {
        width: 50%;
    }
    .cl-col-tablet-one_third>.cl_column {
        width: 33.333333%;
    }
}

.row.cl_row-flex>.cl_element-container,
.row.cl_row-flex>.cl_cl_column {
    display: flex
}

@media (max-width:767px) {
    .row>.cl_column {
        width: 100%;
    }
}

.row.cl_row-flex.cl_row-fullheight>.cl_cl_column>.cl_element-container {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row.cl_row-cp-stretch {
    -webkit-align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-items: stretch
}

.row.cl_row-cp-top {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-items: flex-start
}

.row.cl_row-cp-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-line-pack: end;
    align-items: flex-end
}

.row.cl_row-cp-middle {
    -webkit-align-items: center;
    -ms-flex-line-pack: center;
    align-items: center
}

@media (max-width:767px) {
    .row.cl_row-cp-middle:not(.cl-col-tablet-full) {
        box-sizing: border-box;
        display: flex;
        -webkit-flex: 1 1 auto;
        display: -webkit-flex;
        display: -ms-flexbox;
    }
}

.row.cl_row-equal_height>.cl_cl_column,
.row.cl_row-equal_height>.cl_column {
    -webkit-align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-items: stretch;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.row>.cl_column.align-v-middle {
    -webkit-align-items: center;
    -ms-flex-line-pack: center;
    align-items: center;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.row.cl_row-equal_height>.cl_column.align-v-middle {
    -webkit-align-items: center;
    -ms-flex-line-pack: center;
    align-items: center;
}

.cl-row {
    background-size: cover !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    background-repeat: no-repeat;
    background-position: left top;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
}

.cl-row .row.with_padd {
    padding-top: 35px;
    padding-bottom: 35px;
}

.cl-row .row.no_padd {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cl-row .row.cl_row-flex {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cl-row>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.light-text {
    color: #fff;
}

.video-section {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.video-section video {
    top: 0px;
    left: 0px;
    position: relative;
    -webkit-backface-visibility: hidden !important;
    min-width: 100%;
    min-height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.video-section iframe {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    border: none;
}

.video-section.social-video {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
    z-index: 2;
    -webkit-transform-style: preserve-3d;
}

.cl-video-centered {
    display: inline-block;
    padding: 56.25% 0 0;
    margin: 0;
    width: 100%;
    height: 0;
    position: relative;
}

.cl-video-centered iframe {
    position: absolute;
}

.container-content {
    z-index: 999;
    position: relative;
}

/*
----------------------------------------------------------

#Animations

----------------------------------------------------------*/

html:not(.no-cssanimations) .animate_on_visible:not(.reveal-right) {
    opacity: 0;
    -webkit-animation-duration: 0.6s;
    -moz-animation-duration: 0.6s;
    -o-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).top-t-bottom {
    -webkit-animation-name: anim_ttb;
    -moz-animation-name: anim_ttb;
    -o-animation-name: anim_ttb;
    animation-name: anim_ttb;
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).bottom-t-top {
    -webkit-animation-name: anim_btt;
    -moz-animation-name: anim_btt;
    -o-animation-name: anim_btt;
    animation-name: anim_btt;
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).left-t-right {
    -webkit-animation-name: anim_ltr;
    -moz-animation-name: anim_ltr;
    -o-animation-name: anim_ltr;
    animation-name: anim_ltr;
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).right-t-left {
    -webkit-animation-name: anim_rtl;
    -moz-animation-name: anim_rtl;
    -o-animation-name: anim_rtl;
    animation-name: anim_rtl;
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).zoom-in {
    -webkit-animation-name: zoom-in;
    -moz-animation-name: zoom-in;
    -o-animation-name: zoom-in;
    animation-name: zoom-in;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).zoom-out {
    -webkit-animation-name: zoom-out;
    -moz-animation-name: zoom-out;
    -o-animation-name: zoom-out;
    animation-name: zoom-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.zoom-reverse {
    -webkit-animation-name: zoom-reverse;
    -moz-animation-name: zoom-reverse;
    -o-animation-name: zoom-reverse;
    animation-name: zoom-reverse;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).alpha-anim {
    -webkit-animation-name: alpha-in;
    -moz-animation-name: alpha-in;
    -o-animation-name: alpha-in;
    animation-name: alpha-in;
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation:not(.zoom-reverse).flip-in {
    -webkit-animation-name: flip-in;
    -moz-animation-name: flip-in;
    -o-animation-name: flip-in;
    animation-name: flip-in;
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-right {
    overflow: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

html:not(.no-cssanimations) .animate_on_visible.reveal-right.start_animation {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

html:not(.no-cssanimations) .animate_on_visible.reveal-right .cl_col_wrapper {
    overflow: hidden;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-right .bg-layer {
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    -webkit-transform: translateX(90%);
    transform: translateX(90%);
    overflow: hidden;
    opacity: 0;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation.reveal-right .bg-layer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
}

html:not(.no-cssanimations) .animate_on_visible.reveal-left {
    overflow: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-left.start_animation {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

html:not(.no-cssanimations) .animate_on_visible.reveal-left .cl_col_wrapper {
    overflow: hidden;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-left .bg-layer {
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%);
    overflow: hidden;
    opacity: 0;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation.reveal-left .bg-layer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
}

html:not(.no-cssanimations) .animate_on_visible.reveal-top {
    overflow: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-top.start_animation {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

html:not(.no-cssanimations) .animate_on_visible.reveal-top .cl_col_wrapper {
    overflow: hidden;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-top .bg-layer,
html:not(.no-cssanimations) .animate_on_visible.reveal-top .overlay {
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
    overflow: hidden;
    opacity: 0;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation.reveal-top .bg-layer,
html:not(.no-cssanimations) .animate_on_visible.start_animation.reveal-top .overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

html:not(.no-cssanimations) .animate_on_visible.reveal-bottom {
    overflow: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    opacity: 1;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-bottom.start_animation {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

html:not(.no-cssanimations) .animate_on_visible.reveal-bottom .cl_col_wrapper {
    overflow: hidden;
}

html:not(.no-cssanimations) .animate_on_visible.reveal-bottom .bg-layer {
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    transition-timing-function: cubic-bezier(0.778, 0.128, 0.15, 0.84);
    -webkit-transform: translateY(90%);
    transform: translateY(90%);
    overflow: hidden;
    opacity: 0;
}

html:not(.no-cssanimations) .animate_on_visible.start_animation.reveal-bottom .bg-layer {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.cl_row-flex {
    -webkit-perspective: 2000px;
    perspective: 2000px;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="100"] {
    -webkit-animation-duration: 0.1s;
    -moz-animation-duration: 0.1s;
    -o-animation-duration: 0.1s;
    animation-duration: 0.1s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="200"] {
    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    -o-animation-duration: 0.2s;
    animation-duration: 0.2s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="300"] {
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="500"] {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="600"] {
    -webkit-animation-duration: 0.6s;
    -moz-animation-duration: 0.6s;
    -o-animation-duration: 0.6s;
    animation-duration: 0.6s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="700"] {
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -o-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="800"] {
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    animation-duration: 0.8s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="900"] {
    -webkit-animation-duration: 0.9s;
    -moz-animation-duration: 0.9s;
    -o-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

html:not(.no-cssanimations) .animate_on_visible[data-speed="1000"] {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

/* Top to bottom keyframes */

@-webkit-keyframes anim_ttb {
    0% {
        -webkit-transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-moz-keyframes anim_ttb {
    0% {
        -moz-transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100% {
        -moz-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-o-keyframes anim_ttb {
    0% {
        -o-transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100% {
        -o-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes anim_ttb {
    0% {
        transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Bottom to top keyframes */

@-webkit-keyframes anim_btt {
    0% {
        -webkit-transform: translate3d(0, 100px, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-moz-keyframes anim_btt {
    0% {
        -moz-transform: translate3d(0, 100px, 0);
        opacity: 0;
    }
    100% {
        -moz-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-o-keyframes anim_btt {
    0% {
        -o-transform: translate3d(0, 100px, 0);
        opacity: 0;
    }
    100% {
        -o-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes anim_btt {
    0% {
        transform: translate3d(0, 100px, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Left to right keyframes */

@-webkit-keyframes anim_ltr {
    0% {
        -webkit-transform: translate3d(-100px, 0, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-moz-keyframes anim_ltr {
    0% {
        -moz-transform: translate3d(-100px, 0, 0);
        opacity: 0;
    }
    100% {
        -moz-transform: translate3d(0, 0);
        opacity: 1;
    }
}

@-o-keyframes anim_ltr {
    0% {
        -o-transform: translate3d(-100px, 0);
        opacity: 0;
    }
    100% {
        -o-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes anim_ltr {
    0% {
        transform: translate3d(-100px, 0, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Right to left keyframes */

@-webkit-keyframes anim_rtl {
    0% {
        -webkit-transform: translate3d(100px, 0, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-moz-keyframes anim_rtl {
    0% {
        -moz-transform: translate3d(100px, 0, 0);
        opacity: 0;
    }
    100% {
        -moz-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-o-keyframes anim_rtl {
    0% {
        -o-transform: translate3d(100px, 0, 0);
        opacity: 0;
    }
    100% {
        -o-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes anim_rtl {
    0% {
        transform: translate3d(100px, 0, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Appear from center in keyframes */

@-webkit-keyframes zoom-in {
    0% {
        -webkit-transform: scale(0.5);
        opacity: 0.1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes zoom-in {
    0% {
        -moz-transform: scale(0.5);
        opacity: 0.1;
    }
    100% {
        -moz-transform: scale(1);
        opacity: 1;
    }
}

@-o-keyframes zoom-in {
    0% {
        -o-transform: scale(0.5);
        opacity: 0.1;
    }
    100% {
        -o-transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(0.5);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Appear from center out keyframes */

@-webkit-keyframes zoom-out {
    0% {
        -webkit-transform: scale(1.5);
        opacity: 0.1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes zoom-out {
    0% {
        -moz-transform: scale(1.5);
        opacity: 0.1;
    }
    100% {
        -moz-transform: scale(1);
        opacity: 1;
    }
}

@-o-keyframes zoom-out {
    0% {
        -o-transform: scale(1.5);
        opacity: 0.1;
    }
    100% {
        -o-transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-out {
    0% {
        transform: scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Disappear from center keyframes */

@-webkit-keyframes zoom-reverse {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.5);
        opacity: 0;
    }
}

@-moz-keyframes zoom-reverse {
    0% {
        -moz-transform: scale(1);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(0.5);
        opacity: 0;
    }
}

@-o-keyframes zoom-reverse {
    0% {
        -o-transform: scale(1);
        opacity: 1;
    }
    100% {
        -o-transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes zoom-reverse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

/* Alpha keyframes */

@-webkit-keyframes alpha-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes alpha-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes alpha-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes alpha-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Flip-in keyframes */

@-webkit-keyframes flip-in {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(-45deg) translateY(120px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translate(0px, 0px);
        opacity: 1;
    }
}

@-moz-keyframes flip-in {
    0% {
        opacity: 0;
        -moz-webkit-transform: rotateX(-45deg) translateY(120px);
    }
    100% {
        -moz-transform: rotateX(0deg) translate(0px, 0px);
        opacity: 1;
    }
}

@-o-keyframes flip-in {
    0% {
        opacity: 0;
        -o-transform: rotateX(-45deg) translateY(120px);
    }
    100% {
        -o-transform: rotateX(0deg) translate(0px, 0px);
        opacity: 1;
    }
}

@keyframes flip-in {
    0% {
        opacity: 0;
        transform: rotateX(-45deg) translateY(120px);
    }
    100% {
        transform: rotateX(0deg) translate(0px, 0px);
        opacity: 1;
    }
}

/* reveal Right */

@-webkit-keyframes reveal-right {
    0% {
        -webkit-transform: translateX(-90%);
    }
    100% {
        -webkit-transform: translate(0px, 0px);
    }
}

@-moz-keyframes reveal-right {
    0% {
        -moz-transform: translateX(-90%);
    }
    100% {
        -moz-transform: translate(0px, 0px);
    }
}

@-o-keyframes reveal-right {
    0% {
        -o-transform: translateX(-90%);
    }
    100% {
        -o-transform: translate(0px, 0px);
    }
}

@keyframes reveal-right {
    0% {
        transform: translateX(-90%);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

/* End Animations */

/* CL preset Gradients */

.cl-gradient-azure_pop {
    background: #ef32d9;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #ef32d9, #89fffd);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #ef32d9, #89fffd);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-love_couple {
    background: #3a6186;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #3a6186, #89253e);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #3a6186, #89253e);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-disco {
    background: #4ECDC4;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #4ECDC4, #556270);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #4ECDC4, #556270);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-limeade {
    background: #A1FFCE;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #A1FFCE, #FAFFD1);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #A1FFCE, #FAFFD1);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-dania {
    background: #BE93C5;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #BE93C5, #7BC6CC);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #BE93C5, #7BC6CC);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-shades_of_grey {
    background: #bdc3c7;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #bdc3c7, #2c3e50);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #bdc3c7, #2c3e50);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-dusk {
    background: #ffd89b;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #ffd89b, #19547b);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #ffd89b, #19547b);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-delhi {
    background: #808080;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #808080, #3fada8);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #808080, #3fada8);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-sun_horizon {
    background: #fceabb;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #fceabb, #f8b500);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #fceabb, #f8b500);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-blood_red {
    background: #f85032;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #f85032, #e73827);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #f85032, #e73827);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-sherbert {
    background: #f79d00;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #f79d00, #64f38c);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #f79d00, #64f38c);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-firewatch {
    background: #cb2d3e;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #cb2d3e, #ef473a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #cb2d3e, #ef473a);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-frost {
    background: #000428;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #000428, #004e92);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #000428, #004e92);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-mauve {
    background: #42275a;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #42275a, #734b6d);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #42275a, #734b6d);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-deep_sea {
    background: #2C3E50;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #2C3E50, #4CA1AF);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #2C3E50, #4CA1AF);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-solid_vault {
    background: #3a7bd5;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #3a7bd5, #3a6073);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #3a7bd5, #3a6073);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-deep_space {
    background: #000000;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #000000, #434343);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #000000, #434343);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.cl-gradient-suzy {
    background: #834d9b;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #834d9b, #d04ed6);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #834d9b, #d04ed6);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* CL preset Gradients */

/* Elements */

.cl_column>.cl_col_wrapper>.col-content>.cl-element:first-child {
    margin-top: 0px !important;
}

/*  CL Text  */

.cl-text {
    min-height: 24px
}

.header-el .cl-text {
    min-height: 20px;
}

.cl-text p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.cl-text p:first-child {
    margin-top: 0 !important
}

.cl-text p:last-child {
    margin-bottom: 0 !important;
}

.cl_column_inner {
    min-height: 40px;
}

.cl_column_inner>.wrapper {
    background-repeat: no-repeat;
    background-position: left top;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    position: relative;
    height: 100%;
    width: 100%;
}

.cl_column_inner>.wrapper>.col-content {
    z-index: 9;
    position: relative;
    min-height: 40px;
    height: 100%;
}

.cl_column_inner>.wrapper>.col-content>.cl-element:first-child {
    margin-top: 0 !important;
}

.cl_column_inner.cl-inline-column>.wrapper>.col-content>.cl-element,
.cl_column.cl-inline-column>.cl_col_wrapper>.col-content>.cl-element {
    display: inline-block;
    width: auto;
}

@media (max-width:991px) {
    .cl_column_inner.cl-inline-column>.wrapper>.col-content>.cl-element {
        display: block;
        margin-left: 0 !important;
    }
    .cl_column_inner.cl-inline-column>.wrapper>.col-content>.cl-element.cl-btn-div {
        margin-top: 0 !important;
    }
}

.cl_column_inner>.wrapper {}

.cl_column.cl-flex-elements>.cl_col_wrapper>.col-content {
    display: flex;
}

.cl_column_inner>.wrapper.extra_small-shadow {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.cl_column_inner>.wrapper.small-shadow {
    box-shadow: 0 9px 45px rgba(0, 0, 0, 0.09), 0 12px 44px rgba(0, 0, 0, 0.09)
}

.cl_column_inner>.wrapper.medium-shadow {
    box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.45);
    -webkit-box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.45);
}

.cl_column_inner>.wrapper.large-shadow {
    box-shadow: 0 60px 133px rgba(0, 0, 0, 0.14), 0 15px 73px rgba(0, 0, 0, 0.15)
}

.cl_column_inner>.wrapper.extra_large-shadow {
    box-shadow: 0px 70px 100px -39px rgba(0, 0, 0, 0.45);
}

/* End CL Text  */

/* Page Header */

.cl_page_header {
    min-height: 40px;
    width: 100%;
    border-left-width: 0;
    border-style: solid;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-color: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 9;
}

.cl_page_header.hide-title h1 {
    display: none !important;
}

.cl_page_header.simple {
    display: flex;
    align-items: center;
}

.cl_page_header .cl-default-page-header {
    width: 100%;
    margin-bottom: 0 !important;
}

.cl_page_header.cl-parallax {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cl_page_header .wrapper-layers {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    will-change: position;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cl_page_header.modern .wrapper-layers {
    opacity: 0;
}

.cl_page_header .wrapper-content {
    width: 100%;
}

.cl_page_header .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.cl_page_header.border_top {
    border-top-width: 1px;
}

.cl_page_header.border_bottom {
    border-bottom-width: 1px;
}

.cl_page_header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cl_page_header.modern.modern-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl_page_header.modern.modern-center .title_part h1,
.cl_page_header.modern.modern-center .title_part .subtitle {
    text-align: center;
    width: 100%;
    display: block;
}

.cl_page_header.modern.modern-left_center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.cl_page_header.modern.modern-right_center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.cl_page_header.modern.modern-right_center .title_part h1,
.cl_page_header.modern.modern-right_center .title_part .subtitle {
    text-align: right;
    width: 100%;
    display: block;
}

.cl_page_header.modern.modern-left_bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.cl_page_header.modern.modern-center_bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.cl_page_header.modern.modern-center_bottom .title_part h1,
.cl_page_header.modern.modern-center_bottom .title_part .subtitle {
    text-align: center;
    width: 100%;
    display: block;
}

.cl_page_header.modern.modern-right_bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
}

.cl_page_header.modern.modern-right_bottom .title_part h1,
.cl_page_header.modern.modern-right_bottom .title_part .subtitle {
    text-align: right;
    width: 100%;
    display: block;
}

/* Gradient Shadow */

.cl_page_header.modern-effect-gradient_shadow .effect-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -200px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 100%) !important;
}

@media (max-width:569px) {
    .cl_page_header {
        max-height: 70vw;
    }
    .cl_page_header h1 {
        font-size: 24px !important;
        line-height: 1 !important;
    }
    .cl_page_header .subtitle {
        padding-top: 5px;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width:767px) {
    .cl_page_header {
        padding-top: 0px !important
    }
}

/* End Page Header */

/* Service Element */

.cl_service {
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    border-style: solid;
}

/* effects hover */

.cl_service.cl-hover-wrapper_accent_color .wrapper-form,
.cl_service.cl-hover-wrapper_accent_color .wrapper-form i {
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.cl_service.cl-hover-wrapper_accent_color:hover .wrapper-form i {
    color: #fff !important;
}

.cl_service div.content p {
    margin: 0;
}

.cl_service.media_aside {
    display: table;
}

.cl_service.type_text .icon_wrapper {
    display: none;
}

.cl_service.align_left * {
    text-align: left;
}

.cl_service.align_center * {
    text-align: center;
}

.cl_service.align_center i {
    line-height: 1.5;
}

.cl_service.align_right * {
    text-align: right;
}

.cl_service.align_right.media_aside {
    direction: rtl;
}

.cl_service.media_aside .icon_wrapper {
    display: table-cell;
    vertical-align: top;
}

.cl_service.media_aside .box-content {
    display: table-cell;
    vertical-align: top
}

.cl_service.media_aside.align_left .icon_wrapper {
    padding-right: 20px;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-top: 6px;
}

.cl_service.media_aside.align_right .icon_wrapper {
    padding-left: 20px;
    padding-bottom: 0px !important;
    padding-right: 0px !important;
}

.cl_service.media_top .icon_wrapper {
    padding-bottom: 20px;
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.cl_service .icon_wrapper:not(.wrapper_none) .wrapper-form {
    position: relative;
    display: inline-block;
}

.cl_service.type_svg .icon_wrapper .wrapper-form {
    position: relative;
    display: inline-block;
}

.cl_service.media_top.align_center .icon_wrapper .wrapper-form {
    margin: 0 auto;
}

.cl_service .icon_wrapper.wrapper_circle .wrapper-form {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-width: 1px;
    border-style: solid;
}

.cl_service .icon_wrapper.wrapper_square .wrapper-form {
    border-width: 1px;
    border-style: solid;
}

.cl_service .icon_wrapper:not(.wrapper_none) .wrapper-form i {
    text-align: center;
    width: 100%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.cl_service .icon_wrapper.with-shadow .wrapper-form {
    -webkit-box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
}

.cl_service .icon_wrapper:not(.wrapper_none) .wrapper-form i:before {}

.cl_service.type_svg:not(.align_center) .icon_wrapper:not(.wrapper_none) .wrapper-form svg {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
}

.cl_service .icon_wrapper i:before {
    width: auto !important;
    min-width: 1em;
}

.cl_service .subtitle {
    display: block;
}

.cl_service .subtitle.default {
    color: #a7a7a7;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.cl_service .subtitle p {
    padding: 0px;
    margin: 0px;
}

/* Service List */

.cl_column.services_list .cl_service.media_aside.align_left .icon_wrapper .wrapper-form {
    position: relative;
}

.cl_column.services_list .cl_service.media_aside.align_left .icon_wrapper .wrapper-form:after {
    content: "";
    height: 100px;
    width: 1px;
    background: #ebebeb;
    position: absolute;
    left: 50%;
    z-index: -1;
}

.cl_column.services_list .col-content>.cl_service.media_aside.align_left:last-child .icon_wrapper .wrapper-form:after,
.cl_column.services_list .col-content>.cl_cl_service:last-child .cl_service.media_aside.align_left .icon_wrapper .wrapper-form:after {
    background: rgba(0, 0, 0, 0.0);
    height: 0;
}

/* end Service List */

.cl_service.type_custom .icon_wrapper .wrapper-form {
    overflow: hidden;
}

/* Share Icons */

.cl_share {
    display: inline-block;
}

.cl_share.round {
    border: 1px solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    height: 100%;
    text-align: center;
}

.cl_share.square {
    border: 1px solid;
}

.cl_share>a>i {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    text-align: center;
}

/* Social Icons */

.cl_socialicon {
    display: inline-block;
    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.cl_socialicon a {
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.cl_socialicon.round {
    border: 1px solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    height: 100%;
    text-align: center;
}

.cl_socialicon.square {
    border: 1px solid;
}

.cl_socialicon>a>i {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    text-align: center;
}

/*path, line, polyline {
    stroke: #fff;
    stroke-width: 1px;
  }
*/

.icon-svg path {
    fill: transparent
}

/* End Service Element */

/* Codeless Slider */

.cl_slider {
    min-height: 400px;
}

.cl_slider .cl-slide>.cl-row {
    height: 100%;
}

.cl_slider .container-content {
    height: 100%;
}

.cl_slider .cl_row-flex {
    height: 100% !important;
    min-height: auto !important;
}

.cl_slider .swiper-slide-active .container-content {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform .35s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out, -moz-transform .35s ease-in-out;
    transition: opacity 0.4s ease-in-out, transform .35s ease-in-out;
}

.cl_slider.cl-animateScroll .swiper-slide-active .container-content {
    transform: translateY(70px);
    -webkit-transform: translateY(70px);
    -moz-transform: translateY(70px);
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    background-size: 18px;
}

.cl_slider[data-navigation-style="rounded_left_bottom"] .swiper-button-white {
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.cl_slider[data-navigation-style="rounded_left_bottom"] .swiper-button-prev {
    left: 40px;
    bottom: 40px;
    top: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: 12px;
}

.cl_slider[data-navigation-style="rounded_left_bottom"] .swiper-button-next {
    left: 100px;
    bottom: 40px;
    top: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: 12px;
}

.cl_slider>.swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.cl_slider>.swiper-pagination.cl-dark-pagination .swiper-pagination-bullet {
    background: #565656;
}

.cl_slider[data-navigation-style="modern"] .swiper-button-prev {
    background-image: url('../img/modern-left.png') !important;
    width: 24px;
    height: 11px;
    background-size: contain;
    left: 45px;
}

.cl_slider[data-navigation-style="modern"] .swiper-button-prev:after {
    content: "0" attr(data-prev-slide) "/0" attr(data-total-slides);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    right: -50px;
    position: absolute;
    top: -9px;
    transform: translateX(-20px);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.cl_slider[data-navigation-style="modern"] .swiper-button-next {
    background-image: url('../img/modern-right.png') !important;
    width: 24px;
    height: 11px;
    background-size: contain;
    right: 45px;
}

.cl_slider[data-navigation-style="modern"] .swiper-button-next:after {
    content: "0" attr(data-next-slide) "/0" attr(data-total-slides);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    left: -50px;
    position: absolute;
    top: -9px;
    transform: translateX(-20px);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.cl_slider[data-navigation-style="modern"] .cl-slider-nav:not(.swiper-button-disabled):hover:after {
    opacity: 1;
    transform: translateX(0);
}

.cl_slider[data-pagination-style="lines"] .swiper-pagination-bullet {
    width: 3px;
    height: 12px;
    border-radius: 0;
    -webkit-transition: background-color 0.2s ease-in-out, height 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out, height 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, height 0.2s ease-in-out;
}

.cl_slider[data-pagination-style="lines"] .swiper-pagination-bullet-active {
    height: 20px;
}

@media (max-width:767px) {
    .cl_slider {
        max-height: 60vh !important;
    }
    .cl_slider .cl-text {
        font-size: 16px !important;
        line-height: 28px !important;
    }
}

@media (max-width:882px) {
    .cl_slider .cl-row .container-content>.row {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width:991px) {
    .cl_slider {
        max-height: 70vh;
    }
    .cl_slider .cl-row .cl_row-flex {
        max-height: 70vh;
        min-height: inherit !important;
    }
    .cl_slider-force-fullheight {
        max-height: 100vh !important;
        height: 100vh !important;
    }
}

.cl_slider[data-effect="interleave"] .swiper-slide {
    overflow: hidden;
}

.cl_slider[data-effect="slide"][data-direction="vertical"] .swiper-slide {
    overflow: hidden;
}

.cl_slider[data-direction="vertical"] .cl-slider-nav {
    display: none;
}

@media (max-width:991px) {
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] {
        height: auto !important;
        max-height: none !important;
    }
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] .cl-row .cl_row-flex {
        max-height: none !important;
        height: auto !important;
    }
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] .cl-slide {
        height: auto !important;
    }
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] .cl-slide>.cl-row {
        height: auto !important;
    }
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] .cl-slider-pagination {
        display: none;
    }
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] .swiper-wrapper,
    .cl_slider-responsive-plain.cl_slider[data-direction="vertical"] .swiper-wrapper .swiper-slide,
    .cl_slider.cl_slider-responsive-plain[data-direction="vertical"] .swiper-wrapper .swiper-slide .cl-row {
        transform: translate3d(0px, 0, 0px) !important;
    }
}

.cl_slider[data-anchors="1"] .swiper-pagination-bullet {
    position: relative;
}

.cl_slider[data-anchors="1"][data-direction="vertical"] .swiper-pagination-bullet:after {
    content: attr(data-label);
    position: absolute;
    right: 20px;
    top: -8px;
    min-width: 120px;
    text-align: center;
    color: #fff;
    background: #222;
    padding: 2px 8px;
    border-radius: 20px;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform .25s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, -moz-transform .25s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform .25s ease-in-out;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
}

.cl_slider[data-anchors="1"][data-direction="vertical"] .swiper-pagination-bullet:hover:after {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
}

/* End Codeless Slider */

/* Custom Heading */

.cl-custom-heading {
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
}

.cl-custom-heading p {
    margin: 0;
}

.cl-custom-heading span {
    display: block;
}

.cl-custom-heading span span {
    display: inline;
}

.cl-custom-heading.display-inline {
    display: inline-block !important;
    padding: 0px 6px;
}

.parallel-divider.wrapper-heading {
    display: flex;
    align-items: center;
}

.parallel-divider.wrapper-heading .divider {
    height: 1px;
    width: 68%;
    margin-left: 18px;
    top: 50%;
    display: inline-block;
}

.align-h-middle .parallel-divider.wrapper-heading .divider {
    height: 1px;
    width: 100%;
    top: 50%;
    position: absolute;
    left: 0;
    margin-left: 0;
}

.align-h-middle .parallel-divider.wrapper-heading {
    text-align: center;
    position: relative;
}

.align-h-middle .parallel-divider.wrapper-heading .cl-custom-heading {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 999;
    padding-left: 20px;
    padding-right: 20px;
}

.with-icon.wrapper-heading {
    display: flex;
}

.with-icon.wrapper-heading i {
    padding-right: 15px;
    font-size: 24px;
    line-height: 32px;
}

/* Testimonial */

.testimonial-entries .testimonial_item {
    padding: 20px 40px;
    text-align: center;
    padding-bottom: 0px;
}

.testimonial-entries .testimonial_item .content {
    padding-bottom: 20px;
}

.testimonial-entries.style-simple_photo_circle .testimonial_item img {
    width: 120px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.testimonial-entries.style-boxed_small .testimonial_item {
    padding: 0px !important;
}

.testimonial-entries.style-boxed_small .testimonial_item .content {
    font-size: 14px;
    line-height: 28px;
    padding-bottom: 20px;
    font-weight: 400;
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 16px 22px;
    font-style: italic;
    position: relative;
}

.testimonial-entries.style-boxed_small .testimonial_item .content:before,
.testimonial-entries.style-boxed_small .testimonial_item .content:after {
    position: absolute;
    left: 20px;
    bottom: -19px;
    display: block;
    width: 0;
    height: 0;
    border-width: 0 25px 20px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #fff;
    content: ' ';
}

.testimonial-entries.style-boxed_small .testimonial_item .content:before {
    left: 19px;
    bottom: -21px;
    border-left-color: #e1e1e1;
}

.testimonial-entries.style-boxed_small .testimonial_item .title {
    margin-top: 30px;
    text-align: left;
}

.testimonial-entries.style-boxed_small .testimonial_item .title img {
    width: 48px;
    border-radius: 50%;
    display: inline-block;
}

.testimonial-entries.style-left_aligned_photo .testimonial_item {
    text-align: left;
    padding: 0 !important;
}

.testimonial-entries.style-left_aligned_photo .img-title {
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}

.testimonial-entries.style-left_aligned_photo img {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
}

.testimonial-entries.style-left_aligned_photo .title {
    padding-left: 20px;
}

.testimonial-entries.style-left_aligned_photo .owl-prev {
    bottom: 0;
    left: 0;
    top: auto !important;
}

.testimonial-entries.style-left_aligned_photo .owl-next {
    bottom: 0;
    left: 56px;
    top: auto !important;
}

.testimonial-entries.style-left_aligned_photo[data-carousel-nav="1"] .testimonial_item .content {
    padding-bottom: 85px;
}

.testimonial-entries.style-simple .testimonial-icon {
    background: url(../img/testimonial_icon.png) no-repeat center;
    display: block;
    height: 40px;
    margin-bottom: 30px;
}

.testimonial-entries.style-simple .content {
    padding-bottom: 20px;
    font-size: 18px;
    font-style: italic;
}

.testimonial-entries.style-simple .title {
    margin-top: 10px;
}

.testimonial-entries.style-simple .name {
    font-size: 18px;
}

.testimonial-entries.style-simple .position {
    font-size: 10px;
    line-height: 18px;
    text-transform: uppercase;
    display: block;
}

.testimonial-entries.style-simple .owl-dots {
    margin-top: 40px;
}

.testimonial-entries .owl-dot {
    padding: 1px;
    border: 1px solid #fff;
    margin: 0 8px;
}

.testimonial-entries .owl-dot span {
    border-radius: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    width: 6px !important;
    height: 6px !important;
}

.testimonial-entries .owl-dot:hover span,
.testimonial-entries .owl-dot.active span {
    opacity: 1 !important;
}

/* Button */

.cl-btn p {
    margin: 0;
}

/* Counter */

.cl_counter.animate_on_visible {
    opacity: 1 !important;
}

.cl_counter.align-center {
    text-align: center;
}

.cl_counter.align-left {
    text-align: left;
}

.cl_counter.align-right {
    text-align: right;
}

/* Countdown */

.cl_countdown {
    text-align: center;
}

.cl_countdown .group {
    padding: 0 5px;
}

.cl_countdown.large .group {
    display: inline-block;
    padding: 0 20px;
    text-align: center;
}

.cl_countdown.large .group span {
    display: block;
}

.cl_countdown.large .group span.value {
    font-size: 64px;
    line-height: 78px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #222;
}

.cl_countdown.large .group span.type {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
}

/* Blog */

/* Blog Grid Simplified*/

.cl_blog.blog-nobox #blog-entries .grid-style .grid-holder .grid-holder-inner {
    border-width: 0 !important;
}

.cl_blog.blog-nobox #blog-entries .grid-style .grid-holder .entry-wrapper {
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 0px;
}

.cl_blog.blog-nobox #blog-entries .grid-style .grid-holder .entry-tools-wrapper {
    padding-left: 0;
    padding-right: 0;
    border-top: none;
}

.cl_blog.blog-nobox #blog-entries .grid-style .entry-content {
    padding-top: 10px;
}

/* Carousel */

.cl_blog .cl-carousel article {
    width: 100%;
    padding: 0px 10px;
}

.cl_blog .owl-dots {
    margin-top: 45px;
}

/* Clients */

.cl_clients:not(.cl-carousel) {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.client-item {
    width: 100%;
    display: inline-block;
    padding: 12% 10%;
    display: flex;
    align-items: center;
}

.cl_clients:not(.cl-carousel) .client-item {
    padding: 20px;
}

@media (max-width:480px) {
    .cl_clients:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients:not(.cl-carousel) .client-item {
        width: 100%;
    }
}

@media (max-width:767px) {
    .cl_clients:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients:not(.cl-carousel) .client-item {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .cl_clients:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients:not(.cl-carousel) .client-item {
        width: 33.33%;
    }
}

@media (min-width:992px) {
    .cl_clients.items_2:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients.items_2:not(.cl-carousel) .client-item {
        width: 50%;
    }
    .cl_clients.items_3:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients.items_3:not(.cl-carousel) .client-item {
        width: 33.33%;
    }
    .cl_clients.items_4:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients.items_4:not(.cl-carousel) .client-item {
        width: 25%;
    }
    .cl_clients.items_5:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients.items_5:not(.cl-carousel) .client-item {
        width: 20%;
    }
    .cl_clients.items_6:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients.items_6:not(.cl-carousel) .client-item {
        width: 16.66%;
    }
    .cl_clients.items_7:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_clients.items_7:not(.cl-carousel) .client-item {
        width: 14.28%;
    }
}

.cl_clients.cl-carousel .owl-stage {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
}

.cl_clients.style_opacity_shadow .client-item img {
    opacity: 0.3;
    -webkit-transition: all 400ms cubic-bezier(0.778, 0.128, 0.15, 0.84);
    -moz-transition: all 400ms cubic-bezier(0.785, 0.135, 0.15, 0.84);
    -o-transition: all 400ms cubic-bezier(0.785, 0.135, 0.15, 0.84);
    transition: all 400ms cubic-bezier(0.785, 0.135, 0.15, 0.84);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.00);
}

.cl_clients.style_opacity_shadow .client-item>a {
    width: 100%;
}

.cl_clients.style_opacity_shadow .client-item img:hover {
    opacity: 1;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.cl_clients.cl-carousel .owl-nav .owl-prev {
    left: -60px;
}

.cl_clients.cl-carousel .owl-nav .owl-next {
    right: -60px;
}

.cl_clients.cl-carousel .owl-nav [class*=owl-] {
    opacity: 0;
}

.cl_clients.cl-carousel:hover .owl-nav [class*=owl-] {
    opacity: 1;
}

.cl_clients.cl-carousel:hover .owl-nav .disabled {
    opacity: 0.5;
}

/* Progress Bar */

.cl_progress_bar .wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cl_progress_bar .labels {
    font-weight: 600;
    width: 43%;
    text-align: right;
    padding-right: 20px;
}

.cl_progress_bar .labels .title {
    display: inline-block;
    font-weight: 300;
    font-size: 14px;
    color: #777;
}

.cl_progress_bar .labels .title p {
    margin: 0;
    display: inline-block;
}

.cl_progress_bar .labels .percentage {
    float: right;
    font-size: 14px;
}

.cl_progress_bar .progress {
    width: 57%;
    height: 7px;
    margin-top: 0px;
    position: relative;
}

@media (max-width:767px) {
    .cl_progress_bar .labels {
        width: 60%;
        text-align: left;
    }
    .cl_progress_bar .labels .title {
        font-size: 10px !important;
    }
    .cl_progress_bar .progress {
        width: 40%;
    }
}

.cl_progress_bar .bar {
    -webkit-transition: all 1000ms cubic-bezier(0.778, 0.128, 0.15, 0.84);
    -moz-transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.84);
    -o-transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.84);
    transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.84);
    position: absolute;
    width: 0;
    left: 0;
    top: 0;
    height: 100%;
}

.light-text .cl_progress_bar .labels {
    color: #fff;
}

/* Team */

.cl_cl_team .cl_team .team-item {
    position: relative;
}

/* Style Simple */

.cl_team.style-simple .team-item .team-media-wrapper {
    position: relative;
}

.cl_team.style-simple .team-item .team-media-wrapper img {
    width: 100%;
    max-width: auto;
}

.cl_team.style-simple .team-item .team-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.cl_team.style-simple .team-item .team-media-wrapper:hover .team-overlay {
    opacity: 1;
}

.cl_team.style-simple .team-item .team-social {
    text-align: center;
    width: 100%;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform .25s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, -moz-transform .25s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform .25s ease-in-out;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    opacity: 0;
}

.cl_team.style-simple .team-item .team-social a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
    color: #fff;
}

.cl_team.style-simple .team-item .team-media-wrapper:hover .team-social {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    opacity: 1;
}

.cl_team.style-simple .team-item .team-content {
    text-align: center;
    padding: 25px 20px;
}

.cl_team.style-simple .team-item .team-name {
    margin-bottom: 0;
    line-height: 20px;
}

.cl_team.style-simple .team-item .team-position {
    font-size: 12px;
}

.cl_team.style-simple .team-item .team-desc {
    padding-top: 4px;
}

/* Photo Style */

.cl_team.style-photo .team-item .team-media-wrapper {
    position: relative;
    overflow: hidden;
}

.cl_team.style-photo .team-item .team-media-wrapper img {
    width: 100%;
    max-width: auto;
}

.cl_team.style-photo .team-item .team-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100.5%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    color: #fff;
}

.cl_team.style-photo .team-item .team-media-wrapper:hover .team-overlay {
    opacity: 1;
}

.cl_team.style-photo .team-item .team-social {
    text-align: left;
    width: 100%;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform .25s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, -moz-transform .25s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform .25s ease-in-out;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    opacity: 0;
    margin-top: 10px;
}

.cl_team.style-photo .team-item .team-social a {
    color: #fff;
    margin-right: 10px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    display: inline-block;
    font-size: 20px;
}

.cl_team.style-photo .team-item .team-social a:hover {
    color: #fff;
}

.cl_team.style-photo .team-item .team-social a:last-child {
    margin-right: 0px;
}

.cl_team.style-photo .team-overlay-wrapper {
    width: 100%;
    height: 100%;
    bottom: 0;
    position: absolute;
    left: 0;
    padding: 25px 30px;
    display: table;
}

.cl_team.style-photo .team-item .team-media-wrapper:hover .team-social {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    opacity: 1;
}

.cl_team.style-photo .team-item .team-content {
    text-align: center;
    width: 100%;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform .25s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, -moz-transform .25s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform .25s ease-in-out;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    opacity: 0;
    display: table-cell;
    vertical-align: middle
}

.cl_team.style-photo .team-item .team-content * {
    text-align: center;
    width: 100%;
}

.cl_team.style-photo .team-item .icons-wrapper a {
    position: absolute !important;
    left: 0;
    bottom: -1px;
    top: auto;
    width: 50px;
    height: 50px;
    background: url(../img/link-icon.png) no-repeat center #fff;
}

.cl_team.style-photo .team-item .icons-wrapper a.lightbox {
    background: url(../img/lightbox-icon.png) no-repeat center #fff;
    left: 51px;
}

.cl_team.style-photo .team-media-wrapper:hover .team-content {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    opacity: 1;
}

.cl_team.style-photo .team-item .team-name {
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 20px;
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.4px;
    padding-right: 10px;
}

.cl_team.style-photo .team-item .team-position {
    font-size: 14px;
}

.cl_team.style-photo .team-item .team-desc {
    padding-top: 4px;
}

.cl_team.style-photo.hide_content .team-desc {
    display: none;
}

.cl_team.style-photo.hide_content .team-position {
    display: block;
    line-height: 14px;
}

.cl_team.style-left_aligned .team-item {
    text-align: left;
    padding: 0 !important;
}

.cl_team.style-left_aligned .team-item .img-title {
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}

.cl_team.style-left_aligned .team-item img {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
}

.cl_team.style-left_aligned .team-item .title {
    padding-left: 20px;
}

.cl_team.style-left_aligned .owl-prev {
    bottom: 0;
    left: 0;
    top: auto !important;
}

.cl_team.style-left_aligned .owl-next {
    bottom: 0;
    left: 56px;
    top: auto !important;
}

.cl_team.style-left_aligned[data-carousel-nav="1"] .team-item .content {
    padding-bottom: 85px;
}

/* Layout */

.cl_team:not(.is_single) {
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
}

.cl_team.is_single .team-item {
    padding: 0px !important;
}

@media (min-width:768px) {
    .cl_team[data-columns="4"]:not(.is_single) .team-item {
        width: 25%;
    }
    .cl_team[data-columns="3"]:not(.is_single) .team-item {
        width: 33.3%;
    }
    .cl_team[data-columns="2"]:not(.is_single) .team-item {
        width: 50%;
    }
    .cl_team[data-columns="5"]:not(.is_single) .team-item {
        width: 20%;
    }
    .cl_team[data-columns="6"]:not(.is_single) .team-item {
        width: 16.6%;
    }
}

@media (min-width: 570px) and (max-width:768px) {
    .cl_team:not(.is_single) .team-item {
        width: 50%;
    }
}

@media (max-width: 569px) {
    .cl_team:not(.is_single) .team-item {
        width: 100%;
    }
}

.cl_team.cl-carousel .team-item {
    width: 100% !important;
}

/* Divider */

.cl_divider .inner {
    width: 100%;
}

.cl_divider .inner.simple {
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
}

.cl_divider .inner.two {
    border-top: 1px;
    border-bottom: 1px;
    height: 6px;
    border-left: 0px;
    border-right: 0px;
    clear: both;
    position: relative;
    z-index: 11;
}

.cl_divider span.inner {
    border-top: 1px;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    clear: both;
    position: relative;
    z-index: 11;
}

.cl_divider i {
    margin-left: 10px;
    margin-right: 10px;
}

.cl_divider {
    min-height: 10px;
}

.cl_divider .wrapper {
    display: flex;
    display: -webkit-flex;
    display: flex;
}

@media (max-width:400px) {
    .cl_divider .wrapper {
        max-width: 130px;
    }
}

.cl_divider .wrapper.left_divider {
    position: absolute;
    left: 0;
}

.cl_divider .wrapper.center_divider {
    left: 0;
    right: 0;
    margin: auto;
}

.cl_divider .wrapper.right_divider {
    position: absolute;
    right: 0;
}

.cl_divider .wrapper.icon {
    align-items: center;
    -webkit-align-items: center;
    /* Safari 7.0+ */
}

.cl_divider span.left {
    width: 100%;
}

.cl_divider span.right {
    width: 100%;
}

/* Media */

.cl_media video,
.cl_media iframe {
    width: 100%;
    display: block;
}

.cl_media .video {
    position: relative;
}

.cl_media a img {
    width: 100%;
}

.cl_media .placeholder-img {
    width: 100%;
    max-width: none;
}

.cl_media .image-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    -ms-transition-duration: 0.25s;
    transition-duration: 0.25s;
    z-index: 999;
    background-position: center;
}

.cl_media .play-button {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    top: 50%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    box-shadow: 0 3px 5px rgba(50, 50, 93, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 3px 5px rgba(50, 50, 93, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 3px 5px rgba(50, 50, 93, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    transition: all .25s ease;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.cl_media .play-button:hover {
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    transform: translateY(-2px);
}

.cl_media .play-button i {
    width: 85px;
    height: 100%;
    text-align: center;
    line-height: 80px;
    color: #fff;
    float: left;
    font-size: 24px;
}

.cl_media.show-video .image-wrapper {
    opacity: 0;
}

.cl_media iframe,
.cl_media video {
    border: none;
}

.cl_media.hide-video iframe,
.cl_media.hide-video video {
    opacity: 0;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    -ms-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

.cl_media.show-video iframe,
.cl_media.show-video video {
    opacity: 1;
    z-index: 9999;
}

.cl_media.add-shadow .inner img,
.cl_media.add-shadow .inner .image-wrapper {
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
}

.cl_media.show-video .play-button {
    display: none;
}

.cl_media.show-video .image-wrapper {
    z-index: -1;
}

.cl_media.position_left .inner {
    float: none;
    margin: 0;
    width: 100%;
}

.cl_media.position_left .inner img,
.cl_media.position_left .inner {
    text-align: left;
    width: auto;
}

.cl_media.position_right .inner {
    text-align: right;
    width: 100%;
}

.cl_media.position_center.type-image,
.cl_media.position_center.type-live,
.cl_media.position_center.type-video {
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
    justify-content: center;
}

.cl_media.position_right.type-video {
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
    justify-content: flex-end;
}

.cl_media.position_left.type-video {
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.cl_media.cl-custom-width.position_left.type-image {
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.cl_media.cl-custom-width.position_right.type-image {
    display: flex;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
    justify-content: flex-end;
}

.cl_media.position_stretch .inner {
    width: 100%;
    max-width: none;
    display: block;
}

.cl_media.position_stretch.type-image .inner img {
    max-width: none;
    width: 100%;
}

.cl_media.type-video .inner {
    width: 100%;
    display: block;
}

.cl_media .lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;
}

.cl_media .lightbox i {
    color: #fff;
    width: 60px;
    text-align: center;
    line-height: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    font-size: 32px;
    top: 50%;
    margin-top: -30px;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    opacity: 0;
    -webkit-transform: translatex(-20px);
    -moz-transform: translatex(-20px);
    -ms-transform: translatex(-20px);
    transform: translatex(-20px);
    -webkit-transition: opacity 0.25s ease-in-out, -webkit-transform .3s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: opacity 0.25s ease-in-out, -moz-transform .3s cubic-bezier(.19, 1, .22, 1);
    transition: opacity 0.25s ease-in-out, transform .3s cubic-bezier(.19, 1, .22, 1);
}

.cl_media .lightbox:hover {
    opacity: 1;
}

.cl_media .lightbox:hover i {
    -webkit-transform: translatex(0px);
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    transform: translatex(0px);
    opacity: 1;
}

.cl_media .inner {
    position: relative;
    width: auto;
    display: inline-block;
}

@media (max-width:992px) {
    .cl_media .inner {
        max-width: 100%;
    }
}

.cl_media {
    position: relative;
}

.cl_media>a.custom-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: background 0.25s ease-in-out;
    -moz-transition: background 0.25s ease-in-out;
    transition: background 0.25s ease-in-out;
}

.cl_media.hover_dark>.custom-link:hover {
    background: rgba(0, 0, 0, 0.3);
}

.cl_media.hover_light>.custom-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Map */

.cl-map-fullheight {
    height: 100%;
}

@media (max-width:767px) {
    .cl_map.cl-map-fullheight {
        height: 400px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .cl-col-tablet-full .cl_map.cl-map-fullheight {
        height: 400px;
    }
}

.cl_map.cl-map-fullheight .cl-map-element {
    height: 100% !important;
}

/* Contact Form 7 */

.cl_contact_form7.style-simple label {
    width: 100%;
    text-align: left !important;
    color: #262a2c !important;
}

.cl_contact_form7.style-simple p {
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
}

.cl_contact_form7.style-simple input:not([type="submit"]),
.cl_contact_form7.style-simple select {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    color: #c1cad1;
}

.cl_contact_form7.style-simple .cl-btn.wpcf7-submit {
    width: 100%;
    text-transform: uppercase;
}

.cl_contact_form7.style-simple .col-sm-6 {
    text-align: left;
}

.cl_contact_form7.style-simple .col-sm-6 p {
    margin-top: 21px;
    margin-bottom: 21px;
}

.cl_contact_form7.style-simple .col-sm-6 textarea {
    max-height: 221px;
}

.cl_contact_form7.style-simple .col-sm-6:nth-child(2) {
    padding-left: 0;
}

.cl_contact_form7.style-simple .col-sm-6:nth-child(3) {
    padding-right: 0;
}

@media (max-width:767px) {
    .cl_contact_form7.style-simple .col-sm-6 {
        padding-left: 0;
        padding-right: 0;
    }
    .cl_contact_form7.style-simple {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
}

.cl_contact_form7.style-simple textarea {
    width: 100%;
    height: 140px;
    padding-left: 10px;
}

.cl_contact_form7.style-simple input:not([type="submit"]),
.cl_contact_form7.style-simple textarea,
.cl_contact_form7.style-simple select {
    border-width: 1px;
    border-style: solid;
    background: #fff;
    border-radius: 4px;
}

.cl_contact_form7.style-dark input:not(.cl-btn),
.cl_contact_form7.style-dark textarea,
.cl_contact_form7.style-dark select {
    border-width: 1px;
    border-style: solid;
    border-left: 0;
    width: 100%;
    border-right: 0;
    border-top: 0;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}

.cl_contact_form7.style-dark .inline input:not(.cl-btn),
.cl_contact_form7.style-dark .inline textarea,
.cl_contact_form7.style-dark .inline select {
    max-width: 45%;
    width: 100%;
    margin-right: 25px;
}

.cl_contact_form7.style-border input:not(.cl-btn),
.cl_contact_form7.style-border textarea,
.cl_contact_form7.style-border select {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-left: 8px;
    height: 44px;
    border: none;
    border-bottom: 1px solid #cfd1d2;
    margin-top: 10px;
}

.cl_contact_form7.style-border textarea {
    height: 120px;
}

.cl_contact_form7.style-border select option {
    background: #222;
    color: #888;
}

.cl_contact_form7.style-border .inline input:not(.cl-btn),
.cl_contact_form7.style-border .inline textarea,
.cl_contact_form7.style-border .inline select {
    width: 100%;
    margin-right: 1em;
    height: 38px;
}

@media (min-width:768px) {
    .cl_contact_form7.style-border .inline input:not(.cl-btn),
    .cl_contact_form7.style-border .inline textarea,
    .cl_contact_form7.style-border .inline select {
        max-width: 49%;
    }
}

@media (max-width:767px) {
    .cl_contact_form7.style-border .inline {
        display: flex;
    }
    .cl_contact_form7.style-border .inline input:not(.cl-btn),
    .cl_contact_form7.style-border .inline textarea,
    .cl_contact_form7.style-border .inline select {
        max-width: 100%;
    }
    .cl_contact_form7.style-border .inline .wpcf7-form-control-wrap.your-email {
        margin-left: 20px;
    }
}

.cl_contact_form7.style-border .inline span:last-child input:not(.cl-btn),
.cl_contact_form7.style-border .inline span:last-child textarea,
.cl_contact_form7.style-border .inline span:last-child select {
    margin-right: 0;
}

.cl_contact_form7.style-border .cl-btn {
    margin-top: 50px;
}

div.wpcf7-validation-errors {
    border: 2px solid #444;
    padding: 10px 20px;
    margin: 40px 0;
    width: 82%;
}

div.wpcf7-mail-sent-ok {
    padding: 10px 20px;
    margin: 40px 0;
    width: 82%;
}

.wpcf7-calculated {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-block;
    width: auto !important;
    padding: 0 !important;
}

.calculated_result {
    font-size: 24px;
    font-weight: bold;
}

.wpcf7-radio_custom {
    margin-top: 12px;
    margin-right: 10px;
    display: block;
}

.wpcf7-radio_custom [type="radio"] {
    width: 30px !important;
    height: 30px !important;
    float: left;
    position: relative;
}

.wpcf7-radio_custom [type="radio"]::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.wpcf7-radio_custom [type="radio"]:checked:before {
    border-width: 9px;
    border-style: solid;
}

.wpcf7-radio_custom .wpcf7-list-item-label {
    display: inline-block;
    line-height: 30px;
    float: left;
    padding-left: 10px;
}

/* End Contact Form 7 */

/* Gallery */

.cl_gallery:not(.cl-carousel) {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.gallery-item {
    width: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
}

.cl_gallery:not(.cl-carousel) .gallery-item {
    padding: 20px;
}

@media (max-width:480px) {
    .cl_gallery:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery:not(.cl-carousel) .gallery-item {
        width: 100%;
    }
}

@media (max-width:767px) {
    .cl_gallery:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery:not(.cl-carousel) .gallery-item {
        width: 50%;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .cl_gallery:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery:not(.cl-carousel) .gallery-item {
        width: 50%;
    }
}

@media (min-width:992px) {
    .cl_gallery.items_2:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery.items_2:not(.cl-carousel) .gallery-item {
        width: 50%;
    }
    .cl_gallery.items_3:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery.items_3:not(.cl-carousel) .gallery-item {
        width: 33.33%;
    }
    .cl_gallery.items_4:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery.items_4:not(.cl-carousel) .gallery-item {
        width: 25%;
    }
    .cl_gallery.items_5:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery.items_5:not(.cl-carousel) .gallery-item {
        width: 20%;
    }
    .cl_gallery.items_6:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery.items_6:not(.cl-carousel) .gallery-item {
        width: 16.66%;
    }
    .cl_gallery.items_7:not(.cl-carousel) {
        flex-flow: row wrap;
    }
    .cl_gallery.items_7:not(.cl-carousel) .gallery-item {
        width: 14.28%;
    }
}

.cl_gallery.cl-carousel .owl-stage {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
}

.cl_gallery.with-lightbox .gallery-item .inner-wrapper {
    position: relative;
    width: 100%;
}

.cl_gallery[data-items="1"] .gallery-item .inner-wrapper img {
    max-width: none;
}

.cl_gallery.with-lightbox .gallery-item .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 100%;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.cl_gallery.with-lightbox .gallery-item .overlay i {
    color: #fff;
    width: 60px;
    text-align: center;
    line-height: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    font-size: 32px;
    top: 50%;
    margin-top: -30px;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    opacity: 0;
    -webkit-transform: translatex(-20px);
    -moz-transform: translatex(-20px);
    -ms-transform: translatex(-20px);
    transform: translatex(-20px);
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform .25s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: opacity 0.2s ease-in-out, -moz-transform .25s cubic-bezier(.19, 1, .22, 1);
    transition: opacity 0.2s ease-in-out, transform .25s cubic-bezier(.19, 1, .22, 1);
}

.cl_gallery.with-lightbox .gallery-item:hover .overlay i {
    -webkit-transform: translatex(0px);
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    transform: translatex(0px);
    opacity: 1;
}

.cl_gallery.with-lightbox .gallery-item:hover .overlay {
    opacity: 1;
}

.cl_gallery.cl-carousel.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 48px;
    background-color: #fff;
    margin-top: -24px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 10px 36px;
    -webkit-background-size: 10px 36px;
    background-size: 10px 36px;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -99999px;
    opacity: 1 !important;
    transition: opacity .2s ease, transform .2s ease;
    -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
    -moz-transition: opacity .2s ease, -moz-transform .2s ease;
    left: 0px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

.cl_gallery.cl-carousel.owl-theme .owl-next {
    right: 0;
    left: auto !important;
}

/* Toggles */

.cl_toggles .toggles_wrapper {
    min-height: 30px;
}

.cl_toggles .toggles_wrapper>.cl_toggle {
    margin-bottom: 20px;
}

.cl_toggle .toggle_wrapper {
    min-height: 0px;
}

.cl_toggle>.toggle_wrapper>.cl-element:first-child {
    margin-top: 0 !important;
}

.cl_toggles.style-simple .cl_toggle>.title {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.cl_toggles.style-square_plus .cl_toggle {
    padding-left: 36px;
    position: relative;
}

.cl_toggles.style-square_plus .cl_toggle .title {
    margin-bottom: 15px;
}

.cl_toggles.style-square_plus .cl_toggle .title>a {
    position: relative;
    padding-top: 5px;
}

.cl_toggles.style-square_plus .cl_toggle .title>a:before {
    content: "+";
    font-size: 16px;
    width: 24px;
    padding-left: 1px;
    height: 24px;
    position: absolute;
    left: -36px;
    top: 0;
    text-align: center;
    line-height: 24px;
}

.cl_toggles.style-square_plus .cl_toggle .title.open>a:before {
    content: "-";
}

.cl_toggle .cl-text {
    min-height: 20px;
}

/* Tabs */

.cl_tabs .tab-content .tab-pane {
    display: none;
}

.cl_tabs .tab-content .active {
    display: block;
}

.cl_tabs .fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.cl_tabs .fade.in {
    opacity: 1;
}

.cl_tabs .cl-nav-tabs,
.cl_tabs .cl-nav-tabs li {
    list-style: none;
    padding: 0;
    display: inline-block;
    margin: 0;
    position: relative;
}

@media (max-width:767px) {
    .cl_tabs .cl-nav-tabs,
    .cl_tabs .cl-nav-tabs li {
        display: block;
        width: 100%;
    }
}

.cl_tabs .tab_panel_content>.cl-element:first-child {
    margin-top: 0 !important;
}

.cl_tabs .tab_panel_content>.cl_element>.cl-element:first-child {
    margin-top: 0 !important;
}

.cl_tabs.style-simple .cl-nav-tabs li a {
    height: 40px;
    line-height: 40px;
    display: block;
    margin: 0;
    padding: 0 14px;
    font-size: 14px;
    text-decoration: none;
    font-style: normal;
    color: #989898;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 700;
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

.cl_tabs.style-simple .cl-nav-tabs li:first-child a {
    padding-left: 0;
}

.cl_tabs.style-large .cl-nav-tabs li a {
    height: 48px;
    line-height: 48px;
    display: block;
    margin: 0;
    padding: 0 28px;
    font-size: 14px;
    text-decoration: none;
    font-style: normal;
    color: #fff;
    letter-spacing: 0px;
    font-weight: 600;
    -webkit-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

.cl_tabs.style-large .cl-nav-tabs li.active a {
    background: #f3f3f3 !important;
}

.cl_tabs.style-large .cl-nav-tabs li.active a {
    color: #545454;
}

.cl_tabs.style-large .tab-content {
    padding: 25px 30px;
    background: #f3f3f3;
}

/* Lists */

.cl_list.style-simple .list-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cl_list.style-simple .list-wrapper li {
    display: flex;
}

.cl_list.style-simple i {
    display: inline-block;
}

.cl_list.style-simple span {
    display: inline-block;
}

.cl_list .cl_list_item.with_icon span {
    padding-left: 10px;
}

.cl_list p {
    margin: 0;
    padding: 0;
}

.cl_list.style-circle .list-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cl_list.style-circle .list-wrapper li {
    display: flex;
    margin-bottom: 12px;
}

.cl_list.style-circle .list-wrapper li:last-child {
    margin-bottom: 0;
}

.cl_list.style-circle .list-wrapper>li>i {
    display: inline-block;
    background: #e1e1e1;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 12px;
}

.cl_list.style-circle span {
    display: inline-block;
}

/* Blog News */

.cl_blog .news-entries article {
    overflow: hidden;
    margin-bottom: 0 !important;
}

.cl_blog .news-entries .info {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
}

.cl_blog .news-entries .second-wrap .info {
    font-size: 14px;
}

.cl_blog .news-entries .categories {
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
}

.cl_blog .news-entries .second-wrap .categories {
    margin-bottom: 5px;
}

.cl_blog .news-entries article .entry-media,
.cl_blog .news-entries article .grid-holder,
.cl_blog .news-entries article .grid-holder-inner {
    height: 100%;
}

.cl_blog .news-entries article img {
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-backface-visibility: hidden;
    width: auto;
}

.cl_blog .news-entries {
    display: flex;
    flex-flow: row wrap;
}

.cl_blog .news-entries .flex-wrap {
    display: flex;
    flex-flow: row wrap;
}

.cl_blog .news-entries .parent-wrap>article {
    width: 100%;
}

.cl_blog .news-entries .semi-wrap {
    width: 100%;
}

.cl_blog .news-entries .parent-wrap .semi-wrap>article {
    width: 50%;
}

.cl_blog .news-entries .flex-wrap.semi-width article {
    width: 50%;
}

.cl_blog .news-entries .flex-wrap.full-height article .post-thumbnail {
    height: 700px;
}

.cl_blog .news-entries .flex-wrap.semi-height article .post-thumbnail {
    height: 350px;
}

.cl_blog .news-entries .flex-wrap.onethird-height article .post-thumbnail {
    height: 153.33333px;
}

.cl_blog .news-entries .flex-wrap.full-width-img>article .post-thumbnail img {}

@media (min-width:992px) {
    .cl_blog .news-entries .flex-wrap.full-height-img>article .post-thumbnail img {
        height: 100%;
    }
    .cl_blog .news-entries.news-layout-grid_1>.parent-wrap {
        width: 60%;
    }
    .cl_blog .news-entries.news-layout-grid_1>.parent-wrap.second-wrap {
        width: 40%;
    }
    .cl_blog .news-entries.news-layout-grid_1>.parent-wrap.first-wrap {
        padding-right: 0px;
    }
    .cl_blog .news-entries.news-layout-grid_1 .flex-wrap.inner-wrap {
        padding-top: 0px;
    }
    .cl_blog .news-entries.news-layout-grid_1 .flex-wrap.inner-wrap>article:first-child .grid-holder {
        padding-right: 0px;
    }
    .cl_blog .news-entries.news-layout-grid_1 .flex-wrap.inner-wrap>article:first-child .grid-holder .grid-holder-inner {
        overflow: hidden;
    }
    .cl_blog .news-entries.news-layout-grid_2>.parent-wrap {
        width: 50%;
    }
    .cl_blog .news-entries.news-layout-grid_2 article .grid-holder {
        padding: 1px;
    }
    .cl_blog .news-entries.news-layout-grid_2 article .grid-holder .grid-holder-inner {
        overflow: hidden;
    }
    .cl_blog .news-entries.news-layout-grid_3>.first-wrap {
        width: 67%;
        padding-right: 0px;
    }
    .cl_blog .news-entries.news-layout-grid_3>.first-wrap h2 {
        font-size: 72px;
        line-height: 86px;
    }
    .cl_blog .news-entries article .entry-header {
        text-align: left !important;
        margin-bottom: 0 !important;
    }
    .cl_blog .news-entries.news-layout-grid_3>.second-wrap {
        width: 33%;
    }
    .cl_blog .news-entries.news-layout-grid_3>.second-wrap article:first-child {
        margin-bottom: 0px !important;
    }
    .cl_blog .news-entries.news-layout-grid_3>.second-wrap article h2:after {
        bottom: 0;
    }
    .cl_blog .news-entries.news-layout-grid_3 article .grid-holder {
        padding: 0px;
    }
    .cl_blog .news-entries.news-layout-grid_3 article .grid-holder .grid-holder-inner {
        overflow: hidden;
    }
}

.cl_blog .news-entries.news-layout-grid_1>.second-wrap article .entry-content {
    display: none !important;
}

.cl_blog .news-entries.news-layout-grid_3>.second-wrap article h2 {
    font-size: 30px;
    line-height: 38px;
}

.cl_blog .news-entries.news-layout-grid_2>.second-wrap article h2 {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cl_blog .news-entries.news-layout-grid_1>.second-wrap article h2 {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cl_blog .news-entries.news-layout-grid_2>.second-wrap article h2:after {
    display: none;
}

.cl_blog .news-entries.news-layout-grid_2>.second-wrap article .entry-button {
    display: none !important;
}

.cl_blog .news-entries.news-layout-grid_2>.second-wrap article .entry-content {
    display: none !important;
}

.cl_blog .news-entries.news-layout-grid_3>.second-wrap article .entry-content {
    display: none !important;
}

.cl_blog .news-entries.news-layout-grid_1>.second-wrap article h2:after {
    display: none;
}

.cl_blog .news-entries.news-layout-grid_1>.second-wrap article .entry-button {
    display: none !important;
}

@media (max-width:991px) {
    .cl_blog .news-entries>.parent-wrap {
        width: 100%;
    }
    .cl_blog .news-entries .flex-wrap.onethird-height article .post-thumbnail img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cl_blog .news-entries article img {
        height: 100%;
        width: auto;
    }
    .cl_blog .news-entries .flex-wrap.onethird-height article .post-thumbnail img {
        width: 100%;
        height: auto;
    }
    .cl_blog .news-entries .flex-wrap.full-width-img>article .post-thumbnail img {
        height: auto;
    }
}

.cl_blog .news-entries article .shadow {
    height: 80%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, .55)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.8s ease-in-out, -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: opacity 0.8s ease-in-out, -moz-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: opacity 0.8s ease-in-out, transform .8s cubic-bezier(.19, 1, .22, 1);
}

.cl_blog .news-entries article .grid-holder .grid-holder-inner {
    position: relative;
}

.cl_blog .news-entries article .content {
    position: absolute;
    left: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    color: #fff;
    padding: 0 10%;
    pointer-events: none;
    padding-bottom: 0px;
}

.cl_blog .news-entries .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.36);
    z-index: 9;
}

.cl_blog .news-entries article .entry-media {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.8s ease-in-out, -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: opacity 0.8s ease-in-out, -moz-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: opacity 0.8s ease-in-out, transform .8s cubic-bezier(.19, 1, .22, 1);
    -webkit-backface-visibility: hidden;
}

.cl_blog .news-entries article:hover .entry-media {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cl_blog .news-entries article:hover .entry-media img {
    transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    -moz-transform: translate3d(-50%, -50%, 0) scale(1);
}

.cl_blog .news-entries h2 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    line-height: 38px;
}

.cl_blog .news-entries h2 a,
.blog-entries .cl_blog .news-entries h2 a:hover {
    color: #fff !important;
}

.cl_blog .news-entries .entry-content {
    color: #fff;
    font-size: 16px;
}

/* End Blog News */

/* Tables */

.dataTables_info {
    display: none;
}

.tablepress tfoot th,
.tablepress thead th {
    background: rgba(0, 0, 0, 0);
}

.tablepress thead {
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.tablepress .sorting:hover,
.tablepress .sorting_asc,
.tablepress .sorting_desc {
    color: #fff;
}

.tablepress .odd td {
    background: #fcfcfc;
}

/* End Table */

/* .pricelist */

@media (min-width:768px) {
    .cl_column.with_shadow>.cl_col_wrapper>.col-content .cl_pricelist {
        box-shadow: 1px 5px 40px rgba(0, 0, 0, 0.4);
    }
    .cl_column.with_shadow>.cl_col_wrapper {
        position: relative;
        top: -30px;
    }
    .cl_column.with_shadow>.cl_col_wrapper>.col-content .cl_pricelist .header,
    .cl_column.with_shadow>.cl_col_wrapper>.col-content .cl_pricelist .footer {
        padding: 40px;
    }
    .cl_column.with_shadow>.cl_col_wrapper>.col-content {
        z-index: 99999999;
    }
}

.cl_column.with_shadow>.cl_col_wrapper>.col-content .cl_pricelist .header h4 {
    color: #fff !important;
}

.cl_pricelist p {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.cl_pricelist {
    text-align: center;
}

.cl_pricelist .list-wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
}

.cl_pricelist .panel {
    padding: 15px;
    min-height: 60px;
    display: block;
}

.cl_pricelist .footer {
    background: #f3f3f3;
    padding-top: 30px;
    padding-bottom: 30px;
}

.cl_pricelist .header {
    display: table;
    width: 100%;
}

.cl_pricelist .header>* {
    display: table-cell;
    vertical-align: middle
}

.cl_pricelist .price {
    display: table;
    width: 100%;
    background-color: #f3f3f3;
    font-weight: 400;
    line-height: 1.41;
    letter-spacing: 0px;
}

.cl_pricelist .price>* {
    display: table-cell;
    vertical-align: middle
}

.cl_pricelist .price .integer-part {
    font-size: 54px;
    font-weight: bold;
    line-height: 72px;
}

.cl_pricelist .price .currency {
    top: -20px;
    position: relative;
    font-size: 18px;
}

.cl_pricelist .price .decimal-part {
    top: -20px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
}

.cl_pricelist .cl_list_item {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ebebeb;
}

.cl_pricelist .cl_list_item:last-child {
    border-bottom: none;
}

.cl_pricelist.title_light .header h4 {
    color: #fff;
}

.cl-h-cl_socialicon .cl_socialicon {
    margin-top: 0 !important;
}

/* Tabbed Shop */

.cl_shop_tabbed ul.tabbed-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.cl_shop_tabbed ul.tabbed-tabs>li {
    padding: 0 50px;
    position: relative;
}

body:not(.rtl) .cl_shop_tabbed ul.tabbed-tabs>li:not(:last-child):after {
    position: absolute;
    right: -12px;
    top: 7px;
    width: 24px;
    height: 14px;
    content: "";
    background: url(../img/separator2.png) no-repeat center;
}

body:not(.rtl) .cl_shop_tabbed ul.tabbed-tabs>li:first-child {
    padding-left: 0;
}

body:not(.rtl) .cl_shop_tabbed ul.tabbed-tabs>li:last-child {
    padding-right: 0;
}

.cl_shop_tabbed ul.tabbed-tabs>li:not(.active)>a {
    color: #c1cad1;
}

.cl_shop_tabbed .shop_tabbed_content {
    margin-top: 15px;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    position: relative;
}

@media (max-width:767px) {
    .cl_shop_tabbed ul.tabbed-tabs {
        flex-wrap: wrap;
    }
    .cl_shop_tabbed ul.tabbed-tabs>li {
        padding: 20px 0;
        width: 100%;
        text-align: center;
    }
    .cl_shop_tabbed ul.tabbed-tabs>li:after {
        right: auto;
        left: 50%;
        margin-left: -12px;
        top: auto !important;
        bottom: -6px !important;
    }
}

/* Table Row */

.cl_table_row {
    display: block;
    padding: 13px 0;
    width: 100%;
    text-align: left !important;
}

.cl_table_row>* {
    width: 100%;
}

.cl_table_row .desc {
    font-style: italic;
    width: 100%;
}

.cl_table_row .subtitle {
    width: 100%;
}

.cl_table_row .subtitle span {
    background: rgba(255, 255, 255, 1);
    z-index: 999999;
    position: relative;
}

.light-text .cl_table_row .subtitle span {
    background: #222023;
    z-index: 999999;
    position: relative;
}

.light-text .cl_table_row .desc {
    color: #cbd7e3;
}

.cl_table_row.style-big .price span {
    font-size: 22px;
    font-weight: bold;
}

.cl_table_row.style-big h4 {
    font-size: 32px;
    line-height: 44px;
}

.cl_table_row .desc {
    display: flex;
    align-items: flex-end;
}

.cl_table_row .desc .dots {
    overflow: hidden;
    width: 100%;
    height: 30px;
    overflow: hidden;
    position: absolute;
}

@media (max-width:991px) {
    .cl_table_row .desc .dots {
        display: none;
    }
}

.cl_table_row .desc .price {
    text-align: right;
    width: 100%;
}

.cl_table_row .price span {
    background: rgba(255, 255, 255, 1);
    z-index: 999999;
    position: relative;
}

.light-text .cl_table_row .price span {
    background: #222023;
    z-index: 999999;
    position: relative;
}

/* Links Cloud */

.links-cloud {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.links-cloud a {
    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    padding: 0 15px;
    position: relative;
}

.links-cloud a:before {
    content: "/";
    position: absolute;
    left: -8px;
}

.links-cloud .category {
    font-size: 60px;
    font-weight: 300;
    position: relative;
    top: -14px;
    text-transform: uppercase;
}

.cl-closed-section .close_section_button {}

.cl-closed-section .close_section_button .icon {
    text-align: center;
    line-height: 60px;
    width: 60px;
    height: 60px;
    top: -30px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    background: #fff;
    z-index: 9999;
    border-radius: 50%;
    border: 1px solid #dbe1e6;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 24px;
    cursor: pointer;
}

.cl-closed-section .close_section_button .icon:before {
    content: "\f13c";
    font-family: "codeless-icons";
}

.cl-closed-section .close_section_button .anchor {
    content: attr(data-anchor);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 32px;
    text-transform: uppercase;
    font-weight: 600;
}

.cl-closed-section {
    position: relative;
}

.cl-closed-section>.container-content {
    overflow: hidden;
    height: 0px;
    -webkit-transition: height 0.6s ease-in-out;
    -moz-transition: height 0.6s ease-in-out;
    transition: height 0.6s ease-in-out;
}

.cl-closed-section>.container-content>.row {}

.cl-closed-section.opened-section .close_section_button .anchor {
    opacity: 0;
}

.cl-closed-section.opened-section .close_section_button .icon:before {
    content: "\f13f";
}

.cl_hotspot {
    position: absolute;
    padding-left: 60px;
}

.cl_hotspot .text p {
    margin: 0 !important;
}

.cl_hotspot .hotspot-icon {
    position: absolute;
    left: 0;
    top: 15px;
}

.cl_hotspot .hotspot-icon .dot {
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    border-radius: 50%;
    position: absolute;
    background: #19a84a;
    top: 50%;
    left: 50%;
    opacity: 1;
}

.cl_hotspot .hotspot-icon .dot2 {
    width: 86px;
    height: 86px;
    margin-left: -43px;
    margin-top: -43px;
    border-radius: 50%;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    top: 50%;
    left: 50%;
    opacity: 1;
}

.cl_hotspot .hotspot-icon .pulse {
    width: 86px;
    height: 86px;
    margin-top: -43px;
    margin-left: -43px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-animation: pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    /*     opacity: 0.0 */
}

@media(max-width:1200px) {
    .col-sm-6 .cl_hotspot .text {
        font-size: 20px !important;
        line-height: 28px !important;
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1.0, 1.0);
        opacity: 1;
    }
    /*     50% {opacity: 0.85;} */
    100% {
        -webkit-transform: scale(2.0, 2.0);
        opacity: 0.0;
    }
}

.multiscroll {
    overflow: hidden;
    position: relative;
}

@media (max-width:991px) {
    .multiscroll {
        display: none;
    }
}

.multiscroll .ms-tableCell {
    height: 100% !important;
}

.multiscroll .content {
    padding-left: 160px;
}

.multiscroll .content h1,
.multiscroll .content h2,
.multiscroll .content h3,
.multiscroll .content h4,
.multiscroll .content h5,
.multiscroll .content h6 {
    font-family: inherit !important;
    margin-top: 10px;
}

.multiscroll .content h1 {
    text-transform: uppercase;
}

.multiscroll .content h4 {
    color: #8b99a3;
    font-weight: 400;
}

.multiscroll .slider-navigation {
    width: 160px;
    height: 120px;
    background: #fff;
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    margin-left: -80px;
    margin-top: -60px;
}

.multiscroll .slider-navigation:after {
    content: "";
    width: 90px;
    height: 2px;
    background: #373b3d;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    margin-top: 0px;
    left: 50%;
    margin-left: -42px;
    z-index: 9999999;
}

.multiscroll .slider-navigation .up {
    font-size: 32px;
    position: absolute;
    width: 80px;
    height: 70px;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 70px;
    color: #373b3d;
    cursor: pointer;
}

.multiscroll .slider-navigation .down {
    font-size: 32px;
    position: absolute;
    width: 80px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    color: #373b3d;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.light-text .cl_widget_sidebar .widget_search input[type="search"] {
    height: 60px;
    background: #2b282c;
    border: none;
    max-width: 100%;
    width: 270px;
    float: right;
    color: #fff !important;
}

blockquote {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Tabbed Menus */

.single-menu {
    display: none;
}

.single-menu-container {
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.single-menu.active {
    display: block;
}

.single-menu-tab {
    margin-left: 28px;
    display: flex;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid;
    position: relative;
    cursor: pointer;
}

.single-menu-tab .desc {
    padding-left: 20px;
}

.single-menu-tab img {
    max-width: 50px;
}

.single-menu-tab .desc p {
    margin: 0;
    line-height: 20px;
    font-size: 14px;
    font-style: italic;
}

.single-menu .container {
    max-width: 100%;
}

.single-menu-tab:last-child {
    border-bottom: none;
}

.single-menu-tab.active:before {
    width: 0;
    height: 0;
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f7f4ed;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: -65px;
}

.cl_menu_tabbed {
    padding-top: 70px;
    padding-bottom: 70px;
}

.cl_menu_tabbed .white-bg {
    width: 41%;
    height: 100%;
    position: absolute;
    background: #f7f4ed;
    right: -15px;
    top: 0;
}

@media (max-width:767px) {
    .cl_menu_tabbed .white-bg {
        display: none;
    }
}

/* lightbox video play */

.cl_video_lightbox .play {
    background: rgba(0, 0, 0, 0) url(../img/play-button.png) no-repeat center;
    width: 75px;
    height: 75px;
    border: 2px solid #fff;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}