.abcd .scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    color: #ffffff;
    font-size: 24px;
    line-height: 40px;
    width: 45px;
    height: 45px;
    border: 1px solid #1596FF;
    background: #1596FF;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    display: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .scroll-to-top:hover {
    background: #ffffff;
    color: #1596FF;
    border-color: #1596FF;
    transition: all 500ms ease;
}

.abcd .header-top {
    padding: 11px 0px;
    background: #f4f4f4;
}

.abcd .header-top .top-left {
    float: left;
}

.abcd .header-top .top-right {
    float: right;
}

.abcd .header-top .top-left .contact-links li {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: #333;
    margin-right: 40px;
    font-family: 'Roboto', sans-serif;
}

.abcd .header-top .top-left .contact-links li i {
    margin-right: 10px;
    color: #1596FF;
}

.abcd .header-top .top-right .social-links {
    position: relative;
    float: left;
}

.abcd .header-top .top-right .social-links li {
    display: inline-block;
    margin-right: 24px;
}

.abcd .header-top .top-right .social-links li i {
    font-size: 13px;
    color: #333;
}

.abcd .header-top .top-right .social-links li:hover i {
    color: #1596FF;
}

.abcd .search_option {
    position: relative;
    float: right;
    margin-left: 20px;
}

.abcd .search_option:before {
    position: absolute;
    content: '';
    height: 20px;
    top: 5px;
    left: -20px;
    border-right: 2px solid #3d434e;
}

.abcd .search_option span {
    color: #333;
    font-size: 14px;
}

.abcd .search-popup-block {
    position: fixed;
    left: 0px;
    top: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.abcd .search-popup-block.popup-visible {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.abcd .search-popup-block .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
}

.abcd .search-popup-block .close-search:hover {
    opacity: 0.7;
}

.abcd .search-popup-block .search-form-box {
    position: relative;
    padding: 0px 15px 50px;
    padding-top: 200px;
    max-width: 1024px;
    margin: 0 auto;
}

.abcd .search-popup-block .search-form-box fieldset {
    position: relative;
    border: 5px solid #ffffff;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.abcd .search-popup-block .search-form-box fieldset input[type="search"],
.abcd .search-popup-block .search-form-box fieldset input.form-control {
    position: relative;
    height: 70px;
    padding: 20px 220px 20px 30px;
    background: #ffffff;
    line-height: 30px;
    font-size: 24px;
    color: #233145;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.abcd .search-popup-block .search-form-box fieldset input[type="submit"] {
    position: absolute;
    display: block;
    right: 0px;
    top: 0px;
    text-align: center;
    width: 220px;
    padding: 20px 10px 20px 10px;
    color: #ffffff;
    background: #1596FF;
    line-height: 30px;
    height: 70px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    -moz-border-radius: 0px 0px 0px 0px;
    -ms-border-radius: 0px 0px 0px 0px;
    -o-border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
}

.abcd .search-popup-block .search-form-box fieldset input[type="submit"]:hover {
    background: #334551;
    color: #ffffff;
}

.abcd .search-popup-block h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.abcd .search-popup-block .recent-searches {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.abcd .search-popup-block .recent-searches li {
    display: inline-block;
    margin: 0px 10px 10px 0px;
}

.abcd .search-popup-block .recent-searches li a {
    display: block;
    line-height: 24px;
    border: 1px solid #ffffff;
    padding: 8px 20px;
    font-size: 15px;
    color: #ffffff;
    border-radius: 0px;
}

.abcd .search-popup-block .recent-searches li a:hover {
    color: #1596FF;
    border-color: #1596FF;
}

@-webkit-keyframes menu_sticky {
    0% {
        margin-top: -150px;
    }
    50% {
        margin-top: -130px;
    }
    100% {
        margin-top: 0;
    }
}

@keyframes menu_sticky {
    0% {
        margin-top: -150px;
    }
    50% {
        margin-top: -130px;
    }
    100% {
        margin-top: 0;
    }
}

.abcd .main-header-block {
    height: 5em;
    position: relative;
    width: 100%;
    z-index: 9999;
    padding: 0px 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .fixed-header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    background: #ffffff;
    transition: all 500ms ease;
    -webkit-animation-name: menu_sticky;
    animation-name: menu_sticky;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.11);
}

.abcd .main-header-block .logo {
    position: relative;
    float: left;
    /*padding-top: 5px;*/
}

.abcd .main-header-block .header-area {
    position: relative;
    float: right;
    margin-top: 5px;
}

.abcd .main-header-block .header-area .main-menu-navigation {
    position: relative;
    float: left;
}

.abcd .main-header-block .link-button {
    float: right;
}

.abcd .main-menu-navigation .navbar-collapse {
    /*padding:0px;*/
    /*padding-right: 150px;*/
}

.abcd .main-menu-navigation .navigation {
    position: relative;
    margin: 0px;
}

.abcd .main-menu-navigation .navigation>li {
    position: relative;
    text-align: left;
    padding-right: 10px;
    margin-right: 36px;
    display: inline-block;
}

.abcd .main-menu-navigation .navigation>li>a {
    position: relative;
    display: block;
    font-size: 14px;
    color: #222222;
    line-height: 26px;
    font-weight: 500;
    opacity: 1;
    padding: 12px 0px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .main-menu-navigation .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 160%;
    width: 220px;
    padding: 0px;
    z-index: 1;
    display: none;
    background: #012f5d;
    border-top: 3px solid #ffffff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .main-menu-navigation .navigation>li>ul>li {
    position: relative;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.abcd .main-menu-navigation .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.abcd .main-menu-navigation .navigation>li>ul>li>a {
    position: relative;
    display: block;
    line-height: 26px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    background: #1596FF;
    padding: 12px 20px;
    transition: all 500ms ease;
    font-family: 'Roboto', sans-serif;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .main-menu-navigation .navigation>li>ul>li>a:hover {
    color: #1596FF;
    background: #ffffff;
    transition: all 500ms ease;
}

.abcd .main-menu-navigation .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 160%;
    transition: all 500ms ease;
}

.abcd .main-menu-navigation .navbar-collapse>ul li.dropdown .dropdown-btn {
    display: block;
    position: absolute;
    right: -8px;
    top: 12px;
    font-size: 20px;
}

.abcd .rev_slider_wrapper .slide-content-box h1 {
    color: #ffffff;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.abcd .rev_slider_wrapper .slide-content-box p {
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    line-height: 28px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.abcd .rev_slider_wrapper .slide-content-box h2 {
    color: #ffffff;
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    /*font-family: 'Roboto', sans-serif;*/
    /*box-shadow: rgb(229, 229, 229) 0px 1px 1px 0px;*/
}

.abcd .rev_slider_wrapper .slotholder {
    position: relative;
}

.abcd .slotholder:after {
    /*background: rgba(44, 48, 56, 0.6);*/
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.abcd .tp-bannertimer {
    display: none;
}

.abcd .rev_slider_wrapper .tparrows {
    background: transparent;
    border: 2px solid #a9abae;
    width: 55px;
    border-radius: 6px;
    height: 55px;
}

.abcd .rev_slider_wrapper .tparrows:before {
    font-family: "FontAwesome";
    font-size: 14px;
    color: #ffffff;
    display: block;
    line-height: 50px;
    text-align: center;
}

.abcd .service-area {
    padding: 90px 0px;
}

.abcd .service-area .section-title {
    margin-bottom: 40px;
}

.abcd .service-area .image-text {
    position: relative;
    padding: 30px;
    text-align: center;
}

.abcd .service-area .item-holder-box {
    margin-bottom: 30px;
    border: 2px solid #f7f7f7;
}

.abcd .service-area .item-holder-box img {
    width: 100%;
}

.abcd .service-area .item-holder-box:hover {
    border: 2px solid #1596FF;
}

.abcd .service-area .item-holder-box h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #222222;
    font-family: 'Roboto', sans-serif;
}

.abcd .service-area .item-holder-box p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #848484;
    font-family: 'Roboto', sans-serif;
}

.abcd .service-area .owl-theme .owl-controls .owl-nav [class*="owl-"] {
    background: none !important;
}

.abcd .service-area .owl-theme .owl-controls .owl-dots {
    display: none !important;
}

.abcd .service-area .owl-theme .owl-controls .owl-nav span {
    width: 50px;
    height: 50px;
    background: none;
    line-height: 48px;
    color: #b2b2b2;
    font-size: 16px;
    border: 2px solid #f6f6f6;
    border-radius: 6px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .service-area .owl-theme .owl-controls .owl-nav span:hover {
    color: #ffffff;
    background: #1596FF;
    border-color: #1596FF;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .team-area {
    position: relative;
    /*padding : 40px 0px 0px;*/
}

.abcd .team-area .section-title {
    position: relative;
    /*margin-bottom: 40px;*/
}

.abcd .team-area .image-holder-block {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.abcd .team-area .image-holder-block img {
    width: 100%;
}

.abcd .team-area .image-box {
    position: relative;
    overflow: hidden;
}

.abcd .team-area .social-links {
    /*position: absolute;*/
    bottom: -51px;
    left: 0px;
    width: 100%;
    background: #1596FF;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .team-area .image-holder-block:hover .social-links {
    bottom: 0px;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.abcd .team-area .social-links li {
    display: inline-block;
    padding: 12px 15px;
}

.abcd .team-area .social-links li i {
    font-size: 16px;
    color: #ffffff;
}

.abcd .team-area .image-holder-block .image-text {
    background-color: #f6f6f6;
}

.abcd .team-area .image-holder-block .image-text h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #222222;
    padding-top: 20px;
}

.abcd .team-area .image-holder-block .image-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: #848484;
    padding-left: 15px;
    padding-top: 15px;
    /*font-style: italic;*/
    padding-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.abcd .fact-counter-area {
    position: relative;
    padding: 0px 0px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    /*color:#ffffff;*/
}

.abcd .fact-counter-cover {
    position: relative;
    padding: 0px 0px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    /*color:#ffffff;*/
    background-color: aliceblue;
}

.abcd .fact-counter-area .auto-container {
    position: relative;
    z-index: 1;
}

.abcd .fact-counter-area .column {
    position: relative;
    /*margin-bottom:40px;*/
    z-index: 5;
}

.abcd .fact-counter-area .item {
    /*position: relative;*/
    /*border:1px solid #ddd;*/
    /*text-align:center;*/
    /*padding: 15px 10px;*/
}

.abcd .fact-counter-area .column .icon {
    position: relative;
    left: 0px;
    padding-bottom: 8px;
    bottom: 0px;
}

.abcd .fact-counter-area .column .icon i:before {
    font-size: 50px;
    line-height: 70px;
    color: #1596FF;
    margin-left: 0px;
}

.abcd .fact-counter-area .count-outer {
    position: relative;
    font-size: 50px;
    font-weight: 600;
    /*color: #1596FF;*/
    /*padding-bottom: 25px;*/
    font-family: 'Roboto', sans-serif;
}

.abcd .fact-counter-area .column .counter-title {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    line-height: 28px;
    padding: 15px 0px 8px 0px;
    font-family: 'Roboto', sans-serif;
}

.abcd .qiyefuw1 {
    background-color: #f5f5f8;
    padding: 27px;
    color: #1596ff;
}

.abcd .qiyefuw2 {
    background-color: #337ab7;
    padding: 27px;
    color: #fff;
}

.abcd .qiyefuw-title {
    font-size: 3em;
    padding-bottom: 10px;
}

.abcd .blog-area {
    position: relative;
    /*margin-top: 90px;*/
    /*padding-bottom: 60px;*/
    z-index: 1;
}

.abcd .blog-area .section-title {
    position: relative;
    margin-bottom: 40px;
}

.abcd .blog-area .item-holder-box {
    position: relative;
    margin-bottom: 40px;
    transition: all 500ms ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.abcd .blog-area .item-holder-box:hover {
    transition: all 500ms ease;
    border: 2px solid #1596FF;
}

.abcd .blog-area .item-holder-box .image-box {
    position: relative;
}

.abcd .blog-area .item-holder-box img {
    position: relative;
    width: 100%;
}

.abcd .blog-area .item-holder-box .image-box .date-box {
    position: absolute;
    top: 0px;
    left: 0px;
}

.abcd .blog-area .item-holder-box .date-box span {
    font-size: 16px;
    color: #ffffff;
    line-height: 18px;
    font-weight: 400;
    padding: 8px 20px;
    background: #1596FF;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area .item-holder-box .content-text {
    position: relative;
    padding: 0px 10px;
    margin-top: 20px;
    border: 1px solid #f7f7f7;
    border-top: none;
}

.abcd .blog-area .item-holder-box .content-text h6 {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.abcd .blog-area .item-holder-box .content-text .sec-title h2 {
    position: relative;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: #222222;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.abcd .blog-area .item-holder-box .content-text .sec-title h2:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: '';
    width: 50px;
    height: 2px;
    background: #1596FF;
}

.abcd .blog-area .content-text .sec-title h5 {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #222222;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.abcd .blog-area .content-text .sec-title h5:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: '';
    width: 100px;
    height: 2px;
    background: #1596FF;
}

.abcd .blog-area .content-text .text p {
    font-size: 14px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    padding-bottom: 15px;
}

.abcd .blog-area .item-holder-box .blog-info-box {
    border-top: 1px solid #f6f6f6;
}

.abcd .blog-area .item-holder-box .blog-info-box li {
    display: inline-block;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    color: #848484;
    /*padding: 12px 0px;*/
    margin-right: 7px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area .item-holder-box .blog-info-box li i {
    font-size: 13px;
    margin-right: 8px;
}

.abcd .contact-section {
    position: relative;
    z-index: 1;
}

.abcd .contact-section .section-title {
    margin-bottom: 40px;
}

.abcd .contact-section .contact-area-box {
    padding: 80px 100px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.abcd .contact-section .contact-form .form-group {
    margin-bottom: 30px;
}

.abcd .contact-section .contact-form .form-group.text-center {
    margin-bottom: 0px;
}

.abcd .contact-section .contact-area-box form input[type="text"],
.abcd .contact-section .contact-area-box form input[type="email"],
.abcd .contact-section .contact-area-box form textarea {
    color: #848484;
    display: block;
    font-size: 14px;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #f6f6f6;
    transition: all 500ms ease;
}

.abcd .contact-area-box .form-group select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #f6f6f6;
    background: #ffffff;
    cursor: pointer;
}

.abcd .contact-area-box .form-group option {
    font-weight: normal;
    display: block;
    white-space: pre;
    height: 50px;
    padding: 20px;
}

.abcd .contact-area-box .form-group option:hover {
    background: #7b64cb;
}

.abcd .contact-section .contact-area-box form button {
    margin-top: 20px;
    display: inline-block;
}

.abcd .main-footer-area {
    position: relative;
    z-index: 1;
    border-top: 5px solid #1596FF;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.abcd .main-footer-area:before {
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(38, 44, 55, 0.95);
}

.abcd .main-footer-area .footer-top {
    padding: 90px 0px;
}

.abcd .footer-top .sec-title h6 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
    padding: 20px 0px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .footer-top p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #d4dae3;
    margin-top: -5px;
}

.abcd .footer-top .about-widget-box {
    /*margin-right: -25px;*/
}

.abcd .footer-top .footer-logo {
    margin-top: 10px;
    margin-bottom: 25px;
}

.abcd .footer-top .social-links {
    padding-top: 10px;
}

.abcd .footer-top .social-links li {
    display: inline-block;
    margin-right: 10px;
}

.abcd .footer-top .social-links li i {
    font-size: 14px;
    line-height: 35px;
    width: 38px;
    height: 38px;
    color: #d4dae3;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 500ms ease;
}

.abcd .footer-top .social-links li:hover i {
    background: #1596FF;
    border-color: #1596FF;
    transition: all 500ms ease;
}

.abcd .footer-top .footer-menu-link ul {
    margin-top: -10px;
}

.abcd .footer-top .footer-menu-link li {
    padding: 6px 0px;
}

.abcd .footer-top .footer-menu-link li a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #d4dae3;
    font-family: 'Roboto', sans-serif;
    transition: all 500ms ease;
}

.abcd .footer-top .footer-menu-link li:hover a {
    color: #1596FF;
    text-decoration: underline;
    transition: all 500ms ease;
}

.abcd .footer-top .footer-menu-link li i {
    margin-right: 8px;
}

.abcd .footer-top .footer-gallery-widget {
    position: relative;
    margin: 0px 45px;
}

.abcd .footer-top .footer-gallery-widget .image {
    position: relative;
    float: left;
    border-radius: 6px;
    width: 29%;
    margin: 5px;
    overflow: hidden;
}

.abcd .footer-top .footer-gallery-widget .image img {
    position: relative;
    width: 100%;
}

.abcd .footer-top .footer-gallery-widget .image .lightbox-image {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0px;
    left: 0px;
    display: flex;
    z-index: 99;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    transform: scale(0, 0);
}

.abcd .footer-top .footer-gallery-widget .image .lightbox-image i {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.abcd .footer-top .footer-gallery-widget .image:hover .lightbox-image {
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
}

.abcd .footer-top .footer-newsletter-cloumn input {
    height: 50px;
    width: 100%;
    padding: 0px 20px;
    background: #ffffff;
    margin-bottom: 20px;
}

.abcd .footer-top input::-webkit-input-placeholder {
    color: #848484 !important;
}

.abcd .footer-bottom {
    padding: 13px 0px;
    border-top: 1px solid #474b5a;
    background-color: #000;
}

.abcd .footer-bottom .copyright-text p {
    font-size: 14px;
    font-weight: 400;
    color: #d4dae3;
    line-height: 26px;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
    padding: 6px 0px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .footer-bottom .copyright-text a {
    color: #1596FF;
}

.abcd .page-title {
    padding: 30px 0px;
    position: relative;
    z-index: 1;
    background: #f7f7f7;
}

.abcd .page-title .title h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 60px;
    color: #222222;
    text-transform: capitalize;
}

.abcd .page-title .title-manu li {
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    color: #1596FF;
    margin: 0px 5px;
    padding: 17px 0px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .page-title .title-manu li a {
    color: #222222;
    transition: all 500ms ease;
}

.abcd .page-title .title-manu li a:hover {
    color: #1596FF;
    transition: all 500ms ease;
}

.abcd .title-menu {
    position: relative;
    padding: 15px 0px;
    background: #f5f5f8;
}

.abcd .title-menu li {
    font-size: 15px;
    line-height: 30px;
    font-weight: 600;
    padding-right: 4px;
    color: #848484;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    display: inline-block;
}

.abcd .title-menu li a {
    color: #848484;
    -o-transition: all 0.5s ease;
}

.abcd .title-menu li a:hover {
    color: #f5b946;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.abcd .about-area {
    margin: 20px 0px;
}

.abcd .about-area .section-title h2:before {
    left: 0;
    margin-left: 0px;
}

.abcd .about-area img {
    width: 100%;
}

.abcd .about-area .content-box {
    margin: 25px 15px;
}

.abcd .about-area .content-box p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #848484;
    padding-bottom: 10px;
}

.abcd .service-area.style-two {
    padding: 70px 0px;
}

.abcd .service-area.style-two .item-holder-box {
    margin-bottom: 30px;
}

.abcd .service-details {
    margin: 50px 0px;
}

.abcd .service-details .service-memu-area h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.abcd .service-details .service-memu-area li {
    border-bottom: 1px solid #f6f6f6;
    transition: all 0.5s ease;
}

.abcd .service-details .service-memu-area li a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #848484;
    padding: 12px 0px;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.5s ease;
    font-family: 'Roboto', sans-serif;
}

.abcd .service-details .service-memu-area li:hover a {
    color: #1596FF;
    transition: all 0.5s ease;
}

.abcd .service-details .service-memu-area li:hover {
    padding-left: 20px;
    border-bottom: 1px solid #1596FF;
    transition: all 0.5s ease;
}

.abcd .service-details .service-memu-area li i {
    margin-right: 10px;
}

.abcd .service-details .right-side {
    margin-left: 20px;
}

.abcd .service-details .image-box img {
    width: 100%;
}

.abcd .service-details .image-box h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    margin-top: 45px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.abcd .service-details .image-box p {
    padding-bottom: 15px;
}

.abcd .service-details .content-text h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    margin-top: 10px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.abcd .service-details .content-text li {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #848484;
    padding: 5px 0px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .service-details .content-text li i {
    font-size: 12px;
    width: 14px;
    height: 14px;
    line-height: 13px;
    color: #ffffff;
    margin-right: 10px;
    background: #1596FF;
    border-radius: 2px;
    text-align: center;
}

.abcd .service-details .text h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.abcd .team-area.style-two .image-box .lightbox-image {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0px;
    left: 0px;
    display: flex;
    z-index: 99;
    align-items: center;
    justify-content: center;
    background: rgba(40, 40, 52, 0.7);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    transform: scale(0, 0);
}

.abcd .team-area.style-two .image-box .lightbox-image i {
    color: red;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 6px;
    border: 2px solid #ffffff;
}

.abcd .team-area.style-two .image-holder-block:hover .lightbox-image {
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
}

.abcd .team-area.style-two .image-holder-block {
    margin-bottom: 45px;
}

.abcd .faq-section {
    margin: 50px 0px;
}

.abcd .faq-section .section-title {
    margin-bottom: 40px;
}

.abcd .faq-section .faq-container {
    margin: 0px 50px;
}

.abcd .faq-section .left-side {
    margin-right: 20px;
}

.abcd .faq-section .right-side {
    margin-right: 20px;
}

.abcd .faq-section .faq-area {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.abcd .faq-section .faq-area h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    color: #222222;
    margin-bottom: 15px;
}

.abcd .faq-section .faq-area p {
    color: #848484;
    padding-bottom: 0px;
}

.abcd .error-area {
    padding: 200px 0px;
}

.abcd .error-area h1 {
    font-size: 70px;
    line-height: 26px;
    font-weight: 400;
    color: #343434;
    margin-top: 22px;
    margin-bottom: 30px;
}

.abcd .error-area p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: #848484;
}

.abcd .error-area .search-box {
    position: relative;
    height: 48px;
    width: 100%;
    margin-top: 48px;
    margin-bottom: 50px;
    border: 1px solid #f9f9f9;
}

.abcd .error-area .search-box input {
    color: #222222;
    width: 100%;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
}

.abcd .error-area .search-box button {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    background: transparent;
}

.abcd .contact-us {
    margin: 50px 0px;
}

.abcd .contact-us .sec-title h3 {
    font-size: 40px;
    line-height: 26px;
    color: #222222;
    margin-bottom: 15px;
}

.abcd .contact-us .sec-title p {
    font-size: 14px;
    line-height: 26px;
    color: #848484;
    padding-bottom: 10px;
}

.abcd .contact-us .contact-form .form-group {
    margin-bottom: 32px;
}

.abcd .contact-us .contact-form .form-group.button {
    margin-bottom: 0px;
}

.abcd .contact-us .contact-form input {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #848484;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #f7f7f7;
}

.abcd .contact-us .contact-form textarea {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #848484;
    width: 100%;
    height: 130px;
    padding: 10px 20px;
    box-shadow: none;
    resize: none;
    border-radius: 0px;
    border: 1px solid #f7f7f7;
}

.abcd .contact-us .contact-info-area {
    margin-left: 20px;
    padding: 50px 30px;
    background: rgba(0, 0, 0, 0.1);
}

.abcd .contact-us .contact-info-area h4 {
    font-size: 30px;
    color: #333;
    line-height: 38px;
    margin-bottom: 20px;
}

.abcd .contact-us .contact-info-area .item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.abcd .contact-us .contact-info-area .item:last-child {
    margin-bottom: 0px;
}

.abcd .contact-us .contact-info-area .item strong {
    font-size: 18px;
    line-height: 24px;
    color: #333;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .contact-us .contact-info-area .item p {
    font-size: 15px;
    line-height: 26px;
    color: #333;
    font-weight: 400;
    margin-top: 10px;
}

.abcd .contact-us .contact-info-area .item i {
    position: absolute;
    top: 5px;
    left: 0px;
    color: #1596FF;
    font-size: 24px;
}

.abcd .google-map-area {
    position: relative;
}

.abcd #contact-google-map {
    height: 400px;
    width: 100%;
}

.abcd .blog-area.style-two {
    margin: 50px 0px;
    padding-bottom: 0px;
}

.abcd .blog-area.style-two .right-side {
    margin-left: 20px;
}

.abcd .blog-area.style-two .search-box {
    position: relative;
    margin-bottom: 30px;
}

.abcd .blog-area.style-two .search-box input {
    position: relative;
    height: 50px;
    width: 100%;
    color: #848484;
    padding: 0px 15px;
    background: #ffffff;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area.style-two .search-box button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
}

.abcd .blog-area.style-two .search-box button i {
    font-size: 14px;
    color: #222222;
}

.abcd .blog-area.style-two h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.abcd .blog-area.style-two .categories-memu-area li {
    border-bottom: 1px solid #f6f6f6;
    transition: all 0.5s ease;
}

.abcd .blog-area.style-two .categories-memu-area li a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #848484;
    padding: 12px 0px;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.5s ease;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area.style-two .categories-memu-area li:hover a {
    color: #1596FF;
    transition: all 0.5s ease;
}

.abcd .blog-area.style-two .categories-memu-area li:hover {
    padding-left: 20px;
    border-bottom: 1px solid #1596FF;
    transition: all 0.5s ease;
}

.abcd .blog-area.style-two .categories-memu-area li i {
    margin-right: 10px;
}

.abcd .blog-area.style-two .sidbar-blog-area {
    margin-top: 30px;
}

.abcd .blog-area.style-two .blog_details {
    margin-top: 30px;
}

.abcd .blog-area.style-two .sidbar-blog-area .blog_item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 25px;
    overflow: hidden;
}

.abcd .blog-area.style-two .sidbar-blog-area .blog-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 85px;
    height: 85px;
}

.abcd .blog-area.style-two .sidbar-blog-area .blog-img img {
    border-radius: 6px;
    border: 2px solid #ccc;
}

.abcd .blog-area.style-two .sidbar-blog-area i {
    margin-right: 10px;
}

.abcd .blog-area.style-two .sidbar-blog-area p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #848484;
}

.abcd .blog-area.style-two .sidbar-blog-area h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #222222;
    margin-bottom: 10px;
}

.abcd .blog-area.style-two .archives-links {
    margin-top: 40px;
}

.abcd .blog-area.style-two .archives-links li {
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    line-height: 26px;
}

.abcd .blog-area.style-two .archives-links li {
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    padding: 5px 0px;
}

.abcd .blog-area.style-two .archives-links li a {
    color: #848484;
}

.abcd .blog-area.style-two .gallery-width {
    margin-top: 30px;
}

.abcd .blog-area.style-two .gallery-width .image {
    position: relative;
    float: left;
    border-radius: 6px;
    width: 29%;
    margin: 5px;
    overflow: hidden;
}

.abcd .blog-area.style-two .gallery-width .image img {
    position: relative;
    width: 100%;
}

.abcd .blog-area.style-two .gallery-width .lightbox-image {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0px;
    left: 0px;
    display: flex;
    z-index: 99;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    transform: scale(0, 0);
}

.abcd .blog-area.style-two .gallery-width .lightbox-image i {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.abcd .blog-area.style-two .gallery-width .image:hover .lightbox-image {
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
}

.abcd .styled-pagination {
    margin-top: 10px;
}

.abcd .styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.abcd .styled-pagination li a {
    position: relative;
    display: block;
    line-height: 45px;
    font-size: 18px;
    width: 45px;
    height: 45px;
    color: #848484;
    font-weight: 600;
    text-align: center;
    background: #ffffff;
    border: 1px solid #f6f6f6;
    font-family: 'Roboto', sans-serif;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}

.abcd .styled-pagination li a.prev,
.abcd .styled-pagination li a.next {
    font-size: 18px;
}

.abcd .styled-pagination li a:hover,
.abcd .styled-pagination li a.active {
    color: #ffffff;
    background: #1596FF;
    border-color: #1596FF;
    transition: all 500ms ease;
}

.abcd .blog-area.style-three .media-links {
    margin-top: 20px;
    border-top: 1px solid #f6f6f6;
}

.abcd .blog-area.style-three .media-links .social-links li {
    display: inline-block;
    font-size: 13px;
    line-height: 28px;
    font-weight: 400;
    color: #848484;
    padding: 12px 0px;
    margin-right: 15px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area.style-three .media-links .social-links li i {
    color: #a2a2a2;
}

.abcd .blog-area.style-three .media-links .social-links li:hover i {
    color: #1596FF;
}

.abcd .blog-area.style-three .item-holder-box {
    margin-bottom: 60px;
}

.abcd .blog-area.style-three .comment-area {
    margin-bottom: 80px;
}

.abcd .blog-area.style-three .comment-area h5 {
    position: relative;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
}

.abcd .blog-area.style-three .comment-area .item {
    position: relative;
    padding-left: 100px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.abcd .blog-area.style-three .comment-area .item.reply {
    position: relative;
    padding-left: 80px;
    margin-left: 50px;
}

.abcd .blog-area.style-three .comment-area .image-box {
    position: absolute;
    top: 5px;
    left: 0px;
}

.abcd .blog-area.style-three .comment-area .item h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #222222;
}

.abcd .blog-area.style-three .comment-area .item span {
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    line-height: 26px;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area.style-three .comment-area .item i {
    margin-right: 10px;
}

.abcd .blog-area.style-three .comment-area .item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #848484;
}

.abcd .blog-area.style-three .form-area h5 {
    position: relative;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
}

.abcd .blog-area.style-three .form-group {
    margin-bottom: 20px;
}

.abcd .blog-area.style-three .form-group input {
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    box-shadow: none;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #f6f6f6;
    font-family: 'Roboto', sans-serif;
}

.abcd .blog-area.style-three .form-group textarea {
    height: 160px;
    border-radius: 0px;
    box-shadow: none;
    padding: 10px 20px;
    resize: none;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #f6f6f6;
}

.abcd .text-liaojie {
    color: #fff;
}

.abcd .liucheng-color {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.abcd .liucheng-color:before {
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(38, 44, 55, 0.95);
}

.abcd .icon-liuc {
    padding-bottom: 10px;
}

.abcd .icon-chengshi {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    width: 120px;
}

.abcd .fuwunr {
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 28%;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 18px;
    text-align: left;
}

.abcd .fuwunr-icon {
    width: 50%;
    padding-top: 6px;
}

.abcd #features {
    margin-top: 20px;
}

.abcd #features .text-center a {
    color: #fff;
    background-color: #1596ff;
    margin-right: 5px;
    padding: 10px 50px;
    font-size: 16px;
    /*box-shadow: 0px 0px 1px 0px black;*/
}

.abcd .xinlai {
    text-align: center;
}

.abcd .xinlai img {
    margin: 10px 20px;
    width: 16%;
    background-color: #ddd;
    padding: 1px 1px 1px 1px;
}

.abcd .pinpai {
    text-align: center;
}

.abcd .pinpai img {
    padding: 0px 40px 10px 10px;
    width: 12%;
}

.abcd .mb-60 {
    margin-bottom: 25px;
}

.abcd .bg-clr {
    background: #f8f9fa;
}

.abcd .services-inner {
    background: #fff none repeat scroll 0 0;
    border: 2px solid transparent;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}

.abcd .our-services-wrapper:hover .services-inner {
    border: 2px solid #5a8bff;
    transition: 0.3s;
    /*margin: 10px;*/
    background: #fff;
}

.abcd .services-plus {
    margin-top: 60px;
}

.abcd .img-services-icon {
    width: 60px;
    height: 50px;
}

.abcd .our-services-icon {
    position: absolute;
    top: -15px;
    right: 5px;
    background: #fff;
    width: 80px;
    text-align: center;
}

.abcd .our-services-icon span.fa {
    font-size: 45px;
    color: #00bcd4;
}

.abcd .our-services-text {
    padding-right: 10px;
}

.abcd .our-services-text {
    padding: 8px 14px;
}

.abcd .our-services-text h4 {
    color: #323648;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    margin-top: 15px;
    position: relative;
    text-transform: uppercase;
}

.abcd .our-services-text p {
    margin-bottom: 0;
}

.abcd .services p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.abcd h4.heading {
    text-transform: uppercase;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 1px;
    font-weight: 700;
}

.abcd .feature-img span {
    font-size: 35px;
    transform: scale(1);
    transition: 0.3s ease;
    color: #00A8FF;
}

.abcd .feature-titel {
    text-align: center;
    padding-bottom: 20px;
    font-weight: 600;
    color: #323648;
}

.abcd .feature-text {
    color: #777777;
}

.abcd .feature-i {
    color: #00A8FF;
}

.abcd .feature-text-one {
    color: #00A8FF;
}

.abcd .feature-body:hover h3.feature-titel {
    text-align: center;
    padding-bottom: 20px;
    color: #fff;
    transition: 0.3s ease;
}

.abcd .feature-body:hover p.feature-text {
    color: #fff;
    transition: 0.3s ease;
}

.abcd .feature-body:hover i.feature-i {
    color: #fff;
    transition: 0.3s ease;
}

.abcd .feature-body:hover p.feature-text-one {
    color: #fff;
    transition: 0.3s ease;
}

.abcd .fa-line-chart:before {
    content: "";
}

.abcd .service2:hover {
    background-image: linear-gradient(to right, rgba(21, 150, 255, 0.74), rgba(21, 150, 255, 0.74)), url(../images/g2.jpg);
}

.abcd .feature-grid {
    margin-top: 30px;
}

.abcd .feature-img {
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

.abcd .feature-body {
    transition: 0.3s ease-in;
    border: 1px solid #cdcdcd;
    border-radius: var(--card-curve);
    padding: 1rem;
    background: #fff;
    box-shadow: var(--card-box-shadow);
}

.abcd .feature-body:hover {
    box-shadow: var(--card-hover-box-shadow);
    background-size: cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: bottom right, left, right;
}

.abcd .feature-img span {
    font-size: 35px;
    transform: scale(1);
    transition: 0.3s ease;
    color: #00A8FF;
}

.abcd .feature-body:hover div.feature-img span {
    transform: scale(1.1);
    transition: 0.3s ease;
    color: #fff;
}

.abcd .qiyefuw-color {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.abcd .qiyefuw-color:before {
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(233, 236, 239, 0.95);
}

.abcd .portfolio-wrap .portfolio-info {
    opacity: 0;
}

.abcd .portfolio-wrap img {
    transition: 0.3s;
    padding: 1em;
    width: 100%;
}

.abcd .img-fluid {
    max-width: 100%;
    height: 200px;
}

.abcd .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.abcd .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(204, 204, 204, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    width: 170px;
    float: left;
}

.abcd .fadeIn-liuc {
    padding-bottom: 38px;
}

.abcd .xn_site_ftboxrit li {
    position: relative;
}

.abcd .xn_site_ftboxrit li {
    /*float: left;*/
    /*overflow: hidden;*/
    padding: 10px 0px;
    /*width: 323px;*/
}

.abcd .xn_site_ftboxrit hr {
    background-color: #c3c1c1;
    border: medium none;
    clear: both;
    height: 1px;
    margin: 0;
    opacity: 0.4;
    padding: 0;
}

.abcd .xn_site_mtitle {
    color: #0054a4;
    height: 26px;
    overflow: hidden;
    width: 150px;
}

.abcd .video-box {
    position: relative;
}

.abcd .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.abcd .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.abcd .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(66, 139, 202, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.abcd .play-btn:hover::after {
    border-left: 15px solid #428bca;
    transform: scale(20);
}

.abcd .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.abcd #testimonial {
    background-image: url(../images/1.jpg);
}

.abcd .carousel-control.left,
.abcd .carousel-control.right {
    background: none;
    width: 25px;
    z-index: 999;
}

.abcd .carousel-control.right {
    right: -25px;
}

.abcd .block-text {
    background-color: #fff;
    border-radius: 4px;
    margin: 0 0 40px;
    padding: 15px 18px;
}

.abcd .block-text a {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.abcd .mark {
    font-weight: 600;
    padding: 12px 0;
    background: none;
}

.abcd .block-text p {
    color: #585858;
}

.abcd .sprite {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAeUCAYAAAAU3UTMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjY1MzJERUNDRjBEMTExRTM4N0ZFOUUyNENEOTZCNjVCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjY1MzJERUNERjBEMTExRTM4N0ZFOUUyNENEOTZCNjVCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NjUzMkRFQ0FGMEQxMTFFMzg3RkU5RTI0Q0Q5NkI2NUIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NjUzMkRFQ0JGMEQxMTFFMzg3RkU5RTI0Q0Q5NkI2NUIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4/ZdnrAAAydElEQVR42uydCbgUxbn3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');
}

.abcd .sprite-i-triangle {
    background-position: 0 -1298px;
    height: 44px;
    width: 50px;
    box-shadow: none;
}

.abcd .block-text ins {
    bottom: -44px;
    left: 50%;
    margin-left: -60px;
}

.abcd .block {
    display: block;
}

.abcd .zmin {
    z-index: 1;
}

.abcd .ab {
    position: absolute;
}

.abcd .person-text {
    padding: 10px 0 0;
    text-align: center;
    z-index: 2;
}

.abcd .person-text a {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
}

.abcd .rel {
    position: relative;
}

.abcd .person-text img.person {
    margin: 0 auto;
    width: 200px;
    height: 200px;
}

.abcd .company-social {
    margin-left: 0;
    padding-left: 0;
    margin-top: 10px;
}

.abcd .company-social {
    text-align: left;
    list-style: none;
}

.abcd .company-social li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.abcd .company-social a {
    margin: 0 2px 0 0;
}

.abcd .company-social a:hover {
    color: #fff;
}

.abcd .company-social a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    text-align: center;
    border-radius: 3px;
    padding: 0;
}

.abcd .company-social .social-facebook a i {
    background: #3873ae;
}

.abcd .company-social .social-twitter a i {
    background: #62c6f8;
}

.abcd .company-social .social-dribble a i {
    background: #d74980;
}

.abcd .company-social .social-deviantart a i {
    background: #8da356;
}

.abcd .company-social .social-google a i {
    background: #000;
}

.abcd .company-social .social-vimeo a i {
    background: #51a6d3;
}

.abcd .company-social .social-facebook a:hover i {
    background: #4893ce;
}

.abcd .company-social .social-twitter a:hover i {
    background: #82e6ff;
}

.abcd .company-social .social-dribble a:hover i {
    background: #f769a0;
}

.abcd .company-social .social-deviantart a:hover i {
    background: #adc376;
}

.abcd .company-social .social-google a:hover i {
    background: #333;
}

.abcd .company-social .social-vimeo a:hover i {
    background: #71c6f3;
}

.abcd .carousel-inner>.item {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    height: auto;
}

.abcd .carousel-inner>.item>img,
.abcd .carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    padding-left: 0;
}

.abcd .carousel-control {
    position: absolute;
    top: 37%;
    bottom: 0;
    left: 0;
    width: auto;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.abcd .carousel-control.left,
.abcd .carousel-control.right {
    background-image: none;
    filter: none;
}

.abcd .carousel-control.right {
    right: 8px;
    margin-top: 5%;
    color: #1596ff;
}

.abcd .carousel-control.left {
    /*left: 20px;*/
    margin-top: 5%;
    color: #1596ff;
}

.abcd .details {
    width: 100%;
    padding: 15px 15px;
    background: rgba(255, 255, 255, 0.8);
    height: 40%;
    position: absolute;
    left: 0;
    top: 76%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.abcd .details:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.85;
}

.abcd .rongyu {
    text-align: center;
}

.abcd .rongyu img {
    padding: 0px 40px 10px 10px;
    width: 16%;
}

.abcd .tit {
    font-size: 18px;
    font-weight: 600;
}

.abcd .item-box {
    padding: 20px 0px;
    color: #323648;
}

.abcd .item-box i {
    color: #1596ff;
    height: auto;
    text-align: center;
}

.abcd .table i {
    color: #1596ff;
}

.abcd .no-gutters {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.abcd .no-gutters img {
    box-shadow: 0px 0px 1px 0px black;
}

.abcd .no-gutters h5 {
    color: #000000;
    padding-top: 20px;
    padding-bottom: 20px;
}

.abcd .carousel-control-prev {
    color: #777777;
}

.abcd .carousel-control-next {
    color: #777777;
}

.abcd #service-advantages img {
    margin: 10px 10px;
    padding: 5px 5px;
    /*height: 18%;*/
    width: 18%;
    box-shadow: 0px 0px 1px 0px #0054a4;
}

.abcd #service-more img {
    margin: 10px 10px;
    padding: 5px 5px;
    /*height: 18%;*/
    width: 18%;
    box-shadow: 0px 0px 1px 0px #0054a4;
}

.abcd #service-more .fuwu {
    width: 24%;
    margin: 10px 5px;
    padding: 20px 10px;
    box-shadow: 0px 0px 1px 0px #0054a4;
}

.abcd .rongyu .text-center a {
    font-size: 18px;
    color: #777777;
    font-weight: 600;
    margin: 5px;
    padding: 12px 20px;
    box-shadow: 1px 1px 2px 1px #ccc;
}

.abcd .excellent-item:hover {
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.abcd .excellent-item {
    height: 240px;
}

.abcd .excellent-item {
    position: relative;
    /*padding: 30px 0px 30px 0px;*/
    /*width: calc((100% - 60px ) /4);*/
    /*width: 100%;*/
    /*float: left;*/
    transition: all 0.3s;
    /*margin-bottom: 20px;*/
    /*margin-right: 20px;*/
    background-color: #ffffff;
    border-radius: 2px;
}

.abcd .excellent-item:hover:after {
    width: 100%;
}

.abcd .excellent-item:after {
    content: '';
    width: 0;
    height: 4px;
    background-color: #0054a4;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 1;
    border-radius: 2px 2px 0 0;
}

.abcd .excellent-item h2 {
    padding: 20px 20px;
    font-size: 16px;
    color: #252B3A;
    line-height: 22px;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
    max-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.abcd .excellent-item p {
    text-align: left;
    padding-left: 20px;
    font-size: 14px;
    color: #A0A2A8;
    line-height: 22px;
    /*height: 88px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.abcd .pagination {
    /*padding: 20px;*/
    /*margin-top: .5rem;*/
    /*margin-bottom: .5rem;*/
    /*display: -ms-flexbox;*/
    display: flex;
    padding-left: 45%;
    /*list-style: none;*/
    border-radius: 0.25rem;
}

.abcd .pagination-one {
    /*padding: 20px;*/
    /*margin-top: .5rem;*/
}

.abcd .panel-body {
    padding: 0px;
}

.abcd .pagination-one>.page-item {
    background-color: #0a9cff;
    margin: 4px;
    height: 130px;
    padding-top: 36%;
}

.abcd .pagination-one>.page-item a {
    font-size: 18px;
    font-weight: 600;
}

.abcd .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.abcd .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.abcd .table-bordered {
    height: 24%;
    text-align: center;
}

.abcd .table-bordered i {
    font-size: 30px;
}

.abcd .table-bordered img {
    width: 50px;
}

.abcd .table>tbody>tr>td,
.abcd .table>tbody>tr>th,
.abcd .table>tfoot>tr>td,
.abcd .table>tfoot>tr>th,
.abcd .table>thead>tr>td,
.abcd .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
    font-size: 14px;
}

.abcd .font-one {
    font-size: 6px;
}

.abcd .font-two {
    font-size: 9px;
}

.abcd .form-tab td,
.abcd .form-td {
    font-size: 16px;
}

.abcd .form-tr {
    color: red;
}

.abcd #service-case img {
    padding: 20px;
    width: 100%;
}

.abcd #service-case .content-text {
    padding: 0px 0px;
}

.abcd #service-case .item-holder-box {
    height: 150px;
}

.abcd .bg-faded {
    background-color: #fff;
}

.abcd .mainmenu-area {
    padding: 10px 0;
    border: none;
    margin: 0;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.abcd .mainmenu-area .menu-button {
    position: relative;
    color: #263238;
    line-height: 58px;
    top: 0;
    outline: none;
}

.abcd .logo-menu a {
    font-size: 20px;
    color: #fff;
}

.abcd .menu-bg {
    background-color: #fff !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
    z-index: 999;
    padding: 3px;
}

.abcd .menu-bg .menu-button {
    top: 0;
}

.abcd .menu-bg .menu-button:hover {
    cursor: pointer;
    color: #1596ff;
}

.abcd .menu-bg .logo-menu a {
    color: #1596ff;
}

.abcd .menu-bg .navbar-nav .nav-link {
    color: #263238 !important;
}

.abcd .menu-bg .navbar-nav .nav-link:hover {
    color: #1596ff !important;
}

.abcd .menu-bg .navbar-nav .active {
    color: #1596ff !important;
}

.abcd .menu-button:hover {
    cursor: pointer;
    opacity: #eee;
}

.abcd .bg-white .menu-button {
    top: 0;
}

.abcd .bg-white .menu-button:hover {
    cursor: pointer;
    color: #1596ff;
}

.abcd .bg-white .logo-menu a {
    color: #1596ff;
}

.abcd .bg-white .navbar-nav .nav-link {
    /*color: #263238;*/
}

.abcd .bg-white .navbar-nav .nav-link:hover {
    color: #000 !important;
}

.abcd .bg-white .navbar-nav .active {
    color: #1596ff !important;
}

.abcd .close-button {
    cursor: pointer;
}

.abcd .navbar-expand-md .navbar-nav .nav-link {
    /*color: #fff;*/
    font-size: 14px;
    padding: 5px 0px;
    margin-left: 35px;
    position: relative;
}

.abcd .navbar-expand-md .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1596ff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.abcd .navbar-expand-md .navbar-nav .active::before,
.abcd .navbar-expand-md .navbar-nav .nav-link:hover::before {
    width: 50%;
}

.abcd .navbar-expand-md .navbar-nav .nav-link:focus,
.abcd .navbar-expand-md .navbar-nav .nav-link:hover,
.abcd .navbar-expand-md .navbar-nav .nav-link:hover:before {
    color: #1596ff;
}

.abcd .navbar-expand-md .navbar-nav .active>.nav-link,
.abcd .navbar-expand-md .navbar-nav .nav-link.active,
.abcd .navbar-expand-md .navbar-nav .nav-link.active:before,
.abcd .navbar-expand-md .navbar-nav .nav-link.open,
.abcd .navbar-expand-md .navbar-nav .open>.nav-link {
    color: #1596ff;
}

.abcd .navbar-expand-md .navbar-toggler {
    background: #1596ff;
    border-radius: 0px;
    margin: 5px;
    cursor: pointer;
    float: right;
}

.abcd .navbar-expand-md .navbar-toggler i {
    color: #fff !important;
}

.abcd .mainmenu-area .navbar-nav .nav-link {
    color: #263238 !important;
}

.abcd .collapse.show {
    background: #3e3a3a;
    margin-bottom: 10px;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}

.abcd .menu-bg .collapse.show {
    background: #fff;
    margin-bottom: 10px;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}

.abcd .navbar-expand-md .navbar-toggler:active {
    border: 1px solid #1596ff;
    color: #1596ff;
}

.abcd .w3l-index2,
.abcd .team-area,
.abcd .fact-counter-area,
.abcd .Service-scene,
.abcd .blog-area {
    padding-top: 11px;
    padding-bottom: 40px;
    /*background-color: #FFFFFF*/
}

.abcd .control-box {
    width: 1170px;
    /*height: 600px;*/
    /*background-image: url(../images/hots_bg.png);*/
    background-size: 1055px;
    background-repeat: no-repeat;
    background-position: 60px 165px;
    margin-left: auto;
    margin-right: auto;
    /*margin-top:150px;*/
}

.abcd .control-box ul {
    list-style: none;
    position: relative;
}

.abcd .prev {
    left: 0;
}

.abcd .next {
    right: 0;
}

.abcd .bigbox {
    overflow: hidden;
    width: 1150px;
    /*height: 600px;*/
    /*margin: auto 70px auto;*/
}

.abcd #switcher {
    height: 600px;
    left: 0px;
}

.abcd .content_1.content_2 {
    width: 100%;
    float: left;
}

.abcd .box {
    transition: all 0.7s ease 0s;
    width: 255px;
    height: 600px;
    float: left;
    border-left: 3px white solid;
}

.abcd .box:hover {
    opacity: 0.5;
}

.abcd .boxx {
    padding-left: 15px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.abcd .boxxc {
    position: relative;
    width: 30%;
}

.itbottom {
    width: 100%;
    padding-left: 30px;
}

.abcd .table ul {
    display: flex;
    justify-content: space-between;
}

.abcd .table ul li {
    width: 30%;
    position: relative;
}

.abcd .table ul img {
    position: absolute;
    top: 0;
    left: 0;
}

.abcd .shadow {
    width: 255px;
    height: 60px;
    /* opacity: 1; */
    background-color: rgba(0, 0, 0, 0.45);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
    margin-top: 130px;
    color: white;
    font-size: 14px;
}

.abcd .shadow a {
    display: inline-block;
    width: 225px;
    height: 60px;
    color: white;
    text-decoration: none;
    margin-left: 18px;
    margin-top: 10px;
}

.abcd .page-item a {
    color: #fff;
}

.abcd a:focus,
.abcd a:hover {
    color: black;
    text-decoration: none;
}

.abcd .nav-fixed {
    width: 14%;
    /*position: fixed;*/
    top: 47%;
    z-index: 0;
}

.abcd .nav-fixed li {
    margin-top: 15px;
}

.abcd .experience {
    background: transparent url("../images/education.jpg") no-repeat scroll center center / cover;
    position: relative;
}

.abcd .exp-block {
    /*background-color: rgb(0, 84, 164);*/
    /*padding: 60px 40px;*/
    color: #222222;
}

.abcd .exp-block h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.abcd .exp-block h3 i {
    margin-right: 20px;
}

.abcd .exp-block li {
    /*border-bottom: 2px solid #1596ff;*/
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.abcd .exp-block li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.abcd .exp-block li h4 {
    font-family: Roboto, sans-serif;
    margin-bottom: 7px;
    font-weight: 400;
}

.abcd .exp-block li span {
    font-size: 13px;
}

.abcd .exp-block li p {
    font-size: 14px;
    line-height: 20px;
}

.abcd .listnone-item:hover {
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.abcd .listnone-item {
    position: relative;
    /*padding: 30px 0px 30px 0px;*/
    /*width: calc((100% - 60px ) /4);*/
    /*width: 100%;*/
    /*float: left;*/
    transition: all 0.3s;
    /*margin-bottom: 20px;*/
    /*margin-right: 20px;*/
    background-color: #ffffff;
    border-radius: 2px;
}

.abcd .listnone-item:hover:after {
    width: 100%;
}

.abcd .listnone-item:after {
    content: '';
    width: 0;
    height: 4px;
    background-color: #1596ff;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.5s;
    z-index: 1;
    border-radius: 2px 2px 0 0;
}

.abcd .yuntip {
    text-align: center;
    font-weight: 600;
    color: #323648;
    padding-bottom: 20px;
    position: absolute;
    top: -1em;
    left: 5em;
    background: #0054a4;
    color: #fff;
    padding: 0.5em 5em 0.5em 5em;
    border-radius: 4px;
}

.abcd .overpass2 {
    padding: 20px 10px 50px;
    background: #f7f8fa;
    position: relative;
}

.abcd .c-section-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0 10px;
}

.abcd .c-section-hd {
    margin-bottom: 30px;
}

.abcd .c-section-tit {
    text-align: center;
    font-size: 30px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.abcd .c-section-des {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: 10px 0 0;
    line-height: 1.5;
}

.abcd .c-step-box {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    counter-reset: step;
}

.abcd .c-step-box .c-step-col {
    float: left;
    position: relative;
    width: 20%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.abcd .c-step-hd {
    display: table;
}

.abcd .c-step-title {
    background: #f7f8fa;
    display: table-cell;
    background: #fff;
    padding: 5px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.abcd .c-step-line {
    display: table-cell;
    position: relative;
    width: 100%;
    vertical-align: middle;
}

.abcd .c-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #00a4ff;
    text-align: center;
    line-height: 20px;
    color: #00a4ff;
    font-weight: 700;
    background: #fff;
    margin-right: 10px;
    font-size: 0;
}

.abcd .c-step-num::after {
    counter-increment: step;
    content: counter(step);
    font-size: 16px;
}

.abcd .c-step-bor {
    height: 1px;
    background: #b3b3b3;
    width: 100%;
    display: block;
}

.abcd .c-step-content span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    display: block;
    line-height: 24px;
    padding: 0;
}

.abcd .overpass {
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
}

.abcd .c-grid-nocard-expand {
    margin-left: -30px;
    margin-right: -30px;
}

.abcd .c-grid [class*="c-g-"] {
    display: inline-block;
    zoom: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
    vertical-align: top;
}

.abcd .c-g-6 {
    width: 14.4em;
}

.abcd .c-media {
    line-height: 1.5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    display: block;
}

.abcd .c-media-img {
    width: 100%;
    text-align: center;
}

.abcd .c-media-heading {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
}

.abcd .c-media-body {
    margin-top: 20px;
}

.abcd .c-media-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.7;
    word-wrap: break-word;
}

.abcd .yuntip-h4 {
    position: relative;
    top: -10em;
    padding: 0.5em;
    background: #0054a4;
    text-align: center;
    color: #fff;
}

.abcd .yuntip-p {
    text-align: center;
    color: #777777;
}

.abcd .csdn-side-toolbar a.option-box .show-txt {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    line-height: 14px;
    color: #999aaa;
    background-color: #fff;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.abcd .csdn-side-toolbar {
    position: fixed;
    right: 8px;
    bottom: 160px;
    width: 44px;
    z-index: 1999;
}

.abcd .csdn-side-toolbar {
    bottom: 30px !important;
}

.abcd .csdn-side-toolbar a.option-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0%;
    background: #000;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    text-align: center;
    height: 44px;
    cursor: pointer;
    margin-top: 8px;
}

.abcd .csdn-side-toolbar a.option-box img {
    display: block;
    width: 24px;
}

.abcd .csdn-side-toolbar a.option-box.active img,
.abcd .csdn-side-toolbar a.option-box:hover img {
    display: none;
}

.abcd .vaptcha-init-main {
    display: table;
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
}

.abcd .vaptcha-init-loading {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.abcd ​ .vaptcha-init-loading>a {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: none;
}

.abcd ​ .vaptcha-init-loading>a img {
    vertical-align: middle;
}

.abcd ​ .vaptcha-init-loading .vaptcha-text {
    font-family: sans-serif;
    font-size: 12px;
    color: #cccccc;
    vertical-align: middle;
}

.abcd .portfolio-item-wrapper {
    height: 640px !important;
}

.abcd .box {
    width: 60em !important;
    left: 15% !important;
    height: 26em !important;
    /*width: 800px;*/
    /*height: 400px;*/
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.abcd .box-1 ul li {
    width: 800px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.abcd .box-1 ul li img {
    display: block;
    /*width: 800px;*/
    /*height: 400px;*/
}

.abcd .box-1 ul li h2 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 300px;
    /*background: rgba(125, 125, 120, .4);*/
    text-indent: 2em;
    padding-right: 500px;
    font-size: 15px;
    line-height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: normal;
    /*color: ghostwhite*/
}

.abcd .box-2 {
    position: absolute;
    right: 10px;
    bottom: 14px;
}

.abcd .box-2 ul li {
    float: left;
    width: 12px;
    height: 12px;
    overflow: hidden;
    margin: 0 5px;
    border-radius: 50%;
    /*background: rgba(0, 0, 0, 0.5);*/
    text-indent: 100px;
    cursor: pointer;
}

.abcd .box-2 ul .on {
    /*background: rgba(255, 255, 255, 0.6);*/
}

.abcd .box-3 span {
    position: absolute;
    /*color: white;*/
    background: rgba(125, 125, 120, 0.3);
    width: 50px;
    height: 80px;
    top: 28%;
    font-family: "宋体";
    line-height: 80px;
    font-size: 60px;
    margin-top: -40px;
    text-align: center;
    cursor: pointer;
}

.abcd .box-3 .prev {
    left: 10px;
}

.abcd .box-3 .next {
    right: 10px;
}

.abcd .box-3 span::selection {
    background: transparent;
}

.abcd .xn_site_xn_site_address_t {
    line-height: 2;
}

.abcd .abcdefg .cabox>h5 {
    font-size: 30px;
}

.abcd {
    width: 74%;
    float: left;
}

.abcd .container-fluid {
    width: 100% !important;
    margin: 0 auto;
}

.abcd .container {
    width: 100% !important;
}

.less .abcd .section-title {
    margin-bottom: 0;
}

.less .abcd .section-title:after {
    content: none;
}

.lanxian {
    height: 2px;
    width: 100px;
    background-color: rgb(130, 185, 254);
    margin: 0 auto;
    margin-top: 3px;
}

.abcd .dikuang {
    background: #fafafa;
    line-height: 50px;
    border-left: 2px solid #00a9ff;
    margin: 20px;
    width: 29%;
    text-align: center;
}

.abcd .our-services-text p {
    /* 多余内容省略号处理-单行 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 1200px) {
    .abcd {
        width: 63%;
    }
}

@media screen and (max-width: 1000px) {
    .less .ct2-sd {
        display: none;
    }
    .abcd {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .abcd .container {
        width: 100%;
        margin: 0 auto;
    }
    .abcd .boxxc {
        width: 47%;
    }
    .itbottom td {
        line-height: 30px !important;
    }
    .itbottom .des-ys-li {
        flex-wrap: wrap;
    }
    .itbottom .des-ys-li li {
        width: 47% !important;
        margin-bottom: 20px;
    }
    .abcd {
        width: 100%;
        float: left;
    }
    .abcd .container-fluid {
        width: 100%;
    }
    body {
        overflow-x: hidden;
    }
    html {
        overflow-x: hidden;
    }
    .abcd .dikuang {
        background: #fafafa;
        line-height: 50px;
        border-left: 2px solid #00a9ff;
        margin: 20px;
        width: 44%;
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    .abcd {
        padding: 0;
    }
    .abcd .boxxc {
        width: 100%;
        margin: 15px auto;
    }
    .abcd .boxx {
        padding: 0;
    }
    .itbottom {
        padding: 0;
    }
    .abcd .dikuang {
        background: #fafafa;
        line-height: 50px;
        border-left: 2px solid #00a9ff;
        margin: 20px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}