index.ejs 44.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>Leadstec | Certified Adobe's Partner in China | Agency of Digital Marketing Solutions of AEM, Analytics,
    Target, Campaign, Magento, Marketo, TVP, ็ง‘ๆŠ€ๅˆธ and more</title>
  <meta content="width=device-width, initial-scale=1.0" name="viewport">
  <meta name="keywords"
    content="Leadstec, Leadstec Co., Ltd.,, Adobe Partner, Adobe Agency, Adobe Solution Partner, Partner, Adobe Partner, Adobe Supplier, Adobe Agency, Adobe Digital Marketing, Adobe Experience Manager, AEM, AEM Development, AEM Development, AEM Consulting, AEM Consulting, Adobe Campaign, Adobe Analytics, Adobe Target, Magnolia CMS, Magnolia Solution, Magnolia Partner, Magnolia Agency, Magento, Marketo, Tech Voucher, TVP">
  <meta name="description"
    content="Leadstec is an official Adobe certified partner, providing Adobe Experience Cloud development services and digital marketing solutions for brands, including web application development, content management system (CMS), digital asset management (DAM), data analysis, marketing Campaign management, personalized recommendation, technology coupons, TVP, etc. Leadstec is also a Magnolia CMS partner, providing Magnolia development, to achieve cross-channel ,personalized content management digital experience, offering Magnolia development to help clients achieve a cross-channel, personalized content management experience.">

  <!-- Favicons -->
  <link href="../img/favicon.ico" rel="icon">
  <link href="../img/apple-touch-icon.png" rel="apple-touch-icon">

  <%- include('headlib'); -%>

</head>

<body>

  <!--==========================
  Header
  ============================-->
  <header id="header" class="fixed-top">
    <%- include('header'); -%>
  </header><!-- #header -->

  <!--==========================
    Intro Section
  ============================-->
  <section id="intro" class="clearfix">
    <div class="container">

      <div class="intro-img">
        <img src="../img/homepage-banner.png" alt="Adobe Solution Partner" class="img-fluid">
      </div>

      <div class="intro-info">
        <h1>We are a professional digital experience agency</h1>
        <h5>We help businesses transform by integrating creativity and technology to create meaningful customer
          experiences.
        </h5>
        <h5>Our vision is to bring the world's most advanced digital experience solutions to global enterprises through
          the introduction of our products and subsequent implementation services.
        </h5>
        <div>
          <a href="https://www.leadstecgz.com/blog/en/adobe-solution-partner-en/" class="btn-get-started scrollto">Adobe
            Partner</a>
          <a href="#services" class="btn-services scrollto">Our Services</a>
        </div>
      </div>

    </div>
  </section><!-- #intro -->

  <main id="main">

    <!--==========================
      About Us Section
    ============================-->
    <section id="about">
      <div class="container">

        <header class="section-header">
          <h3>Our Adobe Capabilities</h1>
            <p>We are experienced on Adobe Experience Cloud Solution, able to provide the professional consultant
              service in the below products</p>
        </header>

        <div class="row about-container">
          <div class="col-lg-12 content row">

            <div class="col-lg-6 icon-box wow fadeInUp">
              <div class="icon icon-no-border">
                <img src="../img/svg/AEM.svg" alt="AEM">
              </div>
              <h4 class="title"><a href="/en/adobe-experience-manager-aem.html">Adobe Experience Manager</a></h4>
              <p class="description">
                Adobe Experience Manager (AEM) is the leading solution for digital experience management, combining your
                Sites, Assets, Forms and Screens. Helps you simplify the process of WEB creating, managing, and
                delivering, enabling you to quickly bring content to market and build an excellent personalized content
                experience for customers on any screen.
              </p>
            </div>

            <div class="col-lg-6 icon-box wow fadeInUp">
              <div class="icon icon-no-border">
                <img src="../img/svg/AA.svg" alt="AA">
              </div>
              <h4 class="title"><a href="/en/adobe-analytics.html">Adobe Analytics</a></h4>
              <p class="description">
                Adobe Analytics (AA) is an industry-leading digital Analytics solution that collects and analyzes
                customer data in real time, providing a 360-degree view of customers, interpreting customer preferences
                and marketing transformation data. It has powerful attribution function, in-depth understanding of each
                conversion and takes the corresponding investment strategy.
              </p>
            </div>

            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.2s">
              <div class="icon icon-no-border">
                <img src="../img/svg/AC.svg" alt="AC">
              </div>
              <h4 class="title"><a href="/en/adobe-campaign.html">Adobe Campaign</a></h4>
              <p class="description">
                Adobe Campaign (AC) is a cross-channel marketing campaign management solution that helps you create,
                manage, and deliver all online and offline marketing activities. According to different characteristics
                of customers, such as interest, loyalty, location, etc., it can customize different marketing processes
                and content, enhance the connection with customers, and ultimately achieve the growth of marketing
                revenue.
              </p>
            </div>

            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.2s">
              <div class="icon icon-no-border">
                <img src="../img/svg/AT.svg" alt="AT">
              </div>
              <h4 class="title"><a href="/en/adobe-target.html">Adobe Target</a></h4>
              <p class="description">
                Adobe Target (AT) is an intelligent personalization engine that takes A/B testing and multivariable
                testing to achieve AI automation on a large scale. Based on data results, it can automatically locates
                specific content, layout, UX and other optimization methods, so as to provide each customer with a truly
                personalized experience.
              </p>
            </div>

            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.4s">
              <div class="icon icon-no-border">
                <img src="../img/svg/AAM.svg" alt="AAM">
              </div>
              <h4 class="title"><a href="/en/adobe-audience-manager.html">Adobe Audience Manager</a></h4>
              <p class="description">
                Adobe Audience Manager (AAM) is a data management platform (DMP) for audience files. It collects
                customer information on all channels, builds 360-degree panoramic archivesย of customers, and shares them
                with any digital channels. When launching marketing activities, you can locate the precise and
                subdivided customer groups on any platform to make your marketing activities more effective.
              </p>
            </div>

            <!--            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.4s">
              <div class="icon icon-no-border">

                <svg version="1.1" id="mnemonic" xmlns="http://www.w3.org/2000/svg"
                  xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 234"
                  enable-background="new 0 0 240 234" xml:space="preserve">
                  <radialGradient id="tile_1_" cx="93.6638" cy="-17.9998" r="383.6399" gradientUnits="userSpaceOnUse">
                    <stop offset="0" style="stop-color:#EC202B" />
                    <stop offset="0.1463" style="stop-color:#E2202A" />
                    <stop offset="0.3994" style="stop-color:#C51E26" />
                    <stop offset="0.7265" style="stop-color:#981C20" />
                    <stop offset="1" style="stop-color:#6D1A1B" />
                  </radialGradient>
                  <rect id="tile_10_" x="0" y="0" fill-rule="evenodd" clip-rule="evenodd" fill="url(#tile_1_)"
                    width="240" height="234" />
                  <path fill="#FFFFFF"
                    d="M197.3,132.1c0.2-1,0.4-2.1,0.6-3.2c-11,2-22,5.3-34.8,10.4c-1.6-14.5-1.5-29.1,0.3-43.6
                    c6.8,3.1,28,10,34.8,11.3c-0.5-4.1-1.3-8.1-2.4-11.9c-7-1.9-14.5-4.5-22.9-7.9c1.2-8.3,2.4-16.4,4.5-24.3c-2.8-3-5.8-5.7-9.1-8.2
                    c-3.4,9.9-6.7,31.7-7.4,36.7c-13.3-5.9-25.9-13.4-37.5-22.3c9.6-7.5,18.5-15.9,26.5-25.1c-1-0.4-2-0.8-3-1.2
                    c-7.9,9-16.6,17.1-25.9,24.4C111.6,60.1,101.3,52,93.1,43c-1,0.4-2,0.8-3,1.2c8.3,9.4,18.8,17.6,28.3,25.1
                    c-11.7,8.7-24.4,16-37.9,21.7c-1.2-10.7-5.5-27.7-8.7-36.2c-3.2,2.5-6.3,5.3-9.1,8.2c2.9,8.9,4.8,16.7,6,24.3
                    c-7.8,3.1-16,6-24.5,8.2c-1.1,3.8-1.9,7.8-2.4,11.9c12.8-2.7,27.4-8.2,36.2-11.9c1.6,14.4,1.5,28.9-0.3,43.3
                    c-12.1-4.9-24.5-7.7-35.6-9.6c0.2,1.1,0.4,2.1,0.6,3.2c10.9,2,22.9,4.7,34.6,9.6c-1.7,11.9-4.6,23.6-8.6,35c0.8,0.7,1.6,1.4,2.5,2
                    c4.2-11.6,7.2-23.6,8.9-35.8c13.2,5.8,25.7,13.1,37.3,21.8c-9.8,7.4-19.3,15.9-27.3,25c3.7,1.5,7.6,2.8,11.5,3.7
                    c5.7-6,11.9-11.7,18.4-16.9c6.7,5.4,12.8,11.1,18.3,16.8c4-0.9,7.8-2.2,11.5-3.7c-7.4-8.5-16.7-16.9-27.1-25
                    c11.7-8.5,24.3-15.7,37.7-21.3c1.6,11.9,4.4,23.7,8.3,35.1c0.8-0.7,1.7-1.3,2.5-2c-3.7-11.2-6.4-22.7-7.9-34.3
                    C175.9,137.4,186.7,134.1,197.3,132.1z M160.1,140.5c-14.1,5.8-28.3,13.8-39.9,22.6c-10.2-8.1-25.5-17.2-39.6-23.2
                    c2-15.3,2.1-30.7,0.3-46c14.2-6,27.7-13.6,40-22.9c12.2,9.4,25.5,17.3,39.5,23.4C158.4,109.8,158.3,125.3,160.1,140.5z" />
                </svg>
              </div>
              <h4 class="title"><a href="/en/adobe-experience-cloud.html">Adobe Experience Cloud</a></h4>
              <p class="description">Adobe Experience Cloud (AEC) is the only end-to-end customer experience management (CXM) solution for cross-industry marketing, advertising, analytics, and business. It brings together eight of Adobe's marketing solutions so that the brands can create customized customer experiences with greater precision, enabling you to achieve business success.</p>
            </div>
-->
            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.4s">
              <div class="icon icon-no-border">
                <img src="../img/svg/AAC.svg" alt="AAC">
              </div>
              <h4 class="title"><a href="/en/adobe-advertising-cloud.html">Adobe Advertising Cloud</a></h4>
              <p class="description">
                Adobe Advertising Cloud (AAC) is the only independent advertising platform that can unify and automate
                all media, screens, data and creativity on a large scale. Connecting customer data to media and brands
                allows you to provide a seamless experience in every channel, attracting customers and increasing
                conversion rates.
              </p>
            </div>

            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.4s">
              <div class="icon icon-no-border">
                <img src="../img/svg/AME.svg" alt="AME">
              </div>
              <h4 class="title"><a href="/en/adobe-marketo-engage.html">Adobe Marketo Engage</a></h4>
              <p class="description">
                Adobe Marketo Engage (AME) is an opportunity management and B2B marketing management platform that
                ranges from lead management to account-based marketing. The Marketo Engagement Platform simplifies the
                way you plan, organize, and evaluate interactions with customers and prospects at each stage of the
                experience.
              </p>
            </div>

            <div class="col-lg-6 icon-box wow fadeInUp" data-wow-delay="0.4s">
              <div class="icon icon-no-border">
                <img src="../img/svg/ACC.svg" alt="ACC">
              </div>
              <h4 class="title"><a href="/en/adobe-commerce-cloud.html">Adobe Commerce Cloud (Magento)</a></h4>
              <p class="description">
                Adobe Commerce Cloud (Magento) is the most modern business platform designed for today's experience. The
                platform is based on an open source ecosystem and extends from B2C to B2B, including e-commerce, order
                management and predictive intelligence, the platform can create any buying experience, providing your
                customers with unparalleled agility and flexibility.
              </p>
            </div>


          </div>


        </div>

      </div>
    </section><!-- #about -->

    <!--==========================
     Our Magnolia Capabilities
    ============================-->
    <section id="magnolia-ability" class="clearfix section-bg">
      <div class="container">
        <header class="section-header">
          <h3>Our Magnolia Capabilities</h3>
        </header>
        <div class="magnolia-container">
          <div class="intro-img">
            <img src="../img/magnolia-partner-leadstec.png" alt="Our Magnolia Capabilities" class="img-fluid">
          </div>

          <div class="intro-info">

            <h5>
              As one of the first Magnolia CMS partners, Leadstec has facilitated the construction of multiple portals and intranets, helping our clients develop omni-channel strategies and supporting improved user experience.

            </h5>
            <h5>
              As Certified Magnolia Solution Partner, we have the most up-to-date knowledge and experience available.
              Leadstec provides you with complete and professional support, from implementation to maintenance and
              hosting.
            </h5>
            <div>
              <a href="/en/magnolia.html" class="btn-get-started scrollto">Learn More</a>
            </div>
          </div>
        </div>
      </div>
    </section>

    <!--==========================
        Our Works
      ============================-->
    <section id="function" class="clearfix">
      <div class="container">

        <header class="section-header">
          <h3>Our Works</h3>
        </header>

        <div class="row">
          <div class="col-lg-4">

            <div class="box">
              <p class="description">
                GOHK Summer and Winter AEM Sites
              </p>
            </div>

            <div class="box">
              <p class="description">
                OnePlus Official AEM Sites
              </p>
            </div>

            <div class="box">
              <p class="description">
                Dah Sing Bank AEM Forms
              </p>
            </div>

            <div class="box">
              <p class="description">
                Macy's E-commerce AEM Assets
              </p>
            </div>

            <div class="box">
              <p class="description">
                ST Forum Adobe Analytics
              </p>
            </div>
          </div>

          <div class="col-lg-8">
            <div class="wow fadeInUp">

              <div class="function-item function-item-1">
                <img src="../img/our-work/our-works-1-aem-sites.png" class="function-img"
                  alt="GOHK Summer and Winter AEM Sites ">
              </div>

              <div class="function-item">
                <img src="../img/our-work/our-works-2-aem-sites.png" class="function-img"
                  alt="OnePlus Official AEM Sites">
              </div>

              <div class="function-item">
                <img src="../img/our-work/our-works-3-aem-forms.png" class="function-img"
                  alt="OnePlus Official AEM Forms">
              </div>

              <div class="function-item">
                <img src="../img/our-work/our-works-4-aem-assets.png" class="function-img"
                  alt="Macy's China AEM Assets">
              </div>

              <div class="function-item">
                <img src="../img/our-work/our-works-5-adobe-analytics.png" class="function-img"
                  alt="ST China Adobe Analytics">
              </div>

            </div>
          </div>
        </div>
      </div>
    </section>

    <!--==========================
      Services Section
    ============================-->
    <section id="services" class="section-bg">
      <div class="container">

        <header class="section-header">
          <h3>Our Services</h3>
        </header>

        <div class="row">

          <div class="col-md-6 col-lg-5 offset-lg-1 wow bounceInUp" data-wow-duration="1.4s">
            <div class="box">
              <div class="icon"><i class="ion-ios-personadd-outline" style="color: #8660fe;"></i>
              </div>
              <h4 class="title"><a>Creative Design</a></h4>
              <p class="description">A good design creates a perfect user experience. Our combination of technical
                expertise, online marketing knowledge and advanced design concepts will ensure that UX/UI design fits
                your digital strategy to quickly elevate your brand image.
              </p>
            </div>
          </div>
          <div class="col-md-6 col-lg-5 wow bounceInUp" data-wow-duration="1.4s">
            <div class="box">
              <div class="icon"><i class="ion-ios-analytics-outline" style="color: #ff689b;"></i></div>
              <h4 class="title"><a>Product Agent</a></h4>
              <p class="description">We are an official partner of Adobe, Magnolia and HCL. We provide digital marketing
                solutions, including web creation, data analysis, marketing management, asset management, optimization
                engine and so on, for enterprises in different industries. </p>
            </div>
          </div>
          <div class="col-md-6 col-lg-5 offset-lg-1 wow bounceInUp" data-wow-duration="1.4s" data-wow-delay="0.1s">
            <div class="box">
              <div class="icon"><i class="ion-ios-bookmarks-outline" style="color: #e9bf06;"></i></div>
              <h4 class="title"><a>Product Training</a></h4>
              <p class="description">We will arrange a detailed time plan according to the project objectives, work
                content and personnel situation, and monitor the existing risk points at any time to ensure that the
                project can be delivered on time and with high quality.
              </p>
            </div>
          </div>
          <div class="col-md-6 col-lg-5 wow bounceInUp" data-wow-duration="1.4s" data-wow-delay="0.1s">
            <div class="box">
              <div class="icon"> <i class="ion-ios-search" style="color: #4680ff;"></i></div>
              <h4 class="title"><a>Content Creation</a></h4>
              <p class="description">Leadstec has a team of experienced storytelling experts. We know how to reach your
                target audience in the correct way. We do this using fitting, relevant content that is communicated at
                the right time.</p>
            </div>
          </div>
          <div class="col-md-6 col-lg-5 offset-lg-1 wow bounceInUp" data-wow-delay="0.2s" data-wow-duration="1.4s">
            <div class="box">
              <div class="icon"><i class="ion-ios-paper-outline" style="color: #3fcdc7;"></i></div>
              <h4 class="title"><a>Program Implementation</a></h4>
              <p class="description">Our product training instructors have rich product and training experience, and can
                provide customized personal training and in-company training, support on-site or online training.</p>
            </div>
          </div>
          <div class="col-md-6 col-lg-5 wow bounceInUp" data-wow-delay="0.2s" data-wow-duration="1.4s">
            <div class="box">
              <div class="icon"><i class="ion-ios-speedometer-outline" style="color:#41cf2e;"></i></div>
              <h4 class="title"><a>Maintenance Support</a></h4>
              <p class="description">We provide operation and maintenance support services such as content input and
                migration, product upgrade, review, optimization, server maintenance by on-site and off-site.</p>
            </div>
          </div>


        </div>
      </div>
    </section><!-- #services -->

    <!--==========================
      TVP Section
    ============================-->
    <section id="tvp-service" class="clearfix">
      <div class="container">

        <header class="section-header">
          <h3>TVP Application Service</h3>
          <p>
            Technology Voucher Programme (TVP) was launched by the Hong Kong government on a pilot basis to subsidise
            local small and medium enterprises (SMEs) in using technological services and solutions to improve
            productivity, or upgrade or transform their business processes.
            <br /><br />
            We can design a complete set of system technical solutions for enterprises, and complete system research and
            development. Our team has extensive experience in applying for TVP and has helped many companies
            successfully apply for government funding.
          </p>
        </header>
        <div class="text-center"><a href="/blog/en/technology-voucher-programme-en" class="about-tvp scrollto">Learn
            More</a></div>

      </div>
    </section><!-- #TVP -->

    <!--==========================
      Why Us Section
    ============================-->
    <section id="why-us" class="wow fadeIn">
      <div class="container">
        <header class="section-header">
          <h3>Why Leadstec?</h3>
          <p>
            Leadstec is a professional digital experience solution service provider, with rich experience in product implementation, can provide you with the most professional services.
          </p>
        </header>

        <div class="row row-eq-height justify-content-center">

          <div class="col-lg-4 mb-4">
            <div class="card wow bounceInUp">
              <i class="fa fa-diamond"></i>
              <div class="card-body">
                <h5 class="card-title">Passionately Creative and Innovation</h5>
                <p class="card-text">We take immense care regarding how the creative solution ties with all other
                  factors. We utilise a multidisciplinary approach to ensure that the proposed design not only looks
                  appealing, but also the user experience is user-friendly, and website is sustainable for future usage.
                </p>
              </div>
            </div>
          </div>

          <div class="col-lg-4 mb-4">
            <div class="card wow bounceInUp">
              <i class="fa fa-address-card-o"></i>
              <div class="card-body">
                <h5 class="card-title">100% Project Success and Customer Satisfaction</h5>
                <p class="card-text">We have implemented more than 40 projects. All the projects are successful and most
                  of our customers satisfied our service and created long-term relationship with us.</p>
              </div>
            </div>
          </div>

          <div class="col-lg-4 mb-4">
            <div class="card wow bounceInUp">
              <i class="fa fa-object-group"></i>
              <div class="card-body">
                <h5 class="card-title">Professional Service Team</h5>
                <p class="card-text">We are a "Specialized Adobe Experience Manager" company with 17 Adobe Certified AEM Experts and AA Experts with over 7 years of experience.</p>
              </div>
            </div>
          </div>

        </div>

        <div class="row counters">

          <div class="col-lg-3 col-6 text-center">
            <span data-toggle="counter-up">126</span><span>%+</span>
            <p>Return on Investment</p>
          </div>

          <div class="col-lg-3 col-6 text-center">
            <span data-toggle="counter-up">40</span><span>+</span>
            <p>Projects</p>
          </div>

          <div class="col-lg-3 col-6 text-center">
            <span data-toggle="counter-up">50000</span><span>+</span>
            <p>Hours of Support</p>
          </div>

          <div class="col-lg-3 col-6 text-center">
            <span data-toggle="counter-up">30</span><span>+</span>
            <p>Adobe Solutions' Engineers</p>
          </div>

        </div>

      </div>
    </section>

    <!--==========================
      Portfolio Section
    ============================-->
    <!--<section id="portfolio" class="clearfix">
      <div class="container">

        <header class="section-header">
          <h3 class="section-title">Successful Stories</h3>
        </header>

        <div class="row">
          <div class="col-lg-12">
            <ul id="portfolio-flters">
              <li data-filter="*" class="filter-active">All</li>
              <li data-filter=".filter-sites">AEM Sites</li>
              <li data-filter=".filter-forms">AEM Forms</li>
              <li data-filter=".filter-assets">AEM Assets</li>
              <li data-filter=".filter-screens">AEM Screens</li>
              <div></div><li data-filter=".filter-analytics">Adobe Analytics</li>
              <li data-filter=".filter-audience-manager">Adobe Audience Manager</li>
              <li data-filter=".filter-target">Adobe Target</li>
            </ul>
          </div>
        </div>

        <div class="row portfolio-container">

          <div class="col-lg-4 col-md-6 portfolio-item filter-assets">
            <div class="portfolio-wrap">
              <img src="../img/cases/ishare-1.jpg" class="img-fluid" alt="Huawei iShare">
              <p>Huawei iShare</p>
              <div class="portfolio-info">
                <h4><a href="">Huawei iShare</a></h4>
                <p>AEM Assets</p>
                <div>
                  <a href="/en/cases.html#ishare" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-screens" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/screen-1.jpg" class="img-fluid" alt="Huawei experience store's large screen system">
              <p>Huawei experience store's large screen system</p>
              <div class="portfolio-info">
                <h4><a href="">Huawei Screen</a></h4>
                <p>AEM Screens</p>
                <div>
                  <a href="/en/cases.html#screen" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>

          
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites">
            <div class="portfolio-wrap">
              <img src="../img/cases/cbg1.jpg" class="img-fluid" alt="Huawei Consumer Business Website (CBG)">
              <p>Huawei Consumer Business Website (CBG)</p>
              <div class="portfolio-info">
                <h4><a href="">Huawei CBG</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#huaweicbg" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites">
            <div class="portfolio-wrap">
              <img src="../img/cases/honor1.jpg" class="img-fluid" alt="HONOR Official Site Global">
              <p>HONOR Official Site Global</p>
              <div class="portfolio-info">
                <h4><a href="">HONOR Official Site Global</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#honor" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites">
            <div class="portfolio-wrap">
              <img src="../img/cases/cnbg.jpg" class="img-fluid" alt="Huawei CNBG">
              <p>Huawei CNBG</p>
              <div class="portfolio-info">
                <h4><a href="">Huawei CNBG</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#huaweicnbg" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>

          <div class="col-lg-4 col-md-6 portfolio-item filter-analytics" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/samsung1.jpg" class="img-fluid" alt="Analysis of Samsung Galaxy community website">
              <p>Analysis of Samsung Galaxy community website</p>
              <div class="portfolio-info">
                <h4><a href="">Analysis of Samsung Galaxy</a></h4>
                <p>Adobe Analytics</p>
                <div>
                  <a href="/en/cases.html#samsung" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>


          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/anyway-1.jpg" class="img-fluid" alt="Amway China">
              <p>Amway China</p>
              <div class="portfolio-info">
                <h4><a href="">Amway China</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#anyway" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/anyway-wechat.jpg" class="img-fluid" alt="Amway China WeChat project">
              <p>Amway China WeChat project</p>
              <div class="portfolio-info">
                <h4><a href="">Amway China WeChat project</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#anywaywechat" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/yahoo-1.jpg" class="img-fluid" alt="Activity site of Yahoo Taiwan">
              <p>Activity site of Yahoo Taiwan</p>
              <div class="portfolio-info">
                <h4><a href="">Activity site of Yahoo Taiwan</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#yahoo" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          <div class="col-lg-4 col-md-6 portfolio-item filter-assets filter-target">
            <div class="portfolio-wrap">
              <img src="../img/cases/macys-1.jpg" class="img-fluid" alt="Macy's China digital assets management">
              <p>Macy's China digital assets management</p>
              <div class="portfolio-info">
                <h4><a href="">Macy's</a></h4>
                <p>AEM Assets</p>
                <div>
                  <a href="/en/cases.html#macys" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>

          <div class="col-lg-4 col-md-6 portfolio-item filter-forms" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/dahsing-1.jpg" class="img-fluid" alt="Dah Sing Bank forms">
              <p>Dah Sing Bank forms</p>
              <div class="portfolio-info">
                <h4><a href="">Dah Sing Bank forms</a></h4>
                <p>AEM Forms</p>
                <div>
                  <a href="/en/cases.html#dahsing" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/nissan-1.jpg" class="img-fluid" alt="Nissan MOTOR Dealer Portal">
              <p>Nissan MOTOR Dealer Portal</p>
              <div class="portfolio-info">
                <h4><a href="">Nissan Dealer Portal</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#nissan" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/bmw-1.jpg" class="img-fluid" alt="BMW China website">
              <p>BMW China website</p>
              <div class="portfolio-info">
                <h4><a href="">BMW China website</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#bmwchina" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          <div class="col-lg-4 col-md-6 portfolio-item filter-analytics" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/cpic-1.jpg" class="img-fluid" alt="Analysis of Pacific Insurance website">
              <p>Analysis of Pacific Insurance website</p>
              <div class="portfolio-info">
                <h4><a href="">Analysis of CPIC</a></h4>
                <p>Adobe Analytics</p>
                <div>
                  <a href="/en/cases.html#cpic" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>

          <div class="col-lg-4 col-md-6 portfolio-item filter-sites">
            <div class="portfolio-wrap">
              <img src="../img/cases/aia-1.jpg" class="img-fluid" alt="AIA Vitality website">
              <p>AIA Vitality website</p>
              <div class="portfolio-info">
                <h4><a href="">AIA Vitality website</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#aiains" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>

          <div class="col-lg-4 col-md-6 portfolio-item filter-forms" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/aia-form1.jpg" class="img-fluid" alt="AIA Customer Portal & AEM Forms">
              <p>AIA Customer Portal & AEM Forms</p>
              <div class="portfolio-info">
                <h4><a href="">AIA Forms</a></h4>
                <p>AEM Forms</p>
                <div>
                  <a href="/en/cases.html#aiaforms" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>

          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/ctbc-1.jpg" class="img-fluid" alt="CTBC Website">
              <p>CTBC Website</p>
              <div class="portfolio-info">
                <h4><a href="">CTBC Website</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#ctbc" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-analytics" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/CRI-1.jpg" class="img-fluid" alt="CRI China Plus website analysis">
              <p>CRI China Plus website analysis</p>
              <div class="portfolio-info">
                <h4><a href="">CRI China Plus website analysis</a></h4>
                <p>Adobe Analytics</p>
                <div>
                  <a href="/en/cases.html#criana" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-sites" data-wow-delay="0.1s">
            <div class="portfolio-wrap">
              <img src="../img/cases/oneplus-1.png" class="img-fluid" alt="OnePlus Official Site">
              <p>OnePlus Official Site</p>
              <div class="portfolio-info">
                <h4><a href="">OnePlus Official Site</a></h4>
                <p>AEM Sites</p>
                <div>
                  <a href="/en/cases.html#oneplus" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
          
          <div class="col-lg-4 col-md-6 portfolio-item filter-analytics filter-audience-manager" data-wow-delay="0.2s">
            <div class="portfolio-wrap">
              <img src="../img/cases/tvb-2.jpg" class="img-fluid" alt="MyTV Super (TVB) data analysis">
              <p>MyTV Super (TVB) data analysis</p>
              <div class="portfolio-info">
                <h4><a href="">MyTV Super data analysis</a></h4>
                <p>Adobe Analytics</p>
                <div>
                  <a href="/en/cases.html#tvb" target="blank" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
                </div>
              </div>
            </div>
          </div>
                    

        </div>

      </div>
    </section><!-- #portfolio -->




    <!--==========================
      Clients Section
    ============================-->
    <section id="clients" class="section-bg">

      <div class="container">

        <div class="section-header">
          <h3>Our Customers</h3>
          <p>We are honored to serve these customers and hope to have the opportunity to cooperate with you.</p>
        </div>

        <div class="row no-gutters clients-wrap clearfix wow fadeInUp">

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/huawei_logo.jpg" class="img-fluid" alt="HUAWEI">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/honor_logo.jpg" class="img-fluid" alt="HONOR">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/aia_logo.jpg" class="img-fluid" alt="AIA">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/amway_logo.jpg" class="img-fluid" alt="AMWAY">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/samsung_logo.jpg" class="img-fluid" alt="SAMSUNG">
            </div>
          </div>

          <!--          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/yahoo_logo.png" class="img-fluid" alt="YAHOO">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/ctbc_logo.jpg" class="img-fluid" alt="CTBC">
            </div>
          </div>-->

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/cpic.png" class="img-fluid" alt="CPIC">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/dahsing_logo.png" class="img-fluid" alt="DAHSING">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/chinaplus_logo.png" class="img-fluid" alt="CHINA PLUS">
            </div>
          </div>

          <!--<div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/bmw_logo.png" class="img-fluid" alt="BMW">
            </div>
          </div>-->

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/macys_logo.jpg" class="img-fluid" alt="MACY'S">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/nissan_logo.png" class="img-fluid" alt="NISSAN">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/oneplus_logo.png" class="img-fluid" alt="Oneplus">
            </div>
          </div>

          <!--          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/tvb_logo.jpg" class="img-fluid" alt="TVB">
            </div>
          </div>-->

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/sas_logo.png" class="img-fluid" alt="SAS">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/bmw_logo.jpg" class="img-fluid" alt="BMW">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/hktb_logo.png" class="img-fluid" alt="HKTB">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/livi_logo.png" class="img-fluid" alt="livi">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/st_logo.png" class="img-fluid" alt="st">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/hikvision_logo.png" class="img-fluid" alt="st">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/prada_logo.png" class="img-fluid" alt="st">
            </div>
          </div>

          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/pccw_logo.png" class="img-fluid" alt="st">
            </div>
          </div>
          <div class="col-lg-3 col-md-4 col-xs-6">
            <div class="client-logo">
              <img src="../img/clients/oppo_logo.png" class="img-fluid" alt="st">
            </div>
          </div>
        </div>
      </div>

    </section>



  </main>

  <!--==========================
    Footer
  ============================-->
  <footer id="footer">
    <%- include('footer'); -%>
  </footer><!-- #footer -->

  <a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
  <!-- Uncomment below i you want to use a preloader -->
  <!-- <div id="preloader"></div> -->

  <%- include('footlib'); -%>

    <div id="panel" style="display: none">

    </div>

</body>

</html>