/*!
 * app.css for master
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-03-05-1:59 PM
 */

/* Back to top button
-------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Disable AOS delay on mobile
-------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*  Top Bar
-------------------------------*/
#topbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    padding: 0;
    height: 40px;
}

#topbar .contact-info i {
    font-style: normal;
    color: var(--secondary-color);
}

#topbar .contact-info i a, #topbar .contact-info i span {
    padding-left: 5px;
    color: #444;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: var(--secondary-color);
}

#topbar .social-links a {
    color: #555;
    padding: 0 15px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
    color: var(--secondary-color);
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/* Header
-------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
    font-size: 42px;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

#header #logo h1 a {
    color: var(--primary-color);
}

#header #logo h1 a span {
    color: var(--secondary-color);
}

#header #logo img {
    max-height: 50px;
    width: auto;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #header {
        height: 60px;
    }

    #header #logo h1 {
        font-size: 34px;
    }

    #header #logo img {
        max-height: 40px;
    }
}

.scrolled-offset {
    margin-top: 70px;
}

/*  Navigation Menu
-------------------------------*/
/* Desktop Navigation
-------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: var(--secondary-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--secondary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/*  Mobile Navigation
-------------------------------*/
.mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(87, 112, 147, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--primary-color);
    text-align: center;
    display: block;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--secondary-color);
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: var(--secondary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

#slider {
    width: 100%;
    height: 60vh;
    position: relative;
    background: url("/assets/img/svg-bg1.svg") no-repeat;
    background-size: cover;
    padding: 0;
}

#slider .slider-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#slider .slider-content p {
    font-size: 1.2rem;
}

#slider .slider-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
}

#slider .slider-content h1 span {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 767px) {
    #slider .slider-content h2 {
        font-size: 34px;
    }
}

#slider .slider-content .btn-projects {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#slider .slider-content .btn-projects {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#slider .slider-content .btn-projects:hover {
    background: none;
    color: var(--primary-color);
}


#slider .slider-main {
    z-index: 8;
    height: 60vh;
}

#slider .slider-main::before {
    content: '';
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 7;
}

#slider .slider-main .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
}

/* Sections
-------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.section-header p {
    padding: 0;
    margin: 0;
    color: var(--text-color-secondary);
}

/* About Section
--------------------------------*/
#about {
    padding: 60px 0 30px 0;
}

#about .about-img {
    overflow: hidden;
}

#about .about-img img {
    margin-left: -15px;
    max-width: 100%;
}

#about .btn-more {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 15px 0;
    color: #fff;
}

#about .btn-more {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#about .btn-more:hover {
    background: none;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }

    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .content h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
}

#about .content h3 {
    color: var(--text-color-secondary);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
}

#about .content p {
    line-height: 2;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary-color);
}

#about .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}

#revenue {
    padding: 40px 0;
}

#revenue .box {
    padding: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
    height: 100%;
}

#revenue .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

#revenue .box .icon {
    float: left;
}

#revenue .box .icon i {
    color: #444;
    font-size: 64px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
}

#revenue .box .icon i:before {
    background: var(--primary-color);
    background: linear-gradient(45deg, #192D59 0%, #009bd9 90%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#revenue .box h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

#revenue .box h4 a {
    color: #444;
}

#revenue .box p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

@media (max-width: 767px) {
    #revenue .box .box {
        margin-bottom: 20px;
    }

    #revenue .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #revenue .box h4, #revenue .box p {
        margin-left: 0;
        text-align: center;
    }
}

/* Superiority Section
--------------------------------*/
#superiority {
    padding: 30px 0;
}

#superiority .superiority-item {
    box-sizing: content-box;
    padding: 30px 30px 0 30px;
    margin: 30px 15px;
    text-align: center;
    min-height: 350px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    #superiority .superiority-item {
        margin: 30px 10px;
    }
}

#superiority .superiority-item .superiority-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#superiority .superiority-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#superiority .superiority-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#superiority .superiority-item h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--primary-color);
}

#superiority .superiority-item h4 {
    position: absolute;
    right: 22px;
    bottom: -8px;
    font-size: 150px;
    font-style: italic;
    color: rgba(0, 155, 217, 0.2);
}


#superiority .superiority-item p {
    margin: 0 auto 15px auto;
    min-height: 145px;
}

#superiority .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#superiority .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--secondary-color);
}

#superiority .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: var(--primary-color);
    background-size: cover;
    padding: 40px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

#call-to-action .cta-btn:hover {
    background: var(--secondary-color);
    border: 3px solid var(--secondary-color);
}

/* Clients Section
--------------------------------*/
#client {
    padding: 30px 0;
}

#client img {
    opacity: 0.5;
    transition: 0.3s;
}

#client img:hover {
    opacity: 1;
}

#client .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#client .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--secondary-color);
}

#client .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

#client .client-box {
    margin: 10px 10px 20px;
}

#clients .client-box, #client .client-box {
    box-shadow: 0 5px 10px rgba(2, 59, 109, .1);
    transition: box-shadow .3s ease-in-out;
    height: 100%;
    background: #fff;
    overflow: hidden;
}

#clients .client-box:hover, #client .client-box:hover {
    box-shadow: 0 8px 15px rgba(2, 59, 109, .22);
}

/*  Footer
--------------------------------*/
.footer-area {
    padding: 40px 0;
    background: var(--light-bg-color);
}

.footer-head p {
    color: #444;
}

.footer-head h4 {
    color: var(--primary-color);
    font-size: 20px;
    letter-spacing: 2px;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-logo {
    padding-bottom: 20px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-logo h2 span {
    color: var(--secondary-color);
}

.footer-qrcode li {
    display: inline-block;
}

.footer-qrcode img {
    max-width: 120px;
    height: auto;
}

.footer-qrcode li p {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin-top: 10px;
}


.footer-qrcode {
    margin-top: 30px;
}

.footer-contacts p i {
    color: var(--secondary-color);
    font-weight: 700;
}

.popular-tag ul li {
    display: inline-block;
}

.footer-content {
    display: block;
    overflow: hidden;
}

.footer-content p.text {
    line-height: 1.8;
}

.footer-area-bottom {
    background: #f1f1f1 none repeat scroll 0 0;
    padding: 15px 0;
}

.footer-contacts p {
    line-height: 1.8;
    margin-bottom: 0;
}

.copyright-text a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.copyright-text a {
    color: #444;
    font-size: 14px;
}

.copyright-text p {
    margin-bottom: 0;
    color: #444;
    font-size: 14px;
}


/*#breadcrumbs
--------------------------------*/
#breadcrumbs {
    width: 100%;
    min-height: 10vh;
    background-position: top left;
    background-attachment: scroll;
    background-size: auto;
    background-size: cover;
    position: relative;
}

#breadcrumbs::before {
    content: "";
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#breadcrumbs .breadcrumbs-content {
    position: relative;
    z-index: 10;
}

#breadcrumbs h2 {
    font-size: 30px;
    font-weight: 300;
    color: var(--primary-color);
}

#breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

#breadcrumbs ol a {
    color: #fff;
}

#breadcrumbs ol li + li {
    padding-left: 10px;
}

#breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}

@media (max-width: 991px) {
    #breadcrumbs {
        margin-top: 58px;
    }

    #breadcrumbs .d-flex {
        display: block !important;
    }

    #breadcrumbs ol {
        display: block;
    }

    #breadcrumbs ol li {
        display: inline-block;
    }
}

/* article
--------------------------------*/
.article-box .article-body {
    line-height: 1.8
}

.article-box .article-body img {
    max-width: 100%;
    height: auto;
}

.article-box .article-header {
    margin: 20px 0;
}

.article-box .article-header h2 {
    font-size: 30px;
}

/* baidu map
--------------------------------*/
#map {
    min-height: 500px;
    width: 100%;
}

#map .BMap_Marker img {
    max-width: 100%;
    height: auto;
}

#map .iw_poi_title {
    color: #CC5522;
    font-weight: bold;
    overflow: hidden;
    padding-right: 13px;
    white-space: nowrap
}

#map .iw_poi_content {
    overflow: visible;
    padding-top: 4px;
    white-space: -moz-pre-wrap;
    word-wrap: break-word
}

/* contact
--------------------------------*/
.contact {
    margin: 60px 0
}

.contact .contact-box {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-height: 120px;
}

.contact .contact-box i {
    font-size: 28px;
    color: var(--secondary-color);
    float: left;
    width: 44px;
    height: 44px;
    border: 1px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s;
}

.contact .contact-box h4 {
    padding: 0 0 0 60px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.contact .contact-box p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    color: #444444;
}

.contact .contact-box:hover i {
    background: var(--secondary-color);
    color: #fff;
}

/* rights
--------------------------------*/
.rights {
    padding: 70px 0 60px;
}

.rights .right-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: var(--dark-bg-color);
}

.rights .right-box i {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 35px;
    background: var(--secondary-color);
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 0;
    border-radius: 50px;
    border: 5px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rights .right-box p {
    font-size: 24px;
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px 10px;
}

/*#function
--------------------------------*/
#function {
    background-color: var(--dark-bg-color);
}

#function .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    /*border-radius: 6px;*/
    background: #fff;
    min-height: 168px;
}

#function .icon-box i {
    float: left;
    color: var(--secondary-color);
    font-size: 40px;
    line-height: 0;
}

#function .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

#function .icon-box h4 a {
    color: var(--primary-color);
    transition: 0.3s;
}

#function .icon-box .icon-box:hover h4 a {
    color: var(--secondary-color);
}

#function .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

#function .icon-box:hover h4 a {
    color: var(--secondary-color);
}

/* certificate
--------------------------------*/
.certificate .cert-box {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.certificate .cert-box:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.certificate .cert-box img {
    transition: 0.3s;
}

.certificate .cert-box:hover img {
    transform: scale(1.1);
}

/* case
--------------------------------*/
#case {
    padding-bottom: 30px;
}

#case .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

#case .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: var(--secondary-color);
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

#case .icon i {
    font-size: 36px;
    line-height: 0;
}

#case .icon-box:hover .icon {
    box-shadow: 0px 0 30px rgba(0, 155, 217, 0.5);
}

#case .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    color: #444;
    transition: 0.3s;
}


#case .title:hover {
    color: var(--primary-color);
}

#case .title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: calc(50% - 25px);
}

#case .description {
    line-height: 24px;
    font-size: 14px;
}
