/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    width: 100%;
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

/*---for #owl-demo  main header slider---*/
#owl-demo.owl-carousel {
    max-height: 750px;
    overflow: hidden;
}

#owl-demo.owl-theme .owl-controls {
    margin-top: 0
}

#owl-demo.owl-theme .owl-controls .owl-nav [class*=owl-] {
    background-color: transparent;
    width: 20px;
    height: 34px;
    text-indent: -9999px;
    position: absolute;
}

#owl-demo.owl-theme .owl-controls .owl-nav .owl-prev {
    left: 10px;
    background-image: url(../images/prev-btn.png);
    background-repeat: no-repeat;
    background-position: left top;
    top: 45%;
}

#owl-demo.owl-theme .owl-controls .owl-nav .owl-next {
    right: 10px;
    background-image: url(../images/next-btn.png);
    background-repeat: no-repeat;
    background-position: left top;
    top: 45%;
}

#owl-demo.owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%
}

#owl-demo.owl-carousel .item .caption {
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 42%
}

#owl-demo.owl-carousel .item .caption p {
    color: #1e1e1e;
    font-size: 54px;
    line-height: 58px;
    margin-bottom: 35px;
}

#owl-demo.owl-carousel .item .caption p span, #owl-demo.owl-carousel .item .caption .btn-slider span {
    font-weight: 700;
}

#owl-demo.owl-carousel .item .caption .btn-slider {
    background: #28abea;
    color: #fff;
    font-size: 28px;
    border-radius: 30px;
    padding: 6px 30px 9px 30px;
}

#owl-demo.owl-carousel .item .caption .btn-slider:hover {
    background: #36beff;
    -webkit-box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.2);
}

#owl-demo.owl-carousel .owl-item .item video {
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    /*transform: translateX(-50%) translateY(-50%);*/

    transition: 1s opacity;
}

/*---for #owl-demo1  email demo slider---*/
#owl-demo1.owl-carousel .owl-item {
    display: inline-block;
    width: 100%;
}

#owl-demo1.owl-theme .owl-controls .owl-nav [class*=owl-] {
    background-color: transparent;
    width: 20px;
    height: 34px;
    text-indent: -9999px;
    position: absolute;
}

#owl-demo1.owl-theme .owl-controls .owl-nav .owl-prev {
    left: -55px;
    background-image: url(../images/prev-btn.png);
    background-repeat: no-repeat;
    background-position: left top;
    top: 45%;
}

#owl-demo1.owl-theme .owl-controls .owl-nav .owl-next {
    right: -55px;
    background-image: url(../images/next-btn.png);
    background-repeat: no-repeat;
    background-position: left top;
    top: 45%;
}

.slider-main {
    max-width: 1635px;
    margin: 0 auto;
    width: 91%; /*font-family: 'open_sansregular';*/
}

.full-slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-main .left-section {
    width: 33%;
    float: left;
    padding: 80px 0 0px 8%;
    color: #fff;
    font-weight: 400
}

.slider-main .left-section .sec-logo {
    max-width: 265px;
    padding: 30px 0;
    min-height: 55px;
}

.slider-main .left-section .sec-logo img {
    width: auto;
    height: auto;
}

.slider-main .left-section p {
    line-height: 22px;
}

.slider-main .left-section .feature-title {
    font-weight: 700
}

.slider-main .left-section ul .font-16 {
    font-weight: 600;
    font-size: 17px;
}

.slider-main .left-section ul {
    margin: 0;
    padding: 0 0 30px 0;
    list-style-type: none;
    width: 100%;
}

.slider-main .left-section ul li {
    width: 100%;
    background: url(../images/right-icon.png) no-repeat left 10px;
    padding-left: 30px;
    font-size: 16px;
}

.slider-main .left-section .content-scroll {
    overflow: auto;
    position: relative;
    padding: 0;
    background-color: transparent;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 97%;
    height: auto;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

/* Back Pulse */
@-webkit-keyframes button {
    50% {
        background-color: rgba(11, 11, 11, 0.75);
    }
}

@keyframes button {
    50% {
        background-color: rgba(11, 11, 11, 0.75);
    }
}

.button {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    background-color: rgba(11, 11, 11, 0.10);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: normal;
}

.button:hover, .button:focus, .button:active {
    -webkit-animation-name: button;
    animation-name: button;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-color: #0b0b0b;
    background-color: #0b0b0b;
    color: white;
}

.slider-main .right-section {
    width: 55%;
    float: right;
    padding-right: 5%;
    margin-top: 2.5%;
}

.slider-main .right-section .iframe-bg {
    float: right;
    background: #fff url(../images/iframe-bg.png) no-repeat left top;
    max-width: 792px;
    width: 100%;
    min-height: 575px;
    position: relative;
    height: 100%;
    margin-bottom: 1px; /*max-height:575px; */
    border-radius: 8px 8px 0 0;
    background-size: 100%
}

.slider-main .right-section .iframe-bg iframe {
    float: right;
    margin: 0;
    border: solid 1px #efefef;
    min-width: 93%;
    min-height: 65%;
    position: absolute;
    right: 4%;
    top: 30.5%;
}

.ce-tittle {
    width: 100%;
    text-align: center;
    clear: both;
    font-size: 18px;
    font-weight: 300;
    color: #818181;
    background: #fff;
    padding: 10px 0;
}

.ce-tittle a {
    color: #2f2f2f;
    font-size: 16px; /*font-family: 'open_sansregular';*/
}

.ce-tittle a span {
    font-weight: 700
}

.ce-tittle a:hover {
    color: #28abea
}

.slider-main .right-section .iframe-bg-mobile {
    float: right;
    background: url(../images/mobile-bg.png) no-repeat left top;
    max-width: 600px;
    width: 100%;
    min-height: 575px;
    position: relative;
    height: 100%;
    margin-bottom: 1px; /*max-height:575px; */
    border-radius: 8px 8px 0 0;
    margin-right: 340px;
}

.slider-main .right-section .iframe-bg-mobile iframe {
    float: right;
    margin: 0;
    border: solid 1px #efefef;
    min-width: 55.5%;
    min-height: 72%;
    position: absolute;
    right: 7%;
    top: 28%;
}

/*---for #owl-demo2 testimonial slider---*/

.testimonials {
    width: 100%;
    padding-top: 130px;
    text-align: center;
}

.testimonials h4 {
    font-size: 24px;
    color: #2f2f2f;
    line-height: 34px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-style: italic
}

.testimonials p {
    color: #2f2f2f;
    margin: 0;
    padding-top: 50px; /*font-family: 'open_sansregular';*/
    font-size: 14px;
}

#owl-demo2.owl-theme .owl-controls .owl-nav [class*=owl-] {
    background-color: transparent;
    width: 19px;
    height: 13px;
    text-indent: -9999px;
    position: relative;
}

#owl-demo2.owl-theme .owl-controls .owl-nav .owl-prev {
    background-image: url(../images/prev-arrow.png);
    background-repeat: no-repeat;
    background-position: left top;
    bottom: 0;
    left: -30px;
    display: table-cell;
}

#owl-demo2.owl-theme .owl-controls .owl-nav .owl-next {
    background-image: url(../images/next-arrow.png);
    background-repeat: no-repeat;
    background-position: right top;
    bottom: 0;
    right: -30px;
    display: table-cell;
}

#owl-demo2.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    background: #e4e4e4;
}

#owl-demo2.owl-theme .owl-dots .owl-dot.active span, #owl-demo2.owl-theme .owl-dots .owl-dot:hover span {
    background: #2f2f2f;
}

#owl-demo2.owl-theme .owl-dots {
    position: relative;
    display: table;
    margin-top: -38px;
}

#owl-demo2.owl-theme .owl-controls {
    margin: 40px auto;
    display: table;
}

#owl-demo2.owl-theme .owl-controls .owl-nav {
    display: table;
    width: 100%;
}

/*---for #owl-demo3 logo slider---*/

.client-logos {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 120px;
}

.logo-text {
    text-align: center;
    font-size: 18px;
    color: #c8c8c8;
    width: 100%;
    clear: both;
    padding-bottom: 40px;
}

#owl-demo3.owl-theme .item {
    display: block;
    height: 100px;
    position: relative;
    color: white;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

#owl-demo3.owl-theme .item img {
    width: auto;
    height: auto;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

/*---for #owl-demo4 blog slider---*/

.blogmain {
    padding: 0px;
    border-bottom: 1px solid #e8e8e8;
}

.blogmain .blog-head {
    width: 100%;
    float: left;
    padding: 0px 26px;
    margin: 0px 0px 30px 0px;
    position: relative;
}

.blogmain .blog-head .blog-title {
    width: 100%;
    float: left;
    min-height: 60px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8; /*font-family: 'open_sansregular';*/
    font-size: 32px;
    color: #2f2f2f;
    line-height: 50px;
    text-align: center;
}

.blogmain .blog-head .blog-title span {
    font-weight: 700;
    color: #28abea;
}

.blogmain .blog-head .recomended {
    width: auto;
    position: absolute;
    top: 0;
    right: 26px; /*font-family: 'open_sansregular';*/
    font-size: 12px;
    color: #b8b8b8;
    line-height: 50px;
}

.blogmain .blog-head .recomended span {
    color: #2f2f2f;
}

.blogmain .blog-head .recomended span img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}

.blogmain .owl-carousel {
    float: left;
}

.blogmain .owl-carousel .item {
    padding: 0px 26px;
    border-right: 1px solid #e8e8e8;
    float: left;
}

.blogmain .owl-carousel .item .blog-thumb {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.blogmain .owl-carousel .item .blog-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blogmain .owl-carousel .item .blog-detail {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.blogmain .owl-carousel .item .blog-detail h3 {
    width: 100%;
    float: left;
    margin: 15px 0px 0px 0px;
    padding: 0;
    font-size: 21px;
    color: #2f2f2f;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -1px;
}

.blogmain .owl-carousel .item .blog-detail p {
    width: 100%;
    float: left;
    margin: 15px 0px 20px 0px;
    padding: 0;
    font-size: 14px;
    color: #4a4a4a; /*font-family: 'open_sansregular';*/
    line-height: 21px;
    letter-spacing: -1px;
    height: 65px;
    overflow: hidden;
}

.blogmain .owl-carousel .item .blog-detail a.readmore {
    width: auto;
    height: 33px;
    float: left;
    background: #2f2f2f;
    border: 1px solid #2f2f2f;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    line-height: 30px;
    margin: 0px 0px 24px 0px;
    padding: 0px 20px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.blogmain .owl-carousel .item .blog-detail a.readmore:hover {
    background: #28abea;
    border: 1px solid rgba(47, 47, 47, 0.013);
}

.blogmain .owl-theme .owl-controls {
    margin: 0;
}

.blogmain .owl-carousel .owl-dots {
    position: absolute;
    top: -70px;
    left: 26px;
}

.blogmain .owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    background: #e4e4e4;
}

.blogmain .owl-theme .owl-dots .owl-dot.active span, .blogmain .owl-theme .owl-dots .owl-dot:hover span {
    background: #787777;
}

/*---for #owl-demo5 investor logo slider---*/

.investor-logos {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #dfdfdf
}

#owl-demo5.owl-carousel {
    max-width: 780px;
    margin: 0 auto
}

#owl-demo5.owl-theme .item {
    display: block;
    height: 100px;
    position: relative;
    color: white;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

#owl-demo5.owl-theme .item img {
    width: auto;
    height: auto;
    position: relative;
    top: 100%;
    left: 50%;
    -webkit-transform: translateY(-100%) translateX(-50%);
    -ms-transform: translateY(-100%) translateX(-50%);
    transform: translateY(-100%) translateX(-50%);
}

@media (max-width: 1600px) {
    .slider-main .left-section .content-scroll {
        height: 260px
    }

}

@media (max-width: 1199px) {
    #owl-demo1.owl-theme .owl-controls .owl-nav .owl-prev {
        left: -40px;
    }

    #owl-demo1.owl-theme .owl-controls .owl-nav .owl-next {
        right: -40px;
    }
}

@media (max-width: 991px) {
    #owl-demo.owl-carousel .item .caption p {
        font-size: 40px;
    }

    #owl-demo1.owl-theme .owl-controls .owl-nav .owl-prev {
        left: -30px;
    }

    #owl-demo1.owl-theme .owl-controls .owl-nav .owl-next {
        right: -30px;
    }
}

@media (max-width: 767px) {

    .ce-tittle {
        padding: 0
    }

    .testimonials, .blogmain {
        display: none
    }

    .client-logos {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}

@media (max-width: 600px) {
    .ce-tittle {
        font-size: 18px;
    }

    .slider-main .left-section .sec-logo {
        height: 90px;
    }

    .slider-main .left-section .sec-logo img {
        max-height: 100%
    }

    #owl-demo1.owl-theme .owl-controls .owl-nav .owl-prev {
        left: 5px;
    }

    #owl-demo1.owl-theme .owl-controls .owl-nav .owl-next {
        right: 5px;
    }

    #owl-demo.owl-carousel .item .caption p {
        font-size: 30px;
        margin-bottom: 10px;
    }

    #owl-demo.owl-carousel .item .caption .btn-slider {
        font-size: 20px;
    }

    #owl-demo3.owl-theme .item {
        padding: 0 10px;
    }

}

@media (max-width: 500px) {
    #owl-demo.owl-carousel .item .caption p {
        font-size: 20px;
    }

}

@media (max-width: 479px) {
    .ce-tittle {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    #owl-demo.owl-carousel .item .caption p {
        font-size: 14px;
    }

}

