.preloader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    text-align: center;
    display: table;
}
.preloader-inside {
    position: relative;
    height: auto;
    width: 200px;
    margin-top: 300px;
    vertical-align: middle;
    text-align: center;
    display: table-cell;
    color: #fff;
}
.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.spinner img {
    position: absolute;
    top: 22px;
    left: 0;
    padding: 5px;
}
.spinner:after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.spinner:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.spinner-1:after {
    position: absolute;
    top: 0px;
    left: 0px;
    border: 4px solid transparent;
    border-top-color: #08ada7;
    border-bottom-color: #08ada7;
    animation: spinny 2s linear infinite;
}
@keyframes spinny {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(30deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* 
----------------------------------
- Navbar Section
----------------------------------
*/

.nav-area {
    width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 0px;
    border: none;
    padding-top: 60px;
    margin-bottom: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.navbar> .container .navbar-brand {
    margin-right: 120px;
    /*padding: 20px 0px;--*/
    padding:25px 0;
}
.navbar-default .navbar-nav > li {
    margin-bottom: 0px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    color: #fff;
    padding: 25px 19px;
    text-transform: uppercase;
}
.navbar-right .form-group {
    width: 150px;
    margin: 19px 0px 0px;
}
.navbar-right .btn-search {
    padding: 0px;
    font-size: 14px;
    color: #303030;
    border: 0px;
}
.navbar-default .navbar-nav >.active > a,
.navbar-default .navbar-nav >.active > a:focus,
.navbar-default .navbar-nav >.active > a:hover,
.navbar-default .navbar-nav >.open > a,
.navbar-default .navbar-nav >.open > a:focus,
.navbar-default .navbar-nav >.open> a:hover {
    color: #07aca7;
    background-color: transparent;
}
.dropdown-menu {
    display: block;
    border: 0px;
    padding: 0px;
    margin: 0px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transform: rotateX(-20deg) translateY(-10px);
    -moz-transform: rotateX(-20deg) translateY(-10px);
    -ms-transform: rotateX(-20deg) translateY(-10px);
    -o-transform: rotateX(-20deg) translateY(-10px);
    transform: rotateX(-20deg) translateY(-10px);
    background-color: rgba(30, 30, 30, 0.94);
    box-shadow: none;
    -webkit-box-shadow: none;
    min-width: auto;
    border-radius: 0px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.ie .dropdown-menu {
    display: none;
}
.dropdown-menu li {
    margin-bottom: 0;
    position: relative;
}
.dropdown-menu > li > a {
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 40px 8px 20px;
}
.dropdown-menu > li > a span {
    font-size: 18px;
    margin: 0px 3px;
}
.dropdown:hover .dropdown-menu,
.open > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: painted;
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotate(0deg) translate(0px);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color: #07aca7!important;
    background-color: transparent;
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
}
.navbar-right {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.navbar-right i {
    font-size: 15px;
    color: #c4c3c3;
    line-height: 26px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/*--*/
.mobile-version{
    cursor: pointer;
    font-size:12px;
}
.mobile-version > span{
    line-height:1;
    vertical-align: middle;
    display: inline-block;
    color: #fff;
}
.mobile-icon{
    width: 15px;
    display: inline-block;
    margin-right: 8px;
}

/*end*/
.dropdown li ul.sub-menu {
    position: absolute;
    right: 0px;
    top: 0px;
    width: auto;
    display: block!important;
    opacity: 0!important;
    pointer-events: none;
    transform-origin: right center 0!important;
    -webkit-transform: rotateY(0deg) translateX(50%)!important;
    -moz-transform: rotateY(0deg) translateX(50%)!important;
    -ms-transform: rotateY(0deg) translateX(50%)!important;
    -o-transform: rotateY(0deg) translateX(50%)!important;
    transform: rotateY(0deg) translateX(50%)!important;
}
.dropdown-menu li .sub-menu li a {
    padding: 10px 40px 10px 20px;
}
.dropdown li:hover ul {
    opacity: 1!important;
    display: block!important;
    -webkit-transform: rotateY(0deg) translateX(100%)!important;
    -moz-transform: rotateY(0deg) translateX(100%)!important;
    -ms-transform: rotateY(0deg) translateX(100%)!important;
    -o-transform: rotateY(0deg) translateX(100%)!important;
    transform: rotateY(0deg) translateX(100%)!important;
}
.mega-dropdown {
    display: block!important;
    width: auto;
    transform: rotateY(0deg) translateX(-0px)!important;
}
.mega-dropdown-menu {
    width: 580px;
    padding: 30px;
}
.mega-dropdown-menu ul {
    padding: 0;
    margin: 0;
}
.mega-dropdown-menu li {
    width: 100%;
}
.dropdown-header {
    width: 100%!important;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    padding: 0px;
}
.dropdown-menu .divider {
    height: 2px;
    margin: 9px 0;
    overflow: hidden;
    background-color: rgba(30, 30, 30, 0.94);
}
.mega-dropdown-menu li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: capitalize;
    padding: 8px 0px;
}
.sticky {
    position: fixed;
    height: auto;
    z-index: 10000;
    top: 0px;
    background-color: rgba(30, 30, 30, 0.94);
    border-bottom: none;
    padding: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.sticky .dropdown-menu {
    background-color: rgba(30, 30, 30, 0.94);
}
.sticky .dropdown-menu > li {
    border-bottom: 1px solid rgba(30, 30, 30, 0.94);
}
.sticky .dropdown-menu > li:last-child {
    border-bottom: 0px;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    max-height: 400px;
    border-color: transparent;
}
.navbar-default .navbar-toggle {
    background-color: transparent;
    border: 1px solid transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    width: 35px;
    margin-bottom: 6px;
    background-color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.navbar-default .navbar-toggle.open span {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.navbar-default .navbar-toggle.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navbar-default .navbar-toggle.open span:nth-child(3) {
    opacity: 0;
}
.navbar-default .navbar-toggle.open span:nth-child(4) {
    -webkit-transform: rotate(45deg) translate(-11px, -11px);
    -o-transform: rotate(45deg) translate(-11px, -11px);
    -moz-transform: rotate(45deg) translate(-11px, -11px);
    -o-transform: rotate(45deg) translate(-11px, -11px);
    -moz-transform: rotate(45deg) translate(-11px, -11px);
    transform: rotate(45deg) translate(-11px, -11px);
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

/*
----------------------------------
- Home Page
-----------------------------------
/* 
-- Hero Section
----------------------------------
*/

.hero-area {
    width: 100%;
    /*height: 100vh;*/
    position: relative;
    min-height: 600px;
}
.hero-area .item {
    /*height: 100vh;*/
    position: relative;
    overflow: hidden;
}
.hero-area .item:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: #000;
    opacity: .65;
    z-index: 1;
}
.owl-carousel .owl-item {
    overflow: hidden;
}
.hero-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    /*padding-top: 60px;*/
    top: 0px;
    left:0;
    bottom:0;
    text-align: center;
    z-index: 10;
    /*display: table;*/
}
.hero-caption-inner {
/*    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: table-cell;*/
    width: 100%;
    /* height: 100%; */
    vertical-align: middle;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%); 	/* IE 9 */
    -moz-transform:translate(-50%,-50%); 	/* Firefox */
    -webkit-transform:translate(-50%,-50%);/* Safari 和 Chrome */
    -o-transform:translate(-50%,-50%); 	/* Opera */
}
.hero-caption-inner h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    /*--*/
    /*margin-bottom: 10px;*/
    margin-bottom:25px;
}
.hero-caption-inner h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
    /*--*/
    letter-spacing: 8px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero-caption-inner p {
    /*width: 600px;*/
    /*--*/
    width:660px;
    /*end*/
    height: auto;
    margin: auto;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 50px;
}
.hero-caption-inner span {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
    color: #fff;
}
.gobottom-container{
    width:32px;
    height:32px;
    margin:100px auto 0;
    position: relative;
}
.gobottom-block{
    position: absolute;
    display:block;
    top:0;
    cursor: pointer;
    animation:swing 2s infinite;
    -webkit-animation: swing 2s linear infinite!important;
    -moz-animation:swing 2s linear infinite ;
}
@keyframes swing {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-webkit-keyframes swing {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-moz-keyframes swing {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
.gobottom-icon{
    width:30px!important;
    margin:0 auto;
}
/*
-- Service Section
---------------------------- */
.service-content{
    margin-bottom:10px;
}
.service-content p{
    height:72px;
}
@media screen and (max-width: 768px){
    .hero-area .item{
        height:100vh;
    }
    .service-image{
        display: block;
        margin:0 auto;
    }
    .service-content h4{
       text-align: center;
    }
    .service-content .btn-readmore{
        margin:0 auto;
        width:100px;
    }
}
.service-container{
    padding:0 50px;
}
.service-item:after {
    /*overflow: hidden;*/
    clear: both;
}

.service-block-left {
    width: 50%;
    height: 200px;
    float: left;
    border: 1px solid transparent;
    border-right: 1px solid #cbcbcb;
}

.service-block-right {
    width: 50%;
    height: 200px;
    float: right;
    border: 1px solid transparent;
    /*border-left:1px solid #cbcbcb;*/
}

.service-icon {
    width: 90.35px;
}

.service-block-left .service-icon {
    float: left;
    margin: 50px 0;
}

.service-block-right .service-icon {
    float: right;
    margin: 50px 0;
}
.service-block-left .service-content-block{
    width:70%;
    float: right;
    text-align: right;
    padding: 60px 25px 40px 0;
    position: relative;
}
.service-block-right .service-content-block{
    width:70%;
    float: left;
    text-align: left;
    padding: 60px 0px 40px 25px;
    position: relative;
}
.service-block-left .right-service{
    position: absolute;
    top: 64px;
    right: -13px;
}
.service-block-right .right-service{
    position: absolute;
    top: 64px;
    left: -13px;
}
.top-service{
    width:24px;
    position: absolute;
    top:-12px;
    right:-12px;
}
.bottom-service{
    width:24px;
    position: absolute;
    bottom:-12px;
    right:-12px;
}
@media screen and (max-width: 768px){
    .service-icon{
        display: none;
    }
    .service-content-block{
        width: 90%!important;
        padding-top:20px!important;
        padding-bottom:20px!important;
    }
    .service-block-right{
        height:150px;
    }
    .service-block-left{
        height:150px;
    }
}


/*
-- About Section
---------------------------- */

.about-area {
    width: 100%;
    height: auto;
}
.about-area-inner {
    background-color: #fafafa;
}
.about-slider {
    background-color: #fafafa;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.about-slider:after {
    content: "";
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: 1;
    background-color: #fafafa;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skew(-25deg);
    -moz-transform: skew(-25deg);
    -o-transform: skew(-25deg);
    transform: skew(-25deg);
}
.about-slider .item {}
.about-content {}
.about-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #606060;
    margin-bottom: 10px;
    text-indent: 2em;
}

/*
-- Fun Factor Section
---------------------------- */

.fun-fact-area {
    width: 100%;
    height: auto;
}
.fun-fact-item {
    width: 100%;
    height: auto;
    text-align: center;
    padding-top: 10px;
}
.fun-fact-item img {
    margin-top: -20px;
    margin-bottom: 5px;
}
.counter-number {}
.fun-fact-item span {
    font-size: 34px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0;
    color: #303030;
}

.fun-fact-item span:nth-of-type(1){
    display: inline-block;
    width: 3.5rem;
}

.fun-fact-item p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #606060;
    margin: 0;
}

/*
-- Call To Action Section
---------------------------- */

.action-area {
    width: 100%;
    height: auto;
}
.action-area-inner {
    padding: 80px 0px;
    background-image: url(../img/action-bg.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    text-align: center;
}
.action-area-inner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #000;
    opacity: .8;
    z-index: -1;
}
.action-caption {}
.action-caption h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.action-caption p {
    width: 850px;
    height: auto;
    margin: 0px auto 55px;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0;
    color: #d3d3d3;
}

/*
-- Feature Section
---------------------------- */

.feature-area {}
.single-feature {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}
.feature-item .single-feature:last-child {
    margin-bottom: 0;
}
.feature-icon {
    width: 20%;
    float: left;
    margin-top: 5px;
    position: relative;
}
.feature-icon i {
    width: 55px;
    height: 55px;
    text-align: center;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    font-size: 24px;
    line-height: 55px;
    color: #606060;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.feature-icon i.inner-icon {
    position: absolute;
    border: 0px;
    width: auto;
    top: 5px;
    left: 5px;
    font-size: 20px;
    color: #606060;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.feature-content {
    width: 80%;
    float: left;
}
/*--*/
.feature-content p{
    height: 48px;
}
.feature-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #303030;
    text-transform: capitalize;
    margin-bottom: 15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.item-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #606060;
    margin-bottom: 0px;
}
.single-feature:hover .feature-title,
.single-feature:hover i {
    color: #08ada7;
}

/*
-- Working Policy Section
------------------------------- */

.working-policy-area {}
.working-policy-inner {
    width: 100%;
    height: auto;
    background-color: #fafafa;
    padding: 100px 50px 40px;
}
.working-policy-list {
    width: 100%;
    float: left;
    /*padding-bottom: 60px;*/
    /*--*/
    padding-bottom:20px;
}
.policy-icon {
    width: 25%;
    float: left;
    margin-top: 5px;
    position: relative;
}
.policy-icon i {
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    font-size: 24px;
    line-height: 50px;
    color: #303030;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.policy-icon span{
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    font-size: 24px;
    line-height: 50px;
    color: #303030;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.padding13{
    padding:13px 0;
}
.padding10{
    padding:10px;
}
.padding30{
    padding:30px 0 20px;
}
.policy-short {
    width: 75%;
    float: left;
}
.policy-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    color: #303030;
    text-transform: capitalize;
    margin-bottom: 12px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.policy-short p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #606060;
    margin: 0;
    /*--*/
    min-height: 72px;
}
.working-policy-list:hover .policy-title,
.working-policy-list:hover i,
.working-policy-list:hover span{
    color: #08ada7;
}
.working-policy-list:hover path{
    fill:#08ada7!important;
}
.working-policy-list:hover .policy-icon i,
.working-policy-list:hover .policy-icon span{
    /*border:1px solid #08ada7;*/
}
/*
-- Portfolio Section
---------------------------- */

.portfolio-area {}
.portfolio-filter {}
.portfolio-filter ul {
    margin: 0px 0px 40px;
    padding: 0;
}
.portfolio-filter li {
    display: inline-block;
    margin: 0px 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #303030;
    text-transform: capitalize;
    padding: 3px 15px;
    border: 1px solid #cccccc;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.portfolio-filter li:hover {
    background-color: #08ada7;
    border: 1px solid #08ada7;
    color: #fff;
}
.portfolio-filter li.active {
    background-color: #08ada7;
    border: 1px solid #08ada7;
    color: #fff;
}
.portfolio-masonry {}
.portfolio-item {
    width: 25%;
    float: left;
    position: relative;
    overflow: hidden;
}
.portfolio-item img {
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.portfolio-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.portfolio-caption:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .7;
    z-index: -1;
}
.portfolio-action-btn {
    position: absolute;
    width: 100%;
    left: 0;
    top: 55%;
    opacity: 0;
    margin: auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.portfolio-action-btn img {
    width: auto!important;
}
.portfolio-caption-content {
    position: absolute;
    width: auto;
    bottom: 50px;
    left: 30px;
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.portfolio-caption-content h4 {
    line-height: 0px;
}
.portfolio-caption-content h4 a {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    text-transform: capitalize;
}
.portfolio-caption-content a {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    text-transform: capitalize;
}
.portfolio-item:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.portfolio-item:hover .portfolio-action-btn img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.portfolio-item:hover .portfolio-caption {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.portfolio-item:hover .portfolio-action-btn {
    opacity: 1;
    top: 50%;
}
.portfolio-item:hover .portfolio-caption-content {
    opacity: 1;
    bottom: 30px;
}

.scheme-area{
    background-color: #fafafa;
}
.scheme-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.scheme-item{
    flex-grow:0;
    flex-shrink: 1;
    flex-basis: 31.2%;
    margin:0px 10px 23.5px;
    /*cursor: pointer;*/
}
.scheme-item-shadow:hover{
    background-color: #fff;
    background-origin: content-box;
    background-clip: content-box;
    box-shadow: 0 4px 4px 2px #f3f3f3;

}


.scheme-image-block{
    height:220px;
    width:100%;
    position: relative;
}
.scheme-bg{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition:background-size 1s;
    -moz-transition:background-size 1s;
    -webkit-transition:background-size 1s;
    -o-transition:background-size 1s;
}
.scheme-title-block{
    font-size: 13px;
    padding:21px 0;
    color: #303030;
    font-weight: bold;
    transition:padding 1s;
    -moz-transition:padding 1s;
    -webkit-transition:padding 1s;
    -o-transition:padding 1s;
}
.scheme-item-shadow:hover .scheme-title-block{
    padding:21px 0 21px 30px;
}
.detailed-page{
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0px;
    z-index:20000;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 1.2s;
    transition: all 1.2s;
    overflow: hidden;
}
.detailed-page.show-detail{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.solution-detail{
    position: relative;
    overflow: hidden;
    width:100%;
    height: 85vh;
    margin: 0 auto;
    font-size: 14px;
    line-height: 26px;
    color: #333;
}
.solution-detail h3{
    text-align: center;
}
.solution-delete{
    /* position: absolute;
     height:50px;
     left: 0;
     right:0;
     top:0;
     background-color: rgba(255,255,255,1);*/
    position: relative;
    height: 10vh;
    margin-bottom: 5vh;
}
.delete-block{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px;
    cursor: pointer;
}
.delete-icon{
    width:30px;
}
.delete-block:hover span::before {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.delete-block:hover span::after {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.delete-block span {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    margin: -1px 0 0 -10px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.delete-block span::before, .delete-block span::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.delete-block span::before {
    background-color: #e5e5e5;
    opacity: 1;
}
.delete-block span::after {
    background-color: #333;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
.delete-block span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.delete-block span:last-child::before,.delete-block span:last-child::after {
    -webkit-transition-delay: .18s;
    transition-delay: .18s;
}
@media screen and (max-width: 768px){
    .scheme-item{
        flex-grow:0;
        flex-shrink: 1;
        flex-basis: 80%;
        margin:0 auto;
    }
}
/*
-- Team Section
---------------------------- */

.team-area {
    width: 100%;
    height: auto;
}
.team-member {
    width: 100%;
    position: relative;
    cursor: pointer;
}
.team-header {
    width: 100%;
    text-align: center;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.team-header img {}
.team-body {
    position: absolute;
    width: 238px;
    height: auto;
    top: 0px;
    left: 0px;
    padding: 0px 25px;
    opacity: 0;
    background-color: #fafafa;
    -webkit-transform: translateX(40px) rotateY(60deg);
    -moz-transform: translateX(40px) rotateY(60deg);
    -o-transform: translateX(40px) rotateY(60deg);
    transform: translateX(40px) rotateY(60deg);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    z-index: 100;
}
.short-info {
    width: 100%;
    height: 100%;
    padding: 35px 0px 18px;
    border-bottom: 1px solid #ebebeb;
}
.member-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #303030;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.designation {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0;
    color: #606060;
    margin-bottom: 0;
}
.team-body p {
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #606060;
    padding: 25px 0px;
    margin-bottom: 0;
    border-bottom: 1px solid #ebebeb;
}
.social-profile {
    margin: 0;
    padding: 15px 0px;
}
.social-profile li {
    display: inline-block;
    margin-right: 25px;
    margin-bottom: 0;
}
.social-profile a {
    font-size: 14px;
    line-height: 18px;
    color: #adadad;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.social-profile li:last-child {
    margin: 0;
}
.social-profile a:hover {
    color: #303030!important;
}
.team-footer {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: #fafafa;
    text-align: center;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.short-designation {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #606060;
    text-transform: capitalize;
    margin-bottom: 0;
    padding: 12px 0px;
}
.team-member:hover {
    overflow: visible;
}
.team-member:hover .team-header {
    -webkit-transform: translateX(-70px);
    -moz-transform: translateX(-70px);
    -o-transform: translateX(-70px);
    transform: translateX(-70px);
}
.team-member:hover .team-body {
    opacity: 1;
    -webkit-transform: translateX(80px) rotateY(0deg);
    -moz-transform: translateX(80px) rotateY(0deg);
    -o-transform: translateX(80px) rotateY(0deg);
    transform: translateX(80px) rotateY(0deg);
}
.team-member:hover .team-footer {
    opacity: 0;
}

/*
-- Testimonials Section
---------------------------- */

.testimonials-area {}
.testimonial-carousel {}
.testimonial-carousel .item {
    background-color: #fafafa;
    position: relative;
    margin-left: 55px;
}
.client-img {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    left: -50px;
    transform: translateY(43%);
}
.client-img img {
    width: 100px!important;
    height: 100px!important;
    border-radius: 50%;
    border: 3px solid rgba(227, 227, 228, 0.62);
}
.client-details {
    padding: 30px 30px 35px 80px;
}
.client-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    color: #303030;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.text-thin {
    font-weight: 300;
}
.client-details p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #606060;
    margin: 0;
    position: relative;
    z-index: 1;
}
.client-details p:after {
    position: relative;
    font-family: FontAwesome;
    content: "\f10e";
    color: #dadada;
    font-size: 24px;
    line-height: 22px;
    margin: 0;
    bottom: -10px;
    right: -12px;
}
.testimonial-carousel .owl-dots {
    position: relative;
    bottom: 0;
    margin-top: 25px;
}
.testimonial-carousel .owl-dot {
    background-color: #ebebeb;
}

/*
-- Blog Section
---------------------------- */

.blog-area {
    width: 100%;
    height: auto;
}
.post-row {
    width: 100%;
    height: auto;
}
.post-header {}
.post-feature {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.post-feature img {
    width: 100%;
}
.post-feature:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    /*background-color: #000;*/
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.post-feature img {
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}
.post-body {}
.post-caption {
    width: 100%;
    /*padding: 28px 0px 30px 58px;*/
    padding:10px 0 10px 0;
}
.post-caption h3{
    margin:0;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space:nowrap;
    overflow: hidden;
}
.post-heading {
    line-height: 0;
    margin-bottom: 5px;
}
.post-heading a {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #303030;
    text-transform: capitalize;
}
.post-meta {
    font-size: 12px;
    font-weight: 300;
    line-height: 14px;
    letter-spacing: 0;
    color: #606060;
}
.post-sticker {
    position: absolute;
    width: auto;
    height: auto;
    top: 28px;
    left: 0;
    border-radius: 5px;
    text-align: center;
    background-color: #08ada7;
}
.post-sticker small {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    padding: 5px 11px;
}
.post-sticker .month {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    background-color: #303030;
    margin: 0;
    padding: 3px 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.post-text{
    font-size: 14px;
    line-height: 24px;
    color: #606060;
    margin-bottom: 15px;
    height:48px;
    width:100%;
}
.post-footer {}
.post-row:hover .post-feature img {
    -webkit-transform: scale(1.2) rotate(2deg);
    -moz-transform: scale(1.2) rotate(2deg);
    -o-transform: scale(1.2) rotate(2deg);
    transform: scale(1.2) rotate(2deg);
}
.post-row:hover .post-feature:after {
    opacity: .6;
}
.blog-container{
    position:fixed;
    top:0px;
    left:0;
    right:0;
    bottom:0px;
    background-color: rgba(0,0,0,.7);
    opacity:1;
    z-index:30000;
    overflow-y: auto;
    display: none;
}

.blog-container.blog-show{
    opacity: 1;
}
.blog-block{
    width:70%;
    margin:100px auto;
    min-height:200px;
    height:auto;
    background-color: #fff;
    border-radius:5px;
}
.blog-header{
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,.3);
    font-size: 20px;
    color: #333;
    font-weight: 600;
}
.blog-header,.blog-body{
    padding: 20px;
}
.blog-footer{
    overflow: hidden;
    padding:10px 0;
}
.blog-close{
    margin-right: 1rem;
    float: right;
    border: 1px solid #fff;
    background-color: #07aca7;
    color: #fff;
    border-radius: 5px;
    padding: 2px 15px;
}
.blog-body img{
    display: block;
    margin: 20px auto;
}
.blog-body{
    text-align: justify;
    text-indent:25px;
}
.blog-body p{
    font-weight: normal;
    font-size: 1.6rem;
    color: #333;
    line-height: 24px;
    margin-bottom: 5px;
}
@media screen and (max-width: 768px){
    .blog-block{
        width:90%;
    }
}

/*
-- Clients Section
---------------------------- */

.client-area {
    width: 100%;
    background-color: #fafafa;
}
.clients-carousel {}
.clients-carousel .item {}
.clients-carousel .item img {
    width: auto;
    height: auto;
    margin: auto;
}

/*
-- Footer Section
---------------------------- */

.footer-area {
    width: 100%;
    height: auto;
    padding: 100px 0px;
    background-image: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}
.footer-area:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #252525;
    opacity: .98;
    z-index: -1;
}
.footer-content {
    width: 100%;
    height: auto;
}
.footer-content ul {
    margin: 25px 0px 0px;
    padding: 0;
    width: 100%;
    display: table;
}
.address-list {
    width: 100%;
    margin-top: 40px !important;
}
.address-list li {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 20px;
}
.address-list i {
    width: 17%;
    float: left;
    font-size: 28px;
    color: #919191;
}
.address-content {
    width: 70%;
    float: left;
}
.address-content p {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0;
    color: #ddd;
    margin-bottom: 2px;
}
.footer-content h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    color: #08ada7;
    text-transform: uppercase;
}
/*--*/
.official-accounts{
    /*width: 70%;*/
    width:55%;
    margin: 20px 0 0;

}
.official-accounts img{
    border-radius: 3px;
}
#recruit-section {
    background-color: #fafafa;
}

.recruit-block {
    background-color: #fff;
    overflow: hidden;
    padding:10px 45px;
    background-clip: content-box;
    background-origin: content-box;
}
.recruit-require{
    border-bottom:1px solid #fafafa;
    overflow: hidden;
    padding-top: 35px;
    padding-left: 30px;
}
.recruit-position{
    color: #08ada7;
    font-size: 17px;
    margin-bottom:35px;
    font-weight: bold;
}

.recruit-treatment{
    font-size: 12.8px;
    margin-bottom:35px;
}
.recruit-bold{
    font-weight: bold;
}
.recruit-intro{
    font-size:12.8px;
    color: #696969;
    padding: 20px 45px 35px;
    text-align: justify;
}
@media screen and (max-width: 768px) {
    .xs-left {
        text-align: left;
    }
    .official-accounts{
        margin: 20px auto 0;
    }
    .footer-content h5{
        text-align: center;
        margin-top:20px;
    }
    .footer-logo{
        display:block;
        margin:0 auto;
    }
    .recruit-treatment{
        margin-bottom:15px;
    }
    .recruit-intro{
        padding: 0px 15px 15px;
    }
    .recruit-require{
        padding-left:0;
    }
    .recruit-block{
        padding:10px 15px 35px;
    }
    .address-list i{
        visibility: hidden;
    }
}

/*--end*/
.footer-form {
    width: 100%;
    margin-top: 20px;
}
.footer-form p {
    font-size: 12px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #ddd;
}
.footer-form .form-group {
    margin: 0;
    border: 0px;
}
.footer-form .input-group {
    width: 100%;
    margin-bottom: 25px;
    border: 1px solid #747474;
}
.footer-form .form-control {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0;
    color: #ddd;
}
.form-btn {
    width: 100%;
    padding: 0;
    margin: 0;
}

/*
-- Copyright Section
---------------------------- */

.copyright-area {
    width: 100%;
    height: auto;
    padding: 27px 0px;
    text-align: center;
    background-color: #1f1f1f;
}
.footer-copyright {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0;
    color: #919191;
    margin: 0;
}

.about-slider-2 {
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
@keyframes animate-positive {
    0% {
        width: 0%;
    }
}
.technology-content {
    text-align: justify;
    overflow-y: auto;
    /*padding-right: 33px;*/
    padding-left:22px;
    padding-right:10px;
    padding-bottom:0;
    border-right: 4px solid transparent;
    scrollbar-face-color: #08ada7;
    scrollbar-arrow-color: #08ada7;
    scrollbar-track-color: #fafafa;
    scrollbar-shadow-color:#fff;
}
.technology-content p{
    margin:0;
    color: #696969;
    text-indent: 2em;
}
.technology-image-block {
    overflow: hidden;
}

.technology-image-block img {
    width: 100%;
}

.tech-image-left {
    /*padding-right: 33px;*/
    margin-left: -15px;
    width:97%;
}

.tech-cont-left {
    padding: 0 0px 0 26px;
    margin-left: -15px;
}
.tech-cont-left .technology-content {
}
.tech-image-right {
    margin-right: -15px;
}
.tech-cont-right{
    margin-right:-15px;
    padding-right:26px;
}
.tech-cont-right  .technology-content {
}
/*滚动条样式*/
.technology-content::-webkit-scrollbar { /*滚动条整体样式*/
    width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}

.technology-content::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px #07aca7;
    background: #07aca7;
}

.technology-content::-webkit-scrollbar-track { /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #ebebeb;
    width: 2px;
    border-radius: 0;
    background: #ebebeb;
}

.tech-item-style {
    margin: 35px 0;
    background-color: #fafafa;
}
.tech-title{
    padding:60px 15px 0 ;
}
.tech-subhead {
    padding:26px 0 26px 22px;
    margin-bottom:0;
}
@media screen and (max-width: 768px) {
    .tech-subhead{
        padding:26px 0 26px 0;
    }
    .tech-title{
        padding:30px 15px 0 ;
    }
    .xs-left {
        text-align: left;
    }

    .official-accounts {
        margin: 20px auto 0;
    }

    .footer-content h5 {
        text-align: center;
        margin-top: 20px;
    }
    .technology-content {
        margin-bottom:20px;
        padding-right:11px;
    }
    .tech-image-right {
        margin-right:0;
    }
    .tech-image-left {
        padding-right: 0px;
        margin-left: 0px;
        width:100%;
    }
    .tech-cont-right {
        margin-left: 0px;
        padding-right: 0px;
    }
    .tech-cont-right  .technology-content,.tech-cont-left .technology-content{
        min-height:235px;
        height:auto;
        padding:0 16px;
    }
}

/*
------------------------------
- Service Page 1
------------------------------
*/
.product-item {
    width: 50%;
    float: left;
    overflow: hidden;
    padding: 0px;
}
.product-item:hover{
    background-color:#d9fbf4;
}
.product-item:hover .pro-image-block img{
    transform: scale(1.2);
}
/*滚动条样式*/
.pro-content::-webkit-scrollbar { /*滚动条整体样式*/
    width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}

.pro-content::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px #07aca7;
    background: #07aca7;
}

.pro-content::-webkit-scrollbar-track { /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #ebebeb;
    width: 2px;
    border-radius: 0;
    background: #ebebeb;
}

.pro-content {
    height:228px;
    height: 12vw;
    width: 22vw;
    margin: 0 auto;
    padding: 0 15px;
    overflow-y: auto;
}

.pro-block {
    display: flex;
}

.pro-image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.pro-image-block img{
    transition:transform 2s;
    -webkit-transition: -webkit-transform 2s;
}
.pro-cont-block {
    flex:1;
    position: relative;
}

.pro-cont-block {
    padding: 30px 0px 0;

}

.pro-content p {
    margin: 0;
    font-size: 11.4px;
    line-height: 22.8px;
    color: #696969;
    text-align: justify;
    text-indent: 2em;
}
.pro-button-block{
    position: absolute;
    bottom:10px;
    left:0;
    right:0;
}
.pro-detail-button{
    width:30px;
    margin-left:35px;
    display: inline-block;
    cursor: pointer;
    transition:transform 1.2s;
    -webkit-transition:-webkit-transform 1.2s;
}
.pro-detail-button:hover{
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}
.pro-image-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-origin: content-box;
}

.pro-name {
    font-size: 21.3px;
    text-align: center;
}

.pro-subhead {
    color: #08ada7;
    margin: 5px 0 20px;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 1200px){
    .pro-content{
        height:9.6vw;
    }
    .technology-content{
        height:16vw;
    }
}
@media screen and (max-width: 768px){
    .pro-content{
        width:100%;
        display: none;
    }
    .product-item{
        width:100%;
    }
    .pro-cont-block{
        flex-basis:50%;
    }
    .pro-image-block{
        flex-basis:50%;
    }
    .pro-button-block{
        bottom:30px;
    }
}
/*end*/

.contact-area {
    width: 100%;
    height: auto;
}
/*
-- Contact Form Section
----------------------------------- */

.address-widget {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    margin-top: -33px;
}
.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0px auto 18px;
    background-color: #08ada7;
    text-align: center;
}
.contact-icon i {
    font-size: 34px;
    line-height: 65px;
    color: #fff;
}
.address-widget h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    color: #303030;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.address-widget p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0;
    color: #606060;
    margin: 0;
}
.form-area-row {
    width: 100%;
    margin-top: 110px;
}
.form-area-title {
    width: 100%;
    height: auto;
    text-align: center;
}
.form-area-title h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #303030;
    margin-bottom: 40px;
}
.form-area {}
.form-inline {}
.contact-form {
    margin: 0;
    padding: 0;
}
.contact-form li {
    height: auto;
    margin-bottom: 30px;
}
.contact-form .form-group {}
.contact-form .input-group {
    border: 1px solid #e7e7e7;
}
.blog-area {
    width: 100%;
    height: auto;
}

.vanish{
    display: none;
}

.requirement-link:focus{
    background-color: transparent;
}
.recruit-title{
    color: #333;
    font-weight:bold;
    display: block;
}
.about-area-inner .item img,.feature-img img,#about-silder-2 .item img,.technology-image-block img{
    transition:transform 1.2s;
    -webkit-transition: transform 1.2s;
}
.about-area-inner .item:hover img,.feature-img:hover img,#about-silder-2 .item:hover img,.technology-image-block:hover img{
    transform:scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}