/* scroll to reveal
html.sr .load-hidden {
  visibility: hidden;
} */


/* 
html {
  scroll-behavior: smooth;
} */

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: Helvetica, "PingFang SC", "Microsoft Yahei", sans-serif;
    font-size: 14px;
    /* background-color: #eee; */
}


/* 图片默认宽度100% */

img {
    width: 100%;
}


/* 定义变量 */

:root {
    --primary-color: #ff434f;
    --secondary-color: #e3e3e3;
    --text-color-lightest: #e7e9ec;
    --text-color-darker: #2e2e2e;
    --text-color-dark: #494949;
    --text-color-gray: #8b8b8b;
    --text-color-dark-gray: #727272;
    --text-color-light-gray: #c6c6c6;
    --backdrop-color: rgba(42, 42, 42, 0.69);
}


/* ============= 头部================== */


/* 头部 */


/* logo */


/* 固定导航下滑动画 */

@keyframes dropDown {
    from {
        transform: translateY(-100px);
    }
    to {
        transform: translateY(0);
    }
}


/* ============= 轮播 ================== */


/* ============= 内容区域 ================== */


/* 通用样式  */

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* 所有section都按grid布局 */

section {
    display: grid;
    /* 单元格都居中对齐 */
    justify-items: center;
    max-width: 1180px;
    padding: 0 80px;
}


/* 区域大标题 */

.title1 {
    /* justify-self: center; */
    /* position: relative; */
    font-size: 34px;
    color: var(--text-color-darker);
}


/* 大标题下方红线 */

.title1::after {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    transform: translateX(10%);
    margin-top: 14px;
    background-color: var(--primary-color);
}


/* 大d标题下方简介 */

.intro {
    margin: 28px 0 60px 0;
    font-size: 18px;
    color: var(--text-color-dark-gray);
}


/* 区域背景色，因为区域有最大宽度限制，用before来设置占满浏览器宽度 */

.section-bg {
    position: relative;
}

.section-bg::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #f9fbfb;
    width: 100vw;
    height: 100%;
    z-index: -1;
}


/* ============= 关于我们 ================== */


/* 关于我们 */


/* ============= 成功案例 ================== */


/* 成功案例 */


/* ============= 服务流程 ================== */


/* 区域 */

.service {
    padding-top: 131px;
}


/* 所有服务 */

.services {
    display: grid;
    /* 同关于我们 */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    column-gap: 38px;
    row-gap: 34px;
}


/* 服务 */

.service-item {
    /* 同关于我们 */
    display: grid;
    grid-template-areas: "icon title" "icon content";
    grid-template-columns: 70px 1fr;
    grid-template-rows: 1fr 3fr;
    /* 内边距 */
    padding: 24px;
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.06);
}


/* 服务图标 */

.service-item i.fas {
    grid-area: icon;
    font-size: 42px;
    color: var(--primary-color);
    padding-top: 6px;
}


/* 服务标题 */

.service-item .service-title {
    grid-area: title;
    color: var(--text-color-darker);
    font-size: 24px;
}


/* 服务内容 */

.service-item .service-content {
    grid-area: content;
    color: var(--text-color-gray);
    line-height: 30px;
    font-size: 16px;
    /* align-self: st; */
    margin-top: 8px;
}


/* ============= 团队介绍  ================== */


/* ============= 数据区域 ================== */


/* 数据 */

.data-section {
    max-width: unset;
    /* width: 100vw; */
    width: auto;
    height: 255px;
    /* 背景，自动拉伸，取中间部分 */
    background-image: url(https://pic.imgdb.cn/item/6189065f2ab3f51d917321a4.jpg);
    background-size: cover;
    background-position: center;
    /* 4列布局 */
    display: grid;
    grid-template-columns: repeat(4, minmax(auto, 220px));
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
}


/* 背景遮罩 */

.data-section::before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--backdrop-color);
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* 每个数据项的样式 */

.data-piece {
    width: 250px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    color: white;
    position: relative;
    z-index: 40;
}


/* 数据图标 */

.data-piece i.fas {
    font-size: 44px;
}


/* 数据数字 */

.data-piece .num {
    margin-top: 7px;
    font-size: 41px;
    font-weight: 600;
}


/* 数字单位 */

.data-piece .data-desc {
    font-size: 18px;
    font-weight: 500;
}


/* ============= 公司动态 ================== */


/* 公司动态 */


/* ============= 底部区域 ================== */


/* 底部 */

footer {
    margin-top: 124px;
    background-color: #181818;
    display: grid;
    justify-items: center;
    padding-top: 72px;
    padding-bottom: 24px;
}


/* 底部菜单 */

.footer-menus {
    width: 100%;
    max-width: 1180px;
    display: grid;
    /* 5列布局 */
    grid-template-columns: 2fr repeat(4, 1fr);
    padding: 0 80px;
    position: relative;
}


/* 导航菜单，靠右对齐 */

.footer-menu {
    justify-self: end;
}


/* 一级菜单 */

.menu-title {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
}


/* 联系我们，靠左对齐 */

.contact-us {
    justify-self: start;
    color: var(--text-color-lightest);
}


/* 联系我们，文字 */

.contact-us p:not(:first-child) {
    padding-bottom: 16px;
}


/* 菜单项 */

.menu-items li {
    list-style: none;
    padding-bottom: 8px;
}


/* 菜单链接 */

.menu-items li a {
    text-decoration: none;
    font-weight: 300;
    color: var(--text-color-lightest);
}


/* 备案信息 */

.icp-info {
    margin-top: 24px;
    margin-bottom: 16px;
}


/* 备案信息，版权信息 */

.icp-info,
.rights {
    /* 占满整行，-1代表最后一个编号 */
    grid-column: 1 / -1;
    /* 居中对齐 */
    justify-self: center;
    color: white;
}


/* 返回顶部按钮，默认不显示 */

.scrollToTop {
    display: none;
    position: relative;
    z-index: 300;
}


/* 返回顶部按钮 */

.scrollToTop a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
}


/* 自适应，小于1100象素时 */

@media (max-width: 1100px) {
    /* 导航设置为不可见，点击折叠按钮显示全屏导航 */
    header nav {
        display: none;
    }
    /* 头部平分两列布局 */
    header {
        grid-template-columns: repeat(2, 1fr);
    }
    /* 折叠菜单样式，显示出来 */
    header .burger {
        display: block;
        justify-self: end;
        cursor: pointer;
        position: relative;
        width: 20px;
        height: 6px;
    }
    /* 折叠按钮线条样式 */
    .burger-line1,
    .burger-line2,
    .burger-line3 {
        width: 20px;
        height: 2px;
        background-color: var(--text-color-lightest);
        /* position: relative; */
    }
    /* 上移第一条线 */
    .burger-line1 {
        position: absolute;
        top: -6px;
    }
    /* 下移第三条线 */
    .burger-line3 {
        position: absolute;
        top: 6px;
    }
    /* 全屏导航展开时，折叠按钮设置为深色 */
    header.open .burger-line1,
    header.open .burger-line2,
    header.open .burger-line3,
    header.sticky .burger-line1,
    header.sticky .burger-line2,
    header.sticky .burger-line3 {
        background-color: var(--text-color-darker);
        transition: 0.4s ease;
    }
    /* 全屏导航显示时，折叠按钮第一条线样式 */
    header.open .burger-line1 {
        transform: rotate(45deg) translate(3px, 5px);
    }
    /* 全屏导航显示时，折叠按钮第二条线样式 */
    header.open .burger-line2 {
        transform: translateX(5px);
        opacity: 0;
    }
    /* 全屏导航显示时，折叠按钮第三条线样式 */
    header.open .burger-line3 {
        transform: rotate(-45deg) translate(3px, -5px);
    }
    /* 全屏导航显示时，logo样式 */
    header.open .logo {
        color: var(--text-color-darker);
        z-index: 40;
    }
    /* 全屏导航显示时，导航菜单样式 */
    header.open nav {
        display: grid;
        /* 每行高度为内容的高度，不设置会平分全屏高度 */
        grid-auto-rows: max-content;
        /* 菜单项靠右对齐 */
        justify-items: end;
        position: absolute;
        top: 0;
        left: 0;
        background: white;
        width: 100vw;
        height: 100vh;
        padding: 0 40px;
        opacity: 0;
        /* 下滑效果 */
        animation: slideDown 0.6s ease-out forwards;
    }
    /* 全屏导航显示时，导航菜单项样式和动画 */
    header.open nav>* {
        margin: 4px 0;
        font-size: 18px;
        color: var(--text-color-darker);
        opacity: 0;
        animation: showMenu 0.5s linear forwards 0.4s;
    }
    /* 搜索按钮 */
    header.open nav>i.fas {
        margin-top: 10px;
    }
    /* 导航下滑动画 */
    @keyframes slideDown {
        from {
            height: 0;
            opacity: 0;
        }
        to {
            height: 100vh;
            padding-top: 80px;
            opacity: 1;
        }
    }
    /* 菜单项动画 */
    @keyframes showMenu {
        from {
            opacity: 0;
            transform: translateY(-1vh);
        }
        to {
            opacity: 1;
        }
    }
    /* 缩小业务流程标题字体 */
    .service-item .service-title {
        font-size: 20px;
    }
    /* 缩小业务流程内容字体和行距 */
    .service-item .service-content {
        font-size: 14px;
        line-height: 24px;
    }
    /* 团队成员改为两列 */
    .team-members {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 6vw;
        row-gap: 36px;
    }
    /* 公司动态改为两列 */
    .activities {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }
}


/* 小于992象素时 */

@media (max-width: 992px) {
    /* 轮播标题字号缩小  */
    .slide-caption h1 {
        font-size: 48px;
    }
    .slide-caption h3 {
        font-size: 18px;
    }
    /* 关于我们和业务流程设置为两列布局 */
    .features,
    .services {
        grid-template-columns: repeat(2, 1fr);
        /* 取消两行布局 */
        grid-template-rows: unset;
    }
    /* 数据部分设置为两列布局 */
    .data-section {
        /* 每列最小宽度为200象素，最大为自动 */
        grid-template-columns: repeat(2, minmax(200px, auto));
        row-gap: 24px;
        height: auto;
        padding: 24px 0;
        background-size: 200%;
    }
    /* 成功案例图片设置为3列 */
    .showcases .case-item {
        width: calc(100vw / 3);
    }
}


/* 小于768象素时 */

@media (max-width: 768px) {
    /* 区域的左右内边距设置为40象素 */
    section,
    .footer-menus {
        padding: 0 40px;
    }
    /* 关于我们和业务流程设置为1列 */
    .features,
    .services {
        grid-template-columns: 1fr;
    }
    /* 团队成员设置为1列 */
    .team-members {
        grid-template-columns: minmax(200px, 400px);
        /* column-gap: 6vw;
    row-gap: 36px; */
    }
    /* 数据部分设置为1列 */
    .data-section {
        grid-template-columns: 1fr;
        /* 增加背景尺寸 */
        background-size: 320%;
    }
    /* 公司动态设置为1列 */
    .activities {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }
    /* 成功案例图片显示为两列 */
    .showcases .case-item {
        width: calc(100vw / 2);
        height: 30vw;
    }
    /* 底部菜单设置为3列 */
    .footer-menus {
        grid-template-columns: 2fr repeat(2, 1fr);
        row-gap: 24px;
    }
    /* 联系我们占前两列 */
    .contact-us {
        grid-row: 1 / 3;
    }
    /* 菜单文字靠右对齐 */
    .footer-menu {
        text-align: right;
    }
}


/* 小于576象素 */

@media (max-width: 576px) {
    /* 缩小轮播标题文字，探索更多按钮文字 */
    .slide-caption h1 {
        font-size: 28px;
    }
    .slide-caption h3 {
        font-size: 14px;
    }
    .explore-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    /* 成功案例显示为1列 */
    .showcases .case-item {
        width: 100vw;
        height: 60vw;
    }
    /* 底部菜单显示为1列 */
    .footer-menus {
        grid-template-columns: 1fr;
        /* row-gap: 24px; */
    }
    /* 底部菜单左对齐 */
    .footer-menu {
        justify-self: start;
        text-align: left;
    }
}


/* 产品展示 */


/*Services*/

.service-item p {
    margin-top: 23px;
}

.main-border.blue {
    width: 36px;
    border-bottom: 2px solid #1dcfd1;
    margin: 18px auto 0 auto;
}

.main-border.violet {
    width: 36px;
    border-bottom: 2px solid #7248f5;
    margin: 18px auto 0 auto;
}

.main-border.orange {
    width: 36px;
    border-bottom: 2px solid #f05135;
    margin: 18px auto 0 auto;
}

.service-item i {
    font-size: 42px;
    width: 120px;
    line-height: 120px;
    height: 120px;
    text-align: center;
    margin: 0 auto 25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    background: none;
    border: 2px solid #f2f6f7;
}

.service-item.icon-blue i {
    color: #1dcfd1;
}

.service-item.icon-violet i {
    color: #7248f5;
}

.service-item.icon-orange i {
    color: #f05135;
}


/*  */

.section-wrap {
    padding: 120px 0;
}


/* 开始 */


/*-------------------------------------------------
= Table of Content


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


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


/* =  General
/*-------------------------------------------------*/

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
}

.oh {
    overflow: hidden;
}

.relative {
    position: relative;
}

.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.ml0 {
    margin-left: 0 !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mr10 {
    margin-right: 10px !important;
}

.b0 {
    border: 0 !important;
}

.section-wrap {
    padding: 120px 0;
}

.color-white {
    color: #fff !important;
}

.nopadding {
    padding: 0 !important;
}

 ::-moz-selection {
    color: #fff;
    background: #1dcfd1;
}

 ::-webkit-selection {
    color: #fff;
    background: #1dcfd1;
}

 ::selection {
    color: #fff;
    background: #1dcfd1;
}

.left {
    float: left;
}

.right {
    float: right;
}

.main-wrapper {
    padding-top: 120px;
}


/*Typography*/

a {
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    outline: none;
    color: #45464b;
}

a:hover {
    text-decoration: none;
    color: #1dcfd1;
}

a:focus {
    text-decoration: none;
    color: #000;
    outline: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

video {
    height: 100%;
    width: 100%;
}

body img {
    border: none;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    margin-top: 0;
}

h1 {
    color: #45464b;
    font-weight: 400;
    font-size: 36px;
}

h2 {
    color: #45464b;
    font-weight: 400;
    font-size: 32px;
}

h3 {
    color: #45464b;
    font-weight: 400;
    font-size: 24px;
}

h4 {
    color: #45464b;
    font-weight: 400;
    font-size: 20px;
}

h5 {
    color: #45464b;
    font-weight: 400;
    font-size: 18px;
}

h6 {
    color: #45464b;
    font-weight: 400;
    font-size: 16px;
}

p {
    font-size: 16px;
    color: #98a2a4;
    font-weight: normal;
    line-height: 27px;
}

.heading-white {
    color: #fff;
}

.bg-light {
    background-color: #ecf0f1;
}

.bg-dark {
    background-color: #1b1c1f;
}


/*-----------------------------------------------------------------------------
  
  KENBURNER RESPONSIVE BASIC STYLES OF HTML DOCUMENT
  
  Screen Stylesheet
  
  version:    1.0
  date:       07/27/11
  author:   themepunch
  email:      support@themepunch.com
  website:    http://www.themepunch.com
  -----------------------------------------------------------------------------*/

.boxedcontainer {
    max-width: 1170px;
    margin: auto;
    padding: 0px 30px;
}


/*********************************************
    - SETTINGS FOR BANNER CONTAINERS  -
  **********************************************/

.tp-banner-container {
    width: 100%;
    position: relative;
    padding: 0;
}

.tp-banner {
    width: 100%;
    position: relative;
}

.tp-banner-fullscreen-container {
    width: 100%;
    position: relative;
    padding: 0;
}


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


/* Preloader
  /*-------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* change if the mask should have another color then white */
    z-index: 99999;
    /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(../upload/preloader.GIF);
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
}


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


/* Navigation
  /*-------------------------------------------------------*/

.navbar-default {
    background: none;
}

.navigation {
    background: #fff;
    width: 100%;
    z-index: 500;
    line-height: 0;
}

.navigation.overlay {
    background: none;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.navigation.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -webkit-backface-visibility: hidden;
    line-height: 0;
}

.navigation.overlay.sticky {
    background: #fff;
}

.navigation.overlay .logo-dark,
.navigation.overlay.sticky .logo-light {
    display: none;
}

.navigation.overlay.sticky .logo-dark {
    display: block;
}

.navigation.overlay.sticky .logo {
    padding: 20px 0 19px;
}

.navigation.sticky>img {
    margin-bottom: 1px;
}

.logo {
    padding: 48px 0;
}

.navigation.sticky .logo {
    padding: 20px 0;
}

.navigation.sticky .navbar-nav li a,
.logo,
#search,
#cart,
#cart>a>span {
    transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}

.navbar-nav {
    margin: 0;
}

.navbar-collapse.in {
    overflow-y: auto;
}

.navbar-default .navbar-nav>li>a {
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    text-transform: uppercase;
    color: #45464b;
    font-size: 12px;
}

.navigation.overlay .navbar-nav>li>a {
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
}

.navigation.overlay.sticky .navbar-nav>li>a {
    color: #45464b;
}


/*DropDown*/

.dropdown-menu {
    margin: 0;
    padding: 0;
    border-top: 2px solid #1dcfd1;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.dropdown-menu .sub-menu {
    left: 100% !important;
    position: absolute;
    top: 0;
    margin-top: -1px;
}

.navbar-nav .dropdown-menu {
    border-radius: 0;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    background-color: #f5f9fa;
    color: #1dcfd1;
}

.navbar .sub-menu:before {
    border-bottom: 7px solid transparent;
    border-left: none;
    border-right: 7px solid rgba(0, 0, 0, 0.2);
    border-top: 7px solid transparent;
    left: -7px;
    top: 10px;
}

.navbar .sub-menu:after {
    border-top: 6px solid transparent;
    border-left: none;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    left: 10px;
    top: 11px;
    left: -6px;
}

.navbar-default .navigation.overlay .navbar-nav>.active>a,
.navbar-default .navigation.overlay .navbar-nav>.active>a:focus,
.navbar-default .navigation.overlay .navbar-nav>.active>a:hover,
.navbar-default .navigation .navbar-nav>.active>a,
.navbar-default .navigation .navbar-nav>.active>a:focus,
.navbar-default .navigation .navbar-nav>.active>a:hover {
    color: #1dcfd1;
}

.navbar-default .navigation .navbar-nav>li>a:hover {
    color: #1dcfd1;
}

.navigation.overlay .navbar-nav a:hover,
.navigation.overlay.sticky .navbar-nav a:hover {
    color: #1dcfd1;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
    color: #1dcfd1;
}

.navbar-default .navbar-collapse {
    border-color: #ecf0f1;
}


/*Search*/

#search {
    padding: 50px 15px;
}

.navigation.sticky #search {
    padding: 20px 15px 21px;
}

#search i {
    font-size: 20px;
    color: #45464b;
}

.search-wrap {
    padding: 8px;
    background-color: #1b1c1f;
}

.search-bar {
    width: 240px;
    overflow: hidden;
    display: none;
    position: absolute;
    left: -190px;
}

.search-trigger {
    cursor: pointer;
    z-index: 999;
}

.search-bar form i {
    position: absolute;
    right: 19px;
    top: 19px;
    color: #fff;
}

.search-bar .form-group {
    margin-bottom: 0;
}

.search-bar input {
    padding: 12px 20px;
    font-size: 16px;
    color: #98a2a4;
    background-color: #fff;
    border: 2px solid #ecf0f1;
    height: 50px;
    border-radius: 0;
}

.search-bar button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 50px;
    height: 50px;
    border: 0;
    cursor: pointer;
    background-color: #1dcfd1;
}


/*Cart*/

#cart {
    padding-top: 50px;
}

.navigation.sticky #cart {
    padding: 20px 0;
}

#cart i {
    font-size: 20px;
    color: #45464b;
}

#cart>a>span {
    display: block;
    position: absolute;
    top: 42px;
    left: 12px;
    font-size: 9px;
    color: #FFF;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background-color: #1dcfd1;
    border-radius: 50%;
}

.navigation.sticky #cart>a>span {
    top: 10px;
    left: 12px;
}


/*Navigation Toggle*/

.navbar-toggle {
    margin-top: 13px;
    border: none;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #45464b;
    width: 18px;
}

.navbar-default .navbar-toggle:focus .icon-bar,
.navbar-default .navbar-toggle:hover .icon-bar {
    background-color: #1dcfd1;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #ecf0f1;
}


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


/* =  Owl Carousel
  /*-------------------------------------------------*/

.owl-carousel {
    overflow: hidden;
}

.owl-buttons {
    position: static;
}

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

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-controls .owl-buttons div {
    background: #1b1c1f;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    width: 31px;
    height: 64px;
    margin: -32px 0 0 0;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    font-family: "FontAwesome";
}

.owl-prev,
.owl-next {
    display: block;
    position: absolute;
    top: 50%;
    line-height: 64px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    z-index: 6;
    -webkit-transition: all 0.30s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.30s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.30s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.30s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.30s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.owl-pagination {
    margin-top: 38px;
    position: absolute;
    left: 0;
    display: block;
    text-align: center;
    width: 100%;
}

.owl-page {
    display: inline-block;
    padding: 6px 6px;
    position: relative;
}

.owl-page span {
    display: block;
    position: relative;
    width: 7px;
    height: 7px;
    margin: 2px;
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #fff;
    z-index: 500;
}

.owl-theme .owl-controls .owl-page.active span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 0;
    opacity: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #1dcfd1;
}


/* Clickable class fix problem with hover on touch devices */


/* Use it for non-touch hover action */

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}


/* Styling Pagination*/

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
}


/* preloading images */

.owl-item.loading {
    min-height: 150px;
    background: url(owl-carousel/AjaxLoader.gif) no-repeat center center
}


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


/* Content Home Multipage
  /*-------------------------------------------------------*/


/*Services*/

.service-item p {
    margin-top: 23px;
}

.main-border.blue {
    width: 36px;
    border-bottom: 2px solid #1dcfd1;
    margin: 18px auto 0 auto;
}

.main-border.violet {
    width: 36px;
    border-bottom: 2px solid #7248f5;
    margin: 18px auto 0 auto;
}

.main-border.orange {
    width: 36px;
    border-bottom: 2px solid #f05135;
    margin: 18px auto 0 auto;
}

.service-item i {
    font-size: 42px;
    width: 120px;
    line-height: 120px;
    height: 120px;
    text-align: center;
    margin: 0 auto 25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    background: none;
    border: 2px solid #f2f6f7;
}

.service-item.icon-blue i {
    color: #1dcfd1;
}

.service-item.icon-violet i {
    color: #7248f5;
}

.service-item.icon-orange i {
    color: #f05135;
}


/*Featured Works*/

#owl-featured-works .item {
    width: 100%;
    padding: 0;
    margin: 0;
}

#owl-featured-works .item img {
    width: 100%;
    height: auto;
}

.portfolio-overlay {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}

.project-icons {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -41px;
    margin-top: -16px;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.project-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    color: #45464b;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.project-icons a:hover {
    color: #fff;
    background-color: #1dcfd1;
}

.item:hover .portfolio-overlay .project-icons {
    position: absolute;
    top: 35%;
    left: 50%;
}

.portfolio-overlay h3 a {
    color: #fff;
    font-size: 18px;
}

.portfolio-overlay h3 a:hover {
    color: #1dcfd1;
}

.portfolio-overlay .featured-item-description span a {
    color: #fff;
}

.portfolio-overlay .featured-item-description span a:hover {
    color: #1dcfd1;
}

.featured-item-description {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.item:hover .portfolio-overlay .featured-item-description {
    position: absolute;
    bottom: 60%;
    left: 0;
    width: 100%;
}

.item:hover .portfolio-overlay,
.work-img:hover .portfolio-overlay {
    opacity: 1;
}

.work-img:hover .portfolio-overlay .project-icons {
    position: absolute;
    top: 50%;
    left: 50%;
}

.featured-works h2 {
    padding: 86px 0;
}


/*Call to Action*/

.call-to-action {
    background-color: #1dcfd1;
    padding: 110px 0;
}

.call-to-action h2 {
    font-size: 54px;
    color: #fff;
    margin-bottom: 0;
}

h3.cta-subheading {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}

#cta-button-solid,
#cta-button-stroke {
    margin: 0 5px;
}

#cta-button-stroke {
    padding: 11px 35px;
}

#cta-button-solid {
    color: #1dcfd1;
}

#cta-button-solid:hover {
    color: #fff;
    border: 2px solid #fff;
}


/*Core Features*/

.core-features.style-1,
.core-features.style-2 {
    padding: 120px 0 65px 0;
}

.promo-img img {
    width: 100%;
}

.subheading.text-center {
    font-family: "Lato", Helvetica, Arial, "Microsoft YaHei", sans-serif;
    color: #98a2a4;
    font-size: 18px;
    font-style: italic;
}

.core-features.style-1 .features-item:first-child.features-right {
    margin-top: 156px;
}

.core-features.style-1 .features-item:first-child {
    margin-top: 156px;
}

.features-item.features-right {
    margin-top: 38px;
    padding: 0 72px 0 0;
}

.features-item {
    margin-top: 38px;
    padding: 0 0 0 72px;
    position: relative;
}

.features-item.features-right .features-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    background-color: #1dcfd1;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 25px;
    line-height: 46px;
    left: auto;
    right: 0;
}

.features-item .features-icon {
    width: 46px;
    height: 46px;
    background-color: #1dcfd1;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 25px;
    line-height: 46px;
    position: absolute;
    left: 0;
}


/*Results*/

.results {
    background-color: #7248f5;
    padding: 100px 0;
}

.statistic span {
    font-size: 60px;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    color: #fff;
}

.counter-text {
    color: #fff;
}


/*Our Team*/

#team {
    position: relative;
    margin-top: 50px;
}

.team-member {
    width: 24.6%;
    margin: 0 6px 0 0;
    float: left;
    webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.team-member:last-child {
    margin: 0;
}

.team-member .team-img img {
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
}

.team-details {
    background-color: #fff;
    padding: 36px 20px 45px 20px;
}

.team-details span {
    font-style: italic;
    color: #98a2a4;
    font-size: 13px;
}

.team-title {
    margin-bottom: 6px;
}

.team-socials {
    margin-top: 28px;
}

.team-socials i.fa.fa-facebook,
.team-socials i.fa.fa-twitter,
.team-socials i.fa-google-plus,
.team-socials i.fa-envelope {
    margin: 0 12px;
}


/*About us / Skills*/

.about-us-skills {
    background-color: #1b1c1f;
}


/*From Blog*/

.entry-text {
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 39px;
}

.entry-text:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.entry-text span.blog-data {
    font-size: 12px;
    color: #c2cbcd;
}


/*Promo Boxes*/

.promo-box-first {
    padding: 140px 100px;
    background-color: #a747f5;
    /*any color can be here*/
}

.promo-box-second {
    padding: 140px 100px;
    background-color: #9148f5;
    /*any color can be here*/
}

.promo-box-third {
    padding: 140px 100px;
    background-color: #7248f5;
    /*any color can be here*/
}

.promo-boxes h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.promo-boxes p.white {
    color: #fff;
}

.promo-box-first .icon.icon-Bulb,
.promo-box-second .icon.icon-FullScreen,
.promo-box-third .icon.icon-ChemicalGlass {
    font-size: 300px;
    position: absolute;
    top: 20%;
    right: 5%;
    color: rgba(255, 255, 255, 0.1);
}

.promo-boxes .btn.btn-large.btn-rounded.btn-light-transparent {
    margin-top: 30px;
    position: relative;
    z-index: 3;
}

.promo-box-first .btn:hover {
    color: #a747f5;
}

.promo-box-second .btn:hover {
    color: #9148f5;
}

.promo-box-third .btn:hover {
    color: #7248f5;
}


/*Testimonials Slider*/

.testimonials-slider {
    background-image: url(../upload/testimonials_bg.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-slider .owl-pagination {
    position: relative;
}

#owl-testimonials {
    margin-top: 50px;
}

#owl-testimonials .owl-item .item,
#owl-related-works .owl-item .item {
    margin: auto 15px;
}

.testimonials-box {
    background-color: #fff;
    border-radius: 4px;
    padding: 60px 40px 40px 40px;
    margin-top: 20px;
}

.testimonials-img {
    display: block;
    float: none;
    margin: 0 auto -55px auto;
    border-radius: 50%;
}

.testimonials-box span {
    font-style: italic;
    color: #98a2a4;
    font-size: 13px;
}

.testimonials-box p {
    margin-top: 7px;
}

.testimonial-name {
    margin-bottom: 6px;
}


/*Partners*/

.partners-dark {
    background-color: #1b1c1f;
    padding: 60px 0;
}

.partners-dark img,
.partners-violet img {
    width: 100%;
}


/*Contact*/

#contact-form {
    margin-bottom: 10px;
}

#comment {
    height: 164px;
}

#submit-message {
    background-color: #1dcfd1;
    color: #fff;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 18px;
    padding: 11px 45px;
    border-radius: 25px;
    border: 2px solid #1dcfd1;
    width: 100%;
    margin-top: 10px;
}

#submit-message:hover {
    background-color: #fff;
    color: #45464b;
    border: 2px solid #dce4e6;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.contact-item:first-of-type {
    margin-top: 38px;
}

.contact-item {
    position: relative;
    padding-left: 70px;
    margin-top: 30px;
}

.contact-item span,
.contact-item a {
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 53px;
}

.contact-item p {
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 32px;
    color: #45464b;
}

.contact-icon {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 2px solid #f2f6f7;
    text-align: center;
    position: absolute;
    left: 0;
}

.contact-icon i {
    font-size: 22px;
    color: #1dcfd1;
    line-height: 50px;
}

#contact-form .message {
    height: 50px;
    width: 100%;
    font-size: 13px;
    line-height: 50px;
    text-align: center;
    float: none;
    margin-top: 20px;
    display: none;
}

#contact-form .message.error {
    color: #fff;
    background-color: #f05135;
}

#contact-form .message.success {
    color: #fff;
    background-color: #92d11d;
}


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


/* Footer Multipage
  /*-------------------------------------------------------*/

#footer {
    background-color: #1b1c1f;
}

.footer-widgets {
    padding: 120px 0;
}

.social-icons {
    margin-top: 24px;
}

.social-icons i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #16171a;
    color: #98a2a4;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.social-icons a:hover i.fa.fa-facebook {
    color: #fff;
    background-color: #3b5998;
}

.social-icons a:hover i.fa.fa-twitter {
    color: #fff;
    background-color: #00acee;
}

.social-icons a:hover i.fa.fa-google-plus {
    color: #fff;
    background-color: #dd4b39;
}

.social-icons a:hover i.fa.fa-linkedin {
    color: #fff;
    background-color: #0e76a8;
}

.social-icons a:hover i.fa.fa-pinterest-p {
    color: #fff;
    background-color: #c8232c;
}

.social-icons a:hover i.fa.fa-instagram {
    color: #fff;
    background-color: #3f729b;
}

.footer-widgets a {
    color: #98a2a4;
}

.footer-widgets a:hover {
    color: #1dcfd1;
}

.footer-widgets h5 {
    margin-bottom: 20px;
}

.footer-widgets .office-1 p:first-child,
.footer-widgets .office-2 p:first-child {
    color: #fff;
}

.footer-widgets .office-2 {
    margin-top: 29px;
}

.footer-posts h6 {
    font-family: "Lato", Helvetica, Arial, "Microsoft YaHei", sans-serif;
}

.footer-entry {
    padding: 16px 0;
    border-bottom: 1px solid #2a2b2f;
}

.footer-entry:first-child {
    padding-top: 5px;
}

.footer-entry:last-child {
    border-bottom: none;
}

.footer-entry span {
    color: #45464b;
    font-size: 12px;
}

.footer-entry span a {
    color: #45464b;
}

ul.recent-works {
    margin-top: 29px;
}

.recent-works li {
    position: relative;
    float: left;
    margin: 0 2px 2px 0;
}

.recent-works img {
    border-radius: 2px;
}

.recent-works li:hover img {
    opacity: 0.5;
}

.bottom-footer {
    background-color: #16171a;
    padding: 53px 0;
}

.copyright {
    color: #98a2a4;
}

.copyright a {
    color: #fff;
}

.copyright a:hover {
    color: #1dcfd1;
}


/*Go to Top*/

#back-to-top {
    display: block;
    z-index: 500;
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    font-size: 20px;
    position: fixed;
    bottom: -40px;
    right: 20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #25272a;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#back-to-top i {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#back-to-top a {
    width: 40px;
    height: 40px;
    display: block;
    color: #c2cbcd;
}

#back-to-top.show {
    bottom: 20px;
}

#back-to-top:hover {
    background-color: #1dcfd1;
}

#back-to-top:hover i {
    color: #fff;
}


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


/* Onepage
  /*-------------------------------------------------------*/


/*Intro*/

.main-border.blue.border-left {
    margin: 18px auto 37px 0;
}

.intro-subheading {
    font-size: 22px;
    font-family: "Lato", Helvetica, Arial, "Microsoft YaHei", sans-serif;
    color: rgb( 152, 162, 164);
    font-style: italic;
    line-height: 1.636;
}


/*Featured Works*/

#owl-featured-works-one-img .item img {
    display: block;
    width: 100%;
    height: auto;
}

.featured-wide-slider {
    padding-bottom: 120px;
}

.featured-wide-slider .owl-pagination {
    position: relative;
}


/*Services*/

.service-item-box {
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    padding: 70px 30px 40px 30px;
    margin-top: 40px;
}

.service-item-box p {
    margin-bottom: 16px;
}

.service-item-box h3 {
    font-size: 16px;
}

.service-item-box i {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 80px;
}

.service-item-box.first a {
    color: #7248f5;
}

.service-item-box.second a {
    color: #30c3ff;
}

.service-item-box.third a {
    color: #f05135;
}

.service-item-box.fourth a {
    color: #92d11d;
}

.service-item-box.first i {
    background-color: #7248f5;
}

.service-item-box.second i {
    background-color: #30c3ff;
}

.service-item-box.third i {
    background-color: #f05135;
}

.service-item-box.fourth i {
    background-color: #92d11d;
}

.service-item-box.first a:hover,
.service-item-box.second a:hover,
.service-item-box.third a:hover,
.service-item-box.fourth a:hover {
    color: #45464b;
}


/*Fun Facts*/

.results-parallax {
    background: url(../upload/onepage/results_parallax.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.results-parallax .statistic span {
    color: #1dcfd1;
}

.counter-text {
    color: #fff;
}


/*Portfolio*/

.portfolio-filter {
    list-style: none;
    margin-bottom: 40px;
    text-align: center;
    cursor: default;
    font-size: 15px;
}

.portfolio-filter a.active {
    color: #45464b;
}

.portfolio-filter a {
    display: inline-block;
    margin: 0 22px;
    color: #98a2a4;
    text-decoration: none;
    -webkit-transition: all 0.37s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    cursor: pointer;
}

.portfolio-filter a:hover {
    color: #1dcfd1;
}

.work-container {
    margin-bottom: 30px;
    box-shadow: 0 1px 1px 1px rgba( 165, 173, 175, 0.15);
    -moz-box-shadow: 0 1px 1px 1px rgba( 165, 173, 175, 0.15);
    -webkit-box-shadow: 0 1px 1px 1px rgba( 165, 173, 175, 0.15);
}

.work-item {
    position: relative;
}

.work-item>a {
    display: block;
    position: relative;
}

.work-item img {
    height: auto;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}

.work-item .work-description {
    padding: 40px 20px;
}

.work-item .work-description {
    background-color: #fff;
}

.work-item .work-description h3 {
    font-size: 16px;
}

.work-item .work-description>span>a {
    color: #bac4c6;
    font-size: 14px;
}

.work-item .work-description>span>a:hover {
    color: #1dcfd1;
}

.work-item .work-overlay {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    z-index: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.work-img {
    position: relative;
}

.work-item .work-overlay:hover {
    opacity: 1;
}

.work-item .work-overlay .btn {
    position: absolute;
    top: 0;
    left: 50%;
    margin: -12px -61px;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.work-item:hover .work-overlay .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -12px -61px;
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}


/*Call to Action Parallax*/

.call-to-action.parallax {
    background-image: url(../upload/onepage/cta_parallax.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#cta-button-blue-solid {
    background-color: #1dcfd1;
    color: #fff;
}

#cta-button-blue-solid:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}


/*Core Features Style-2*/

.core-features.style-2 .features-item:first-child {
    margin-top: 100px;
}


/*Pricing Tables Parallax*/

#pricing-parallax {
    background-image: url(../upload/onepage/pricing_parallax.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing-container {
    margin-top: 50px;
}

.style-2 .pricing-4-col {
    width: 24.6%;
    margin: 0 6px 0 0;
    float: left;
    background-color: #fff;
    position: relative;
    text-align: center;
    box-shadow: 0px 1px 2px 0px rgba( 165, 173, 175, 0.15);
}

.pricing-4-col:last-child {
    margin: 0;
}

.pricing-title {
    background-color: #1b1c1f;
    padding: 37px 30px;
}

.pricing-title h3 {
    font-size: 16px;
    color: #1dcfd1;
}

.pricing-title.best-price {
    background-color: #1dcfd1;
}

.pricing-title.best-price h3 {
    color: #fff;
}

.pricing-title.best-price>span {
    color: #fff;
}

.pricing-price {
    font-size: 42px;
    color: #fff;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    position: relative;
}

.pricing-currency {
    display: inline-block;
    vertical-align: top;
    margin: 8px -6px 0 6px;
    font-size: 24px;
}

.pricing-title>span {
    display: block;
    font-size: 14px;
    color: #98a2a4;
}

.pricing-features {
    padding: 30px 40px;
    color: #98a2a4;
}

.pricing-features li {
    border-bottom: 1px solid #ecf0f1;
    padding: 10px 0;
}

.pricing-button {
    padding: 0 40px 50px 40px;
}


/*Testimonials Boxes*/

.testimonials-boxes .testimonials-box {
    padding: 40px 40px 50px 40px;
}

.testimonials-boxes .testimonials-img {
    position: absolute;
}

.testimonials-boxes .testimonials-box {
    margin-top: 30px;
}

.testimonials-boxes .testimonial {
    padding-left: 100px;
    margin-top: 16px;
}

.testimonials-boxes .testimonial p {
    font-size: 16px;
    font-style: italic;
}


/*Partners Violet*/

.partners-violet {
    background-color: #7248f5;
    padding: 60px 0;
}


/*From Blog 3 Col*/

.blog-col-3 {
    box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
}

.blog-col-3 .entry-meta li {
    display: inline;
    margin-right: 7px;
    font-size: 14px;
    color: #bac4c6;
}

.blog-col-3 .entry-img {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.blog-col-3 .entry-img img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

#from-blog-3-col .blog-col-3 .entry-img:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.blog-col-3 .entry-box {
    background: #fff;
    padding: 40px 20px;
}

.blog-col-3 .entry-title h3 {
    font-size: 16px;
    line-height: 1.5;
}

.blog-col-3 .entry-meta li a {
    color: #bac4c6;
}

.blog-col-3 .entry-meta li a:hover {
    color: #1dcfd1;
}

.blog-col-3 .entry-meta li:before {
    content: '/';
    margin-right: 7px;
}

.blog-col-3 .entry-meta li:first-child:before {
    content: '';
}

.blog-col-3 .entry-content {
    margin-top: 17px;
}

.blog-col-3 .entry-content a {
    margin-top: 18px;
}


/*Contact Parallax*/

#contact-parallax {
    background-image: url(../upload/onepage/contact_parallax.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-form .form-control {
    border: 2px solid rgba(236, 240, 241, 0.15);
    background-color: transparent;
}

.parallax-form input[type="text"],
.parallax-form input[type="email"],
.parallax-form textarea {
    color: #fff;
}

.parallax-form input::-webkit-input-placeholder,
.parallax-form textarea::-webkit-input-placeholder {
    color: #fff;
}

.parallax-form input:-moz-placeholder,
.parallax-form textarea:-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.parallax-form input::-moz-placeholder,
.parallax-form textarea::-moz-placeholder {
    opacity: 1;
}

.parallax-form input:-ms-input-placeholder,
.parallax-form textarea:-ms-input-placeholder {
    color: #fff;
}

.parallax-form input:focus,
.parallax-form textarea:focus,
.parallax-form keygen:focus,
.parallax-form select:focus {
    color: #fff;
    border-color: #fff;
    outline: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.parallax-form textarea.form-control {
    font-size: 16px;
}

#contact-parallax .contact-icon {
    border: 2px solid rgba(236, 240, 241, 0.15);
}

#contact-parallax .contact-icon i {
    color: #fff;
}

#contact-parallax .contact-item span,
#contact-parallax .contact-item p,
#contact-parallax .contact-item a {
    color: #fff;
}

#contact-parallax .contact-item a:hover {
    color: #1dcfd1;
}

#contact-parallax #submit_contact:hover {
    background-color: #fff;
    color: #1dcfd1;
    border: 2px solid transparent;
}


/*Footer Minimal*/

#footer.minimal {
    padding: 120px 0;
    text-align: center;
}

#footer.minimal .copyright {
    margin-top: 30px;
}

.social-icons.large {
    margin-top: 0;
}

.social-icons.large i {
    width: 42px;
    height: 42px;
    line-height: 42px;
}


/*Page Title / Breadcrumbs*/

#page-title {
    padding: 60px 0;
    background-image: url(../upload/breadcrumbs_bg.jpg);
    background-position: center center;
    background-repeat: repeat;
    position: relative;
}

#page-title .container {
    position: relative;
}

#page-title h1 {
    color: #fff;
    font-size: 40px;
    line-height: 1;
    margin: 0;
}

.breadcrumb {
    position: absolute;
    right: 15px;
    width: auto;
    background-color: transparent;
    top: 50%;
    padding: 0;
    margin: -10px 0 0 0;
    font-size: 14px;
}

.breadcrumb li.active {
    color: #fff;
}

.breadcrumb a {
    color: #98a2a4;
}

.breadcrumb a:hover {
    color: #1dcfd1;
}

.breadcrumb>li+li:before {
    color: rgba( 152, 162, 164, 0.5);
}


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


/* Shortcodes
  /*-------------------------------------------------------*/


/*Accodion*/

.accordion>.panel-content {
    padding: 10px 20px 20px;
}

.accordion>.acc-panel>a {
    display: block;
    position: relative;
    text-decoration: none;
    padding: 13px 20px;
    background-color: #ecf0f1;
    color: #45464b;
    margin-bottom: 10px;
}

.accordion>.acc-panel>a.active {
    color: #1dcfd1;
}

.accordion>.acc-panel>a.active:after {
    font-family: "ElegantIcons";
    position: absolute;
    content: "\4c";
    right: 20px;
    color: #1dcfd1;
    font-weight: normal;
    font-size: 16px;
}

.accordion>.acc-panel>a:after {
    font-family: "ElegantIcons";
    position: absolute;
    content: "\4b";
    right: 20px;
    color: #45464b;
    font-weight: normal;
    font-size: 16px;
}

.accordion>.acc-panel>a:hover {
    color: #1dcfd1;
}


/*Tabs*/

.nav-tabs {
    border-bottom: none;
}

.nav.nav-tabs>li.active>a {
    border: 1px solid #ecf0f1;
    background-color: rgb( 255, 255, 255);
    padding: 13px 20px;
    color: #1dcfd1;
}

.nav-tabs>li>a {
    border: 1px solid transparent;
    border-radius: 0;
}

.nav.nav-tabs>li>a {
    padding: 13px 20px;
    background-color: #ecf0f1;
    margin-right: 3px;
}

.nav-tabs>li>a:hover {
    border-color: transparent;
}

.tab-content>.tab-pane>p {
    padding: 20px 0;
}


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


/* Buttons
  /*-------------------------------------------------------*/

.buttons-section {
    padding: 0 0 120px;
}

.buttons-section a.btn {
    margin-top: 30px;
}

.btn {
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    border-radius: 0;
    border: 2px solid transparent;
}

.btn-rounded {
    border-radius: 70px;
}

.btn-stroke {
    border: 2px solid #dce4e6;
}

.btn-small {
    padding: 7px 20px;
    font-size: 13px;
}

.btn-medium {
    padding: 9px 30px;
    font-size: 15px;
}

.btn-large {
    padding: 11px 45px;
    font-size: 18px;
}

.btn-light-solid {
    background-color: #fff;
    color: #45464b;
}

.btn-blue {
    background-color: #1dcfd1;
    color: #fff;
}

.btn-orange {
    background-color: #f05135;
    color: #fff;
}

.btn-violet {
    background-color: #7248f5;
    color: #fff;
}

.btn-light-transparent {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-yellow {
    background-color: #ffc63e;
    color: #fff;
}

.btn-green {
    background-color: #92d11d;
    color: #fff;
}

.btn-light-blue {
    background-color: #30c3ff;
    color: #fff;
}

.btn-pink {
    background-color: #ef6393;
    color: #fff;
}


/*Hovers*/

.btn-light-transparent:hover {
    background-color: #fff;
    color: #1dcfd1;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-light-solid:hover {
    background-color: #1dcfd1;
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-small.btn-stroke:hover {
    background-color: #1dcfd1;
    color: #fff;
    border: 2px solid #1dcfd1;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-medium.btn-stroke:hover {
    background-color: #1dcfd1;
    color: #fff;
    border: 2px solid #1dcfd1;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-large.btn-stroke:hover {
    background-color: #1dcfd1;
    color: #fff;
    border: 2px solid #1dcfd1;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-blue:hover {
    background-color: transparent;
    color: #1dcfd1;
    border: 2px solid #1dcfd1;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-orange:hover {
    background-color: transparent;
    color: #f05135;
    border: 2px solid #f05135;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-violet:hover {
    background-color: transparent;
    color: #7248f5;
    border: 2px solid #7248f5;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-yellow:hover {
    background-color: transparent;
    color: #ffc63e;
    border: 2px solid #ffc63e;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-green:hover {
    background-color: transparent;
    color: #92d11d;
    border: 2px solid #92d11d;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-light-blue:hover {
    background-color: transparent;
    color: #30c3ff;
    border: 2px solid #30c3ff;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-pink:hover {
    background-color: transparent;
    color: #ef6393;
    border: 2px solid #ef6393;
    transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}


/*Pie Charts*/

.pie-charts {
    padding: 0 0 120px;
}

.chart {
    position: relative;
    display: inline-block;
    width: 190px;
    height: 190px;
    text-align: center;
}

.chart canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.percent {
    display: inline-block;
    line-height: 190px;
    z-index: 2;
    font-size: 26px;
    font-family: 'Varela Round', "Microsoft YaHei", sans-serif;
}

.percent:after {
    content: '%';
    margin-left: 0.1em;
    font-size: .8em;
}


/*Progress Bars*/

.progress-bars {
    padding: 0 0 120px;
}

.progress-bar {
    -webkit-transition: width 1.5s ease-in-out;
    transition: width 1.5s ease-in-out;
    box-shadow: none;
}

.skills-progress {
    margin-top: 40px;
    margin-bottom: 27px;
}

.skills-progress.dark h6 {
    color: #fff;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 10px;
}

.skills-progress.light h6,
.skills-progress.light-gradient h6 {
    color: #45464b;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 10px;
}

.skills-progress.dark h6 span {
    color: #fff;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 15px;
    float: right;
}

.skills-progress.light h6 span {
    color: #45464b;
    font-family: 'Varela Round', Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-size: 15px;
    float: right;
}

.progress-dark.meter {
    height: 15px;
    /* Can be anything */
    border-radius: 2px;
    position: relative;
    background: #0f1011;
    margin-bottom: 27px;
    padding: 4px;
}

.progress-light.meter {
    height: 15px;
    /* Can be anything */
    border-radius: 2px;
    position: relative;
    background: #ecf0f1;
    margin-bottom: 27px;
    padding: 4px;
}

.progress-gradient.meter {
    height: 15px;
    /* Can be anything */
    border-radius: 2px;
    position: relative;
    background: #ecf0f1;
    margin-bottom: 27px;
}

.meter.orange>.progress-bar {
    display: block;
    height: 7px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background-color: #f05135;
    /* paste any color here */
}

.meter.yellow>.progress-bar {
    display: block;
    height: 7px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background-color: #ffc63e;
    /* paste any color here */
}

.meter.violet>.progress-bar {
    display: block;
    height: 7px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background-color: #7248f5;
    /* paste any color here */
}

.meter.blue>.progress-bar {
    display: block;
    height: 7px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background-color: #1dcfd1;
    /* paste any color here */
}

.meter.gradient>.progress-bar {
    display: block;
    height: 15px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background: -webkit-linear-gradient(left, #1dcfd1, #7248f5);
    background: -o-linear-gradient(right, #1dcfd1, #7248f5);
    background: -moz-linear-gradient(right, #1dcfd1, #7248f5);
    background: linear-gradient(to right, #1dcfd1, #7248f5);
    /* paste any colors here */
}


/*Alert Boxes*/

.alert-boxes {
    padding: 0 0 120px;
}

.alert {
    padding: 14px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: 0;
}

.alert-dismissible .close {
    right: 0;
    top: 0;
    color: inherit;
    position: relative;
}

.close {
    opacity: 1;
    text-shadow: none;
}

.alert-success {
    color: #fff;
    background-color: #92d11d;
}

.alert-info {
    color: #fff;
    background-color: #1dcfd1;
}

.alert-warning {
    color: #fff;
    background-color: #fcad23;
}

.alert-danger {
    color: #fff;
    background-color: #f05135;
}


/*Icon Boxes Style-1*/

.icon-boxes.style-1 {
    padding: 0 0 120px;
}


/*Icon Boxes Style-2*/

.icon-boxes.style-2 {
    padding: 0 0 120px;
}

.icon-boxes.style-2 .service-item-box {
    border: 2px solid #f2f6f7;
}

.icon-boxes.style-2 .service-item-box.first i {
    color: #7248f5;
    background-color: #fff;
    border: 2px solid #f2f6f7;
}

.icon-boxes.style-2 .service-item-box.second i {
    color: #30c3ff;
    background-color: #fff;
    border: 2px solid #f2f6f7;
}

.icon-boxes.style-2 .service-item-box.third i {
    color: #f05135;
    background-color: #fff;
    border: 2px solid #f2f6f7;
}

.icon-boxes.style-2 .service-item-box.fourth i {
    color: #92d11d;
    background-color: #fff;
    border: 2px solid #f2f6f7;
}


/*Icon Boxes Style-3*/

.icon-boxes.style-3 {
    background-color: #ecf0f1;
}


/*Hi Icons*/

.hi-icon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    margin: 15px 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #000;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}


/* Effect 1 */

.icon-effect-1 .hi-icon {
    background: rgba(255, 255, 255, 1);
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}


/*Blue Icon*/

.icon-effect-1.icon-blue .hi-icon:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #1dcfd1;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}

.icon-effect-1a.icon-blue .hi-icon:hover {
    background: rgba(29, 207, 209, 1);
    color: #fff;
}


/*Violet Icon*/

.icon-effect-1.icon-violet .hi-icon:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #7248f5;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}

.icon-effect-1a.icon-violet .hi-icon:hover {
    background: rgba(114, 72, 245, 1);
    color: #fff;
}


/*Orange Icon*/

.icon-effect-1.icon-orange .hi-icon:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #f05135;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}

.icon-effect-1a.icon-orange .hi-icon:hover {
    background: rgba(240, 81, 53, 1);
    color: #fff;
}

.icon-effect-1a .hi-icon:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}


/*Core features*/

.core-features .row.mt-38 {
    margin-top: -38px;
}


/*Call to Action Style-2*/

.call-to-action.style-2 {
    padding: 75px 0;
}

.call-to-action.style-2 h2 {
    font-size: 32px;
    margin-top: 10px;
}

.call-to-action.style-2 a {
    float: right;
}


/*Forms*/

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 12px 18px;
    border: 2px solid #ecf0f1;
    background-color: #fafcfc;
    height: 50px;
    border-radius: 0;
    font-size: 16px;
    color: #98a2a4;
}

.form-control:focus {
    border-color: #1dcfd1;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="color"],
textarea,
select {
    font-size: 16px;
    font-size: 14px;
    color: #98a2a4;
    margin-bottom: 10px;
}

input:focus,
textarea:focus,
keygen:focus,
select:focus {
    border-color: #1dcfd1;
    outline: none;
    ;
}


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


/* =  Blog Standard
  /*-------------------------------------------------*/

.blog-standard {
    background-color: #f5f9fa;
}

.entry-item {
    box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    background-color: #fff;
    margin-bottom: 50px;
}

.entry {
    padding: 40px;
}

.blog-standard .entry-img {
    position: relative;
    overflow: hidden;
}

.blog-standard .entry-title h2 {
    font-size: 24px;
}

.blog-standard .entry-meta li {
    display: inline;
    margin-right: 7px;
    color: #bac4c6;
}

.entry-meta li {
    font-size: 14px;
}

.blog-standard .entry-meta li a {
    color: #bac4c6;
}

.blog-standard .entry-meta li a:hover {
    color: #1dcfd1;
}

.blog-standard .entry-meta li:before {
    content: '/';
    margin-right: 7px;
}

.blog-standard .entry-meta li:first-child:before {
    content: '';
    margin-right: 0;
}

.blog-standard .entry-content {
    margin-top: 17px;
}

.blog-standard .entry-content a.btn {
    margin-top: 18px;
}


/*gallery post*/

.blog-standard .owl-pagination,
.blog-masonry .owl-pagination,
.portfolio-single .owl-pagination {
    bottom: 20px;
    margin-top: 0;
}


/*video post*/

.entry-video iframe {
    width: 100%;
    display: block;
    border: 0;
}


/*quote post*/

.blog-standard .entry-item blockquote>p>a,
.blog-masonry .entry-box blockquote>p>a {
    color: #98a2a4;
}

.blog-standard .entry-item blockquote>p>a:hover,
.blog-masonry .entry-box blockquote>p>a:hover {
    color: #1dcfd1;
}

.blog-masonry blockquote p:before {
    position: static;
}


/*Pagination*/

.pagination {
    margin: 0 auto;
    border-radius: 0;
    float: none;
    text-align: center;
    display: block;
}

.pagination a {
    background-color: #fff;
    padding: 9px 16px;
    font-size: 14px;
    display: inline-block;
    box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
}

.pagination a.active {
    color: #1dcfd1;
}

.pagination a:first-of-type,
.pagination a:last-of-type {
    padding: 9px 17px;
}


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


/* =  Sidebar
  /*-------------------------------------------------*/

.widget:first-child {
    margin-top: 0;
}

.widget {
    box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(165, 173, 175, 0.15);
    background-color: #fff;
    margin-top: 40px;
    padding: 30px;
}

.widget>h4 {
    font-size: 16px;
    margin-bottom: 30px;
}


/*Search*/

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
}

.form-control.searchbox {
    background-color: #fff;
}


/*Categories*/

.widget li {
    position: relative;
}

.widget.categories ul li {
    padding-bottom: 10px;
    border-bottom: 1px solid #ecf0f1;
    margin-top: 10px;
}

.widget.categories ul li a {
    color: #98a2a4;
    font-size: 14px;
}

.widget.categories ul li a:hover {
    color: #1dcfd1;
}

.widget.categories ul li:after {
    font-family: "ElegantIcons";
    position: absolute;
    content: "\35";
    right: 0;
    color: #98a2a4;
}

.widget.categories ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget.categories ul li:first-child {
    margin-top: 0;
}


/*Twitter*/

.widget.twitter-feed #tweets {
    margin-left: 30px;
}

.widget.twitter-feed>p {
    font-size: 14px;
    margin-top: 20px;
}

.widget.twitter-feed p.tweet {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.widget.twitter-feed .tweet>a {
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

p.tweet:before {
    content: '\e094';
    position: absolute;
    left: -30px;
    color: #bac4c6;
    font-family: "ElegantIcons";
    font-size: 16px;
}

.widget.twitter-feed ul li {
    margin-top: 20px;
}

.widget.twitter-feed ul li:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
    margin-top: 0;
}

.widget.twitter-feed .timePosted {
    font-size: 12px;
    color: #bac4c6;
    margin-bottom: 10px;
}


/*Popular latest*/

.widget.popular-latest {
    padding: 0;
}

.widget.popular-latest .nav.nav-tabs>li>a {
    margin-right: -1px;
}

.widget.popular-latest .tab-content {
    padding: 30px;
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: none;
}

.widget.popular-latest .nav.nav-tabs>li.active>a {
    border: 1px solid transparent;
}

.nav-tabs.nav-justified>li>a {
    border-radius: 0;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid transparent;
        border-radius: 0;
    }
}

.widget.popular-latest .tab-content .tab-pane>ul>li {
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
    margin-top: 20px;
}

.widget.popular-latest .tab-content ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.widget.popular-latest .tab-content .tab-pane>ul>li:first-child {
    margin-top: 0;
}

.widget.popular-latest .tab-content a {
    color: #98a2a4;
    font-size: 14px;
}

.widget.popular-latest .tab-content a:hover {
    color: #1dcfd1;
}

.widget.popular-latest .tab-content .entry-meta li,
.widget.popular-latest .tab-content .entry-meta a {
    font-size: 12px;
}


/*Newsletter*/

.blog-sidebar .widget.newsletter .submit-button {
    margin-top: 10px;
}

.blog-sidebar .widget.newsletter .form-group {
    margin-bottom: 0;
}


/*Tags*/

.widget.tags a {
    display: inline-block;
    padding: 7px 16px;
    font-size: 12px;
    color: #8a8d94;
    margin: 0 3px 6px 0;
    border: 1px solid #ecf0f1;
}

.widget.tags a:hover {
    color: #fff;
    background-color: #1dcfd1;
    border: 1px solid transparent;
}


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


/* =  Blog Masonry
  /*-------------------------------------------------*/

.blog-masonry {
    background-color: #f5f9fa;
}

.blog-masonry .blog-col-3 {
    margin-bottom: 30px;
}

.blog-masonry blockquote p:before {
    content: '"';
    font-size: 20px;
}

.blog-masonry .entry-title.post-link h3 a {
    font-style: italic;
    color: #98a2a4;
    font-family: 'Lato', "Microsoft YaHei", sans-serif;
}

.blog-masonry .entry-title.post-link h3 a:hover {
    color: #1dcfd1;
}

.flexslider,
.flexslider .slides,
.flexslider .slides>li,
.flexslider .slides>li>a,
.flexslider .slides>li>a>img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}


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


/* =  Blog Single Post
  /*-------------------------------------------------*/

.blockquote-style-1 {
    background-color: #f5f9fa;
    padding: 40px;
}

.blog-standard.blog-article .entry {
    padding: 10%;
}

.blog-standard.blog-article p {
    margin-bottom: 30px;
}

.entry-content .entry-tags h6,
.entry-share h6 {
    display: inline;
    margin-right: 5px;
    font-size: 14px;
}

.entry-content .entry-share {
    float: right;
}

.entry-content .entry-tags a {
    font-style: italic;
    color: #98a2a4;
    font-size: 14px;
    line-height: 32px;
}

.entry-content .entry-tags a:hover {
    color: #1dcfd1;
}

.social-icons.light {
    margin-top: 0;
    display: inline-block;
}

.social-icons.light i {
    background-color: #f5f9fa;
    color: #98a2a4;
}

.entry-author,
.comment-body {
    padding: 30px;
    border: 1px solid #ecf0f1;
}

.entry-author .author-img,
.entry-comments .comment-avatar {
    position: absolute;
    display: block;
    float: none;
    margin: 0 auto -55px auto;
    border-radius: 50%;
}

.entry-author .author-info {
    padding-left: 120px;
    margin-top: 5px;
}

.entry-author h6.author-name,
.entry-comments h6.comment-author {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.author-info span {
    font-style: italic;
    color: #98a2a4;
    font-size: 13px;
    margin-right: 10px;
}

.author-info .author-socials {
    display: inline-block;
}

.author-info .author-socials a {
    color: #98a2a4;
    margin: 0 10px 0 0;
    font-size: 14px;
}

.author-info .author-socials a:hover i.fa.fa-facebook {
    color: #3b5998;
}

.author-info .author-socials a:hover i.fa.fa-twitter {
    color: #00acee;
}

.author-info .author-socials a:hover i.fa.fa-google-plus {
    color: #dd4b39;
}

.related-posts h4 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 26px;
    transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}

.related-posts a:hover h4 {
    color: #1dcfd1;
}

.entry-comments h6 {
    font-family: 'Lato', "Microsoft YaHei", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.entry-comments .comment-content span a {
    font-size: 13px;
    color: #bac4c6;
    font-style: italic;
}

.entry-comments .comment-content span a:hover {
    color: #1dcfd1;
}

.entry-comments .comment-content>a {
    color: #1dcfd1;
}

.comment-reply {
    padding-left: 40px;
}

.entry-comments .comment-content {
    padding-left: 100px;
    margin-top: 5px;
}

.comment-form {
    padding: 10%;
    background-color: #f5f9fa;
}

.comment-form .form-control {
    background-color: #fff;
}


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


/* =  Services
  /*-------------------------------------------------*/

.intro-subheading.small {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

.process-parallax {
    background-image: url(../upload/process_bg.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*5 columns*/

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.process-item i {
    color: #1dcfd1;
    font-size: 42px;
    width: 120px;
    line-height: 120px;
    height: 120px;
    text-align: center;
    margin: 0 auto 25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
}


/*Hi icon Effect 8*/

.icon-effect-8 .hi-icon {
    background: rgba(255, 255, 255, 1);
    -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
    -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
    transition: transform ease-out 0.1s, background 0.2s;
}

.icon-effect-8 .hi-icon:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.icon-effect-8 .hi-icon:hover {
    background: rgba(29, 207, 209, 1);
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    transform: scale(0.93);
    color: #fff;
}

.icon-effect-8 .hi-icon:hover:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #1dcfd1, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #1dcfd1, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.3);
        opacity: 0;
    }
}

@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #1dcfd1, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #1dcfd1, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #1dcfd1, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #1dcfd1, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.3);
        opacity: 0;
    }
}

.featured-wide-slider.bg-light .owl-page>span {
    background: #000;
}


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


/* =  About Us
  /*-------------------------------------------------*/

.about-intro {
    padding: 15% 30% 15% 10%;
}

.about-intro h2 {
    font-size: 24px;
}

.about-intro .subheading {
    font-size: 18px;
    line-height: 34px;
}

.about-intro ul {
    margin-top: 30px;
}

.about-intro ul li {
    margin-bottom: 15px;
    color: #98a2a4;
    vertical-align: middle;
}

.about-intro ul li>i {
    color: #1dcfd1;
    font-size: 18px;
    margin-right: 15px;
}

.about-us-intro .container-fluid {
    padding-left: 0;
}

.about-us-intro img {
    background: url(../upload/about_us_intro.jpg) no-repeat center center fixed;
    background-repeat: no-repeat;
    height: auto;
    max-width: 166% !important;
    z-index: 2;
    background-size: cover;
    min-height: 100%;
}

.partners-light {
    background-color: #fff;
    padding: 60px 0;
}


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


/* =  Contact
  /*-------------------------------------------------*/


/*Google map*/

#google-map {
    position: relative;
    width: 100%;
    height: 450px;
}


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


/* =  Pricing
  /*-------------------------------------------------*/

.style-1 .pricing-4-col,
.pricing-3-col {
    background-color: #fff;
    position: relative;
    text-align: center;
    box-shadow: 0px 1px 1px 0px rgba( 165, 173, 175, 0.15);
    border: 1px solid #ecf0f1;
}

.pricing-3-col {
    border: none;
}

.pricing-3-col .pricing-title.green h3 {
    color: #9dd633;
}

.pricing-3-col .pricing-title.orange h3 {
    color: #f05135;
}

.pricing-title {
    overflow: hidden;
}

.pricing-3-col .hot-label {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 57px solid #f05135;
    border-right: 57px solid transparent;
    top: 0;
    left: 0;
    color: #fff;
}

.pricing-3-col .hot-label span {
    font-size: 13px;
    position: absolute;
    top: -47px;
    left: 7px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}


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


/* =  Typography
  /*-------------------------------------------------*/

.section-headings {
    padding: 120px 0 90px;
}

.section-headings p {
    margin-bottom: 30px;
}

.section-blockquotes,
.section-dropcaps,
.section-html,
.section-lists,
.section-columns {
    padding: 0 0 90px;
}

blockquote {
    padding: 0 0 20px;
    margin: 0;
    border: none;
}

blockquote>p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 5px !important;
    position: relative;
}

blockquote p:before,
blockquote p:after {
    content: '"';
    font-size: 20px;
}

blockquote p:before {
    position: absolute;
    left: -10px;
}

blockquote>span {
    color: #45464b;
    font-size: 15px;
}

.blockquote-style-2 {
    padding: 40px;
    border-left: 3px solid #1dcfd1;
}

.blockquote-style-2>span {
    color: #1dcfd1;
}

.dropcap {
    font-family: 'Varela Round', "Microsoft YaHei", sans-serif;
}

.dropcap.style-1 {
    float: left;
    color: #45464b;
    font-size: 53px;
    line-height: 50px;
    padding-top: 4px;
    padding-right: 10px;
}

.dropcap.style-2 {
    float: left;
    color: #fff;
    text-align: center;
    background-color: #1dcfd1;
    width: 38px;
    height: 38px;
    font-size: 24px;
    line-height: 40px;
    margin: 10px 10px 0 0;
    border-radius: 4px;
}

.highlight {
    padding: 3px 5px;
    color: #fff;
    background-color: #1dcfd1;
}

.bullets li,
.arrows li,
.checks li,
.numbers li {
    margin-bottom: 20px;
    color: #98a2a4;
}

.bullets li:before {
    content: "• ";
    font-size: 14px;
    color: #1dcfd1;
    padding-right: 0.5em;
}

.arrows i {
    margin-right: 5px;
}

.arrows i,
.checks i {
    color: #1dcfd1;
}

.checks i {
    font-size: 12px;
    margin-right: 7px;
}

ol.numbers {
    padding-left: 20px;
}

.section-columns p {
    margin-bottom: 30px;
}


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


/* =  Portfolio 4 Columns
  /*-------------------------------------------------*/

.grid-4-col .work-item .work-description {
    padding: 30px 20px;
}


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


/* =  Portfolio Single
  /*-------------------------------------------------*/

.portfolio-single,
.related-projects {
    background-color: #ecf0f1;
}

.portfolio-description {
    padding-left: 10%;
}

.portfolio-description .social-icons.light i {
    background-color: #fff;
}

.portfolio-description h2 {
    font-size: 24px;
}

.portfolio-description p,
.portfolio-description ul,
.portfolio-description a.btn {
    margin-bottom: 30px;
}

.portfolio-description ul {
    line-height: 32px;
    color: #98a2a4;
}

.portfolio-description ul span {
    color: #45464b;
}

.related-projects {
    padding: 0 0 90px;
}

.related-projects .heading-inline,
.related-projects .customNavigation {
    display: inline-block;
}

.customNavigation a {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.related-projects .customNavigation a {
    background-color: #fff;
    width: 31px;
    height: 31px;
    text-align: center;
    padding: 0;
    box-shadow: 0 1px 1px 1px rgba( 165, 173, 175, 0.15);
    -moz-box-shadow: 0 1px 1px 1px rgba( 165, 173, 175, 0.15);
    -webkit-box-shadow: 0 1px 1px 1px rgba( 165, 173, 175, 0.15);
}

.related-projects .customNavigation i {
    font-size: 26px;
    line-height: 31px;
}


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


/* =  404
  /*-------------------------------------------------*/

.page-404 h1 {
    font-size: 200px;
}


/*分页专用css2 -- npage*/

.npage {
    clear: both;
    padding: 15px 0;
    color: #666;
    font: normal 12px/28px Arial;
    text-align: center;
}

.npage li {
    list-style: none;
    float: left;
    margin-left: 3px;
}

.npage span {
    padding: 0 5px;
}

.npage a {
    display: inline-block;
    height: 28px;
    margin: 0 2px;
    padding: 0 8px;
    border: solid 1px #ccc;
    background: #fff;
    color: #333;
    font: normal 12px/28px Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.npage a:hover,
.npage a.on,
.npage li.active a {
    height: 28px;
    margin: 0 3px;
    border: none;
    background: #383D43;
    color: #fff!important;
    line-height: 28px;
    text-decoration: none;
}

.npage a.select {
    cursor: default;
}