-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-3.html
More file actions
1144 lines (1020 loc) · 45.1 KB
/
index-3.html
File metadata and controls
1144 lines (1020 loc) · 45.1 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
<!DOCTYPE html>
<html>
<!-- Mirrored from themerange.net/html/merix/merix/index-3.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 04 Feb 2021 13:14:28 GMT -->
<head>
<meta charset="utf-8">
<title>Merix Creative Digital Agency HTML-5 Template | Homepage 03</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Color Switcher Mockup -->
<link href="css/color-switcher-design.css" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="icon" href="images/favicon.png" type="image/x-icon">
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
</head>
<body class="hidden-bar-wrapper">
<div class="page-wrapper">
<!-- Preloader -->
<div class="preloader">
<div class="box"></div>
</div>
<!-- Main Header / Header Style Three -->
<header class="main-header header-style-three">
<!-- Header Upper -->
<div class="header-upper">
<div class="auto-container clearfix">
<div class="pull-left logo-box">
<div class="logo"><a href="index.html"><img src="images/logo-4.png" alt="" title=""></a></div>
</div>
<div class="nav-outer clearfix">
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler"><span class="icon flaticon-menu"></span></div>
<!-- Main Menu -->
<nav class="main-menu navbar-expand-md">
<div class="navbar-header">
<!-- Toggle Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse clearfix" id="navbarSupportedContent">
<ul class="navigation clearfix">
<li class="current dropdown"><a href="#">Home</a>
<ul>
<li><a href="index.html">Homepage One</a></li>
<li><a href="index-2.html">Homepage Two</a></li>
<li><a href="index-3.html">Homepage Three</a></li>
<li><a href="index-4.html">Homepage Four</a></li>
<li><a href="index-5.html">Homepage Five</a></li>
<li><a href="index-6.html">Homepage Six</a></li>
<li class="dropdown"><a href="#">Header Styles</a>
<ul>
<li><a href="index.html">Header Style One</a></li>
<li><a href="index-2.html">Header Style Two</a></li>
<li><a href="index-3.html">Header Style Three</a></li>
<li><a href="index-4.html">Header Style Four</a></li>
<li><a href="index-5.html">Header Style Five</a></li>
<li><a href="index-6.html">Header Style Six</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown"><a href="#">About</a>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="price.html">Price</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="team-detail.html">Team Detail</a></li>
<li><a href="testimonial.html">Testimonial</a></li>
<li><a href="comming-soon.html">Comming Soon</a></li>
<li><a href="terms.html">Terms & Condition</a></li>
<li><a href="privacy.html">Privacy & Policy</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Services</a>
<ul>
<li><a href="services.html">Services</a></li>
<li><a href="content-marketing.html">Content Marketing</a></li>
<li><a href="social-marketing.html">Social Marketing</a></li>
<li><a href="app-development.html">App Development</a></li>
<li><a href="seo.html">SEO Optimization</a></li>
<li><a href="web-development.html">Web Development</a></li>
<li><a href="advertising.html">PPC Advertising</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Projects</a>
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="projects-left-sidebar.html">Projects Left Sidebar</a></li>
<li><a href="projects-right-sidebar.html">Projects Right Sidebar</a></li>
<li><a href="projects-detail.html">Projects Detail</a></li>
</ul>
</li>
<li class="dropdown has-mega-menu"><a href="#">Pages</a>
<div class="mega-menu">
<div class="mega-menu-bar row clearfix">
<div class="column col-lg-3 col-md-4 col-sm-12">
<h3>About Us</h3>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="price.html">Price</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="team-detail.html">Team Detail</a></li>
<li><a href="testimonial.html">Testimonial</a></li>
<li><a href="comming-soon.html">Comming Soon</a></li>
<li><a href="terms.html">Terms & Condition</a></li>
<li><a href="privacy.html">Privacy & Policy</a></li>
</ul>
</div>
<div class="column col-lg-3 col-md-4 col-sm-12">
<h3>Services</h3>
<ul>
<li><a href="content-marketing.html">Content Marketing</a></li>
<li><a href="social-marketing.html">Social Marketing</a></li>
<li><a href="app-development.html">App Development</a></li>
<li><a href="seo.html">SEO Optimization</a></li>
<li><a href="web-development.html">Web Development</a></li>
<li><a href="advertising.html">PPC Advertising</a></li>
</ul>
</div>
<div class="column col-lg-3 col-md-4 col-sm-12">
<h3>Blog</h3>
<ul>
<li><a href="blog.html">Our Blog</a></li>
<li><a href="blog-classic.html">Blog Classic</a></li>
<li><a href="blog-left-sidebar.html">Blog Left Sidebar</a></li>
<li><a href="news-detail.html">Blog Single</a></li>
<li><a href="not-found.html">Not Found</a></li>
</ul>
</div>
<div class="column col-lg-3 col-md-4 col-sm-12">
<h3>Our Shop</h3>
<ul>
<li><a href="shop.html">Shop</a></li>
<li><a href="shop-single.html">Shop Details</a></li>
<li><a href="shoping-cart.html">Cart Page</a></li>
<li><a href="checkout.html">Checkout Page</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="dropdown"><a href="#">Shop</a>
<ul>
<li><a href="shop.html">Our Products</a></li>
<li><a href="shop-single.html">Product Single</a></li>
<li><a href="shopping-cart.html">Shopping Cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="account.html">Account</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Blog</a>
<ul>
<li><a href="blog.html">Our Blog</a></li>
<li><a href="blog-classic.html">Blog Classic</a></li>
<li><a href="blog-left-sidebar.html">Blog Left Sidebar</a></li>
<li><a href="news-detail.html">Blog Single</a></li>
<li><a href="not-found.html">Not Found</a></li>
</ul>
</li>
<li><a href="contact.html">Contact us</a></li>
</ul>
</div>
</nav>
<!-- Main Menu End-->
<div class="outer-box clearfix">
<!-- Search Btn -->
<div class="search-box-btn search-box-outer"><span class="icon fa fa-search"></span></div>
<!-- Quote Btn -->
<div class="btn-box">
<a href="contact.html" class="theme-btn btn-style-one"><span class="txt">Get A Quote</span></a>
</div>
</div>
</div>
</div>
</div>
<!--End Header Upper-->
<!-- Sticky Header -->
<div class="sticky-header">
<div class="auto-container clearfix">
<!--Logo-->
<div class="logo pull-left">
<a href="index.html" title=""><img src="images/logo-small.png" alt="" title=""></a>
</div>
<!--Right Col-->
<div class="pull-right">
<!-- Main Menu -->
<nav class="main-menu">
<!--Keep This Empty / Menu will come through Javascript-->
</nav><!-- Main Menu End-->
<!-- Main Menu End-->
<div class="outer-box clearfix">
<!-- Cart Box -->
<div class="cart-box">
<div class="dropdown">
<button class="cart-box-btn dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="flaticon-cart"></span><span class="total-cart">2</span></button>
<div class="dropdown-menu pull-right cart-panel" aria-labelledby="dropdownMenu1">
<div class="cart-product">
<div class="inner">
<div class="cross-icon"><span class="icon fa fa-remove"></span></div>
<div class="image"><img src="images/resource/post-thumb-1.jpg" alt="" /></div>
<h3><a href="shop-single.html">Product 01</a></h3>
<div class="quantity-text">Quantity 1</div>
<div class="price">$99.00</div>
</div>
</div>
<div class="cart-product">
<div class="inner">
<div class="cross-icon"><span class="icon fa fa-remove"></span></div>
<div class="image"><img src="images/resource/post-thumb-2.jpg" alt="" /></div>
<h3><a href="shop-single.html">Product 02</a></h3>
<div class="quantity-text">Quantity 1</div>
<div class="price">$99.00</div>
</div>
</div>
<div class="cart-total">Sub Total: <span>$198</span></div>
<ul class="btns-boxed">
<li><a href="shoping-cart.html">View Cart</a></li>
<li><a href="checkout.html">CheckOut</a></li>
</ul>
</div>
</div>
</div>
<!-- Search Btn -->
<div class="search-box-btn search-box-outer"><span class="icon fa fa-search"></span></div>
<!-- Quote Btn -->
<div class="btn-box">
<a href="contact.html" class="theme-btn btn-style-two"><span class="txt">Get A Quote</span></a>
</div>
<!-- Nav Btn -->
<div class="nav-btn navSidebar-button"><span class="icon flaticon-menu"></span></div>
</div>
</div>
</div>
</div><!-- End Sticky Menu -->
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="menu-backdrop"></div>
<div class="close-btn"><span class="icon flaticon-multiply"></span></div>
<nav class="menu-box">
<div class="nav-logo"><a href="index.html"><img src="images/logo-3.png" alt="" title=""></a></div>
<div class="menu-outer"><!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header--></div>
</nav>
</div><!-- End Mobile Menu -->
</header>
<!-- End Main Header -->
<!-- Sidebar Cart Item -->
<div class="xs-sidebar-group info-group">
<div class="xs-overlay xs-bg-black"></div>
<div class="xs-sidebar-widget">
<div class="sidebar-widget-container">
<div class="widget-heading">
<a href="#" class="close-side-widget">
X
</a>
</div>
<div class="sidebar-textwidget">
<!-- Sidebar Info Content -->
<div class="sidebar-info-contents">
<div class="content-inner">
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="" /></a>
</div>
<div class="content-box">
<h2>About Us</h2>
<p class="text">Over the years, we have worked with Fortune 500s and brand-new startups. We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers, and growing overall sales. Give us a call.</p>
<a href="contact.html" class="theme-btn btn-style-two"><span class="txt">Contact Now</span></a>
</div>
<div class="contact-info">
<h2>Contact Info</h2>
<ul class="list-style-one">
<li><span class="icon fa fa-location-arrow"></span>New York 24, Melborne City, USA</li>
<li><span class="icon fa fa-phone"></span><a href="tel:+000-000-000-0000">(000) 000-000-0000</a></li>
<li><span class="icon fa fa-envelope"></span><a href="mailto:Merix@gmail.com">Merix@gmail.com</a></li>
<li><span class="icon fa fa-clock-o"></span>Week Days: 09.00 to 18.00 Sunday: Closed</li>
</ul>
</div>
<!-- Social Box -->
<ul class="social-box">
<li class="facebook"><a href="#" class="fa fa-facebook-f"></a></li>
<li class="twitter"><a href="#" class="fa fa-twitter"></a></li>
<li class="linkedin"><a href="#" class="fa fa-linkedin"></a></li>
<li class="instagram"><a href="#" class="fa fa-instagram"></a></li>
<li class="youtube"><a href="#" class="fa fa-youtube"></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END sidebar widget item -->
<!-- Banner Section Six -->
<section class="banner-section-six">
<div class="patern-layer-one" style="background-image: url(images/background/2.png)"></div>
<div class="patern-layer-two" style="background-image: url(images/background/pattern-1.png)"></div>
<div class="auto-container">
<div class="row clearfix">
<!-- Content Column -->
<div class="content-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="title">Digital Marketing</div>
<h1>Your Business Find Better Solutions.</h1>
<div class="text">Getting online is easy. Succeeding online is a different <br> story. You’ll need more than just a beautiful.</div>
<div class="btn-box">
<a href="services-detail.html" class="theme-btn btn-style-three"><span class="txt">Read More</span></a>
<a href="services.html" class="theme-btn btn-style-five"><span class="txt">Our Services</span></a>
</div>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image wow fadeInRight" data-wow-delay="0ms" data-wow-duration="1500ms">
<img src="images/resource/banner-2.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Banner Section Six -->
<!-- Mission Section -->
<section class="mission-section">
<div class="auto-container">
<div class="row clearfix">
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<img src="images/resource/mission.png" alt="" />
</div>
</div>
</div>
<!-- Content Column -->
<div class="content-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<!-- Sec Title -->
<div class="sec-title">
<div class="title">WHO WE ARE</div>
<h2>To Change Your View For <br> SEO Our Mission</h2>
</div>
<div class="bold-text">Merix is a brand of digital agency. Competen novate synergstic vortas through forward strategic theme areas Compelling extend super was that Proactive myocardinate vertical strategic</div>
<ul class="mission-list">
<li><span class="icon"><img src="images/icons/mission-1.png" alt="" /></span>If Google can’t crawl your site, it’s not going to rank – but that doesn’t mean avoiding Javascript.</li>
<li><span class="icon"><img src="images/icons/mission-2.png" alt="" /></span>For businesses which sell products online & and improve their product listings in the search results..</li>
<li><span class="icon"><img src="images/icons/mission-3.png" alt="" /></span>If you’re investing in a new website it’s important to ensure it’s built to succeed in the search results too.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section Three -->
<!-- Services Section Five -->
<section class="services-section-five">
<div class="auto-container">
<!-- Sec Title -->
<div class="sec-title centered">
<div class="title">Our Services</div>
<h2>Create Awesome Service With Our Tools</h2>
<div class="text">Our strategy includes consistently evolving, to ensure we’re producing <br> exceptional SEO for business.</div>
</div>
<div class="services-carousel owl-carousel owl-theme">
<!-- Service Block Five -->
<div class="service-block-five">
<div class="inner-box">
<div class="side-layer-one"></div>
<div class="side-layer-two"></div>
<div class="icon-box">
<div class="border-layer"></div>
<div class="dott-layer"></div>
<span class="icon"><img src="images/icons/service-1.png" alt="" /></span>
</div>
<h5><a href="content-marketing.html">Consumer Analytics</a></h5>
<div class="text">Lorem ipsum dolor sit ametaut odiut perspiciatis unde omnis iste quuntur alquam quaerat rsit amet</div>
<a href="content-marketing.html" class="learn-more">Learn More</a>
</div>
</div>
<!-- Service Block Five -->
<div class="service-block-five">
<div class="inner-box">
<div class="side-layer-one"></div>
<div class="side-layer-two"></div>
<div class="icon-box">
<div class="border-layer"></div>
<div class="dott-layer"></div>
<span class="icon"><img src="images/icons/service-2.png" alt="" /></span>
</div>
<h5><a href="content-marketing.html">Marketing Analytics</a></h5>
<div class="text">Lorem ipsum dolor sit ametaut odiut perspiciatis unde omnis iste quuntur alquam quaerat rsit amet</div>
<a href="content-marketing.html" class="learn-more">Learn More</a>
</div>
</div>
<!-- Service Block Five -->
<div class="service-block-five">
<div class="inner-box">
<div class="side-layer-one"></div>
<div class="side-layer-two"></div>
<div class="icon-box">
<div class="border-layer"></div>
<div class="dott-layer"></div>
<span class="icon"><img src="images/icons/service-3.png" alt="" /></span>
</div>
<h5><a href="content-marketing.html">Sales Analytics</a></h5>
<div class="text">Lorem ipsum dolor sit ametaut odiut perspiciatis unde omnis iste quuntur alquam quaerat rsit amet</div>
<a href="content-marketing.html" class="learn-more">Learn More</a>
</div>
</div>
<!-- Service Block Five -->
<div class="service-block-five">
<div class="inner-box">
<div class="side-layer-one"></div>
<div class="side-layer-two"></div>
<div class="icon-box">
<div class="border-layer"></div>
<div class="dott-layer"></div>
<span class="icon"><img src="images/icons/service-1.png" alt="" /></span>
</div>
<h5><a href="content-marketing.html">Consumer Analytics</a></h5>
<div class="text">Lorem ipsum dolor sit ametaut odiut perspiciatis unde omnis iste quuntur alquam quaerat rsit amet</div>
<a href="content-marketing.html" class="learn-more">Learn More</a>
</div>
</div>
<!-- Service Block Five -->
<div class="service-block-five">
<div class="inner-box">
<div class="side-layer-one"></div>
<div class="side-layer-two"></div>
<div class="icon-box">
<div class="border-layer"></div>
<div class="dott-layer"></div>
<span class="icon"><img src="images/icons/service-2.png" alt="" /></span>
</div>
<h5><a href="content-marketing.html">Marketing Analytics</a></h5>
<div class="text">Lorem ipsum dolor sit ametaut odiut perspiciatis unde omnis iste quuntur alquam quaerat rsit amet</div>
<a href="content-marketing.html" class="learn-more">Learn More</a>
</div>
</div>
<!-- Service Block Five -->
<div class="service-block-five">
<div class="inner-box">
<div class="side-layer-one"></div>
<div class="side-layer-two"></div>
<div class="icon-box">
<div class="border-layer"></div>
<div class="dott-layer"></div>
<span class="icon"><img src="images/icons/service-3.png" alt="" /></span>
</div>
<h5><a href="content-marketing.html">Sales Analytics</a></h5>
<div class="text">Lorem ipsum dolor sit ametaut odiut perspiciatis unde omnis iste quuntur alquam quaerat rsit amet</div>
<a href="content-marketing.html" class="learn-more">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section Four -->
<!-- Analysis Section -->
<section class="analysis-section">
<div class="pattern-layer" style="background-image: url(images/background/analysic-bg.png)"></div>
<div class="auto-container">
<div class="row clearfix">
<!-- Title Column -->
<div class="title-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<div class="title">Market Analysis</div>
<h2>Data Analysis and <br> Statistics for consulting</h2>
</div>
<div class="text">Over the years, we have worked with Fortune 500s and brand-new startups. We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers, and growing overall sales. Give us a call.</div>
<a href="about.html" class="theme-btn btn-style-five"><span class="txt">Lets Start</span></a>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image titlt" data-tilt data-tilt-max="3">
<img src="images/resource/analysic.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Analysis Section -->
<!-- Counter Section Three -->
<section class="counter-section-three">
<div class="auto-container">
<div class="row clearfix">
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image titlt" data-tilt data-tilt-max="3">
<img src="images/resource/counter.png" alt="" />
</div>
</div>
</div>
<!-- Counter Column -->
<div class="counter-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<div class="title">Some Facts</div>
<h2>Our Trusted User to <br> See you Funfacts</h2>
</div>
<div class="text">Why I say old chap that is spiffing barney, nancy boy bleeder chimney pot Richard cheers the little rotter so I said, easy peasy buggered blower bevvy A bit of how's your father he nicked it arse over tit.</div>
<!-- Fact Counter -->
<div class="fact-counter-three">
<div class="row clearfix">
<!-- Column -->
<div class="column counter-column col-lg-6 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="content">
<div class="count-outer count-box">
<span class="count-text" data-speed="2500" data-stop="8">0</span>M+
</div>
<h4 class="counter-title">Projects Done</h4>
</div>
</div>
</div>
<!-- Column -->
<div class="column counter-column col-lg-6 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="content">
<div class="count-outer count-box alternate">
<span class="count-text" data-speed="2000" data-stop="100">0</span>K
</div>
<h4 class="counter-title">Happy Clients</h4>
</div>
</div>
</div>
<!-- Column -->
<div class="column col-lg-offset-2 counter-column col-lg-6 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="600ms" data-wow-duration="1500ms">
<div class="content">
<div class="count-outer count-box">
<span class="count-text" data-speed="4000" data-stop="1240">0</span>
</div>
<h4 class="counter-title">Ratings Customer</h4>
</div>
</div>
</div>
<!-- Column -->
<div class="column counter-column col-lg-6 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="900ms" data-wow-duration="1500ms">
<div class="content">
<div class="count-outer count-box">
<span class="count-text" data-speed="2000" data-stop="120">0</span>+
</div>
<h4 class="counter-title">Award Winner</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Counter Section Three -->
<!-- Steps Section -->
<section class="steps-section" style="background-image: url(images/background/pattern-14.png)">
<div class="auto-container">
<!-- Sec Title -->
<div class="sec-title centered">
<div class="title">HOW WE DO IT</div>
<h2>Steps to Build a Successful <br> Digital Product</h2>
</div>
<div class="row clearfix">
<!-- Step Block -->
<div class="step-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="icon-box">
<div class="number">01</div>
</div>
<h6>Advertising and Marketing</h6>
</div>
</div>
<!-- Step Block -->
<div class="step-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="icon-box">
<div class="number">02</div>
</div>
<h6>Web <br> Development</h6>
</div>
</div>
<!-- Step Block -->
<div class="step-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="icon-box">
<div class="number">03</div>
</div>
<h6>Mobile App <br> Development</h6>
</div>
</div>
<!-- Step Block -->
<div class="step-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="icon-box">
<div class="number">04</div>
</div>
<h6>Search Engine Optimization</h6>
</div>
</div>
</div>
</div>
</section>
<!-- End Steps Section -->
<!-- Skill Section -->
<section class="skill-section">
<div class="auto-container">
<div class="row clearfix">
<!-- Counter Column -->
<div class="counter-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<div class="title">Why Choose Us</div>
<h2>We dedicate for Company <br> with SEO work</h2>
</div>
<div class="text">From keyword research to technical auditing to site migration, our team of technical SEOs are true experts in their field.</div>
<!-- Skills -->
<div class="skills">
<!-- Skill Item -->
<div class="skill-item">
<div class="skill-header clearfix">
<div class="skill-title">Keyword Research</div>
<div class="skill-percentage"><div class="count-box"><span class="count-text" data-speed="2000" data-stop="70">0</span>%</div></div>
</div>
<div class="skill-bar">
<div class="bar-inner"><div class="bar progress-line" data-width="70"></div></div>
</div>
</div>
<!-- Skill Item -->
<div class="skill-item">
<div class="skill-header clearfix">
<div class="skill-title">Technical SEO Audit</div>
<div class="skill-percentage"><div class="count-box"><span class="count-text" data-speed="2000" data-stop="80">0</span>%</div></div>
</div>
<div class="skill-bar">
<div class="bar-inner"><div class="bar progress-line" data-width="80"></div></div>
</div>
</div>
<!-- Skill Item -->
<div class="skill-item">
<div class="skill-header clearfix">
<div class="skill-title">Content Optimization</div>
<div class="skill-percentage"><div class="count-box"><span class="count-text" data-speed="2000" data-stop="60">0</span>%</div></div>
</div>
<div class="skill-bar">
<div class="bar-inner"><div class="bar progress-line" data-width="60"></div></div>
</div>
</div>
</div>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image titlt" data-tilt data-tilt-max="3">
<img src="images/resource/skill.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Skill Section -->
<!-- Demo Section -->
<section class="demo-section" style="background-image: url(images/background/pattern-15.png)">
<div class="auto-container">
<div class="row clearfix">
<!-- Counter Column -->
<div class="counter-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<h2>Watch a Video Demo</h2>
<div class="text">Retarget past customers with second-chance offers and reach new audiences with geo-targeted campaigns during peak dining times using Forks’ push notifications.</div>
<a href="https://www.youtube.com/watch?v=kxPCFljwJws" class="lightbox-image theme-btn btn-style-three"><span class="txt">Play Video Now</span></a>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image titlt" data-tilt data-tilt-max="3">
<img src="images/resource/video-bg.png" alt="" />
<a href="https://www.youtube.com/watch?v=kxPCFljwJws" class="lightbox-image video-box"><span class="fa fa-play"><i class="ripple"></i></span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Demo Section -->
<!-- Testimonial Section Three -->
<section class="testimonial-section-three">
<div class="auto-container">
<!-- Sec Title -->
<div class="sec-title centered">
<div class="title">Real Testimonials</div>
<h2>What They Say About Our <br> Company?</h2>
</div>
<div class="testimonial-carousel owl-carousel owl-theme">
<!-- Testimonial Block Three -->
<div class="testimonial-block-three">
<div class="inner-box">
<div class="author-image-outer">
<div class="author-image">
<img src="images/resource/author-5.jpg" alt="" />
</div>
<h6>TeamSnap</h6>
<div class="designation">Amy, VP Experience</div>
</div>
<div class="text">“We don't take ourselves too seriously, but seriously enough to ensure we're creating the best product and experience for our customers. I feel like Help Scout does the same.”</div>
<div class="rating">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
<!-- Testimonial Block Three -->
<div class="testimonial-block-three">
<div class="inner-box">
<div class="author-image-outer">
<div class="author-image">
<img src="images/resource/author-6.jpg" alt="" />
</div>
<h6>Steven smith</h6>
<div class="designation">Programmer Doritibe</div>
</div>
<div class="text">“We don't take ourselves too seriously, but seriously enough to ensure we're creating the best product and experience for our customers. I feel like Help Scout does the same.”</div>
<div class="rating">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
<!-- Testimonial Block Three -->
<div class="testimonial-block-three">
<div class="inner-box">
<div class="author-image-outer">
<div class="author-image">
<img src="images/resource/author-5.jpg" alt="" />
</div>
<h6>TeamSnap</h6>
<div class="designation">Amy, VP Experience</div>
</div>
<div class="text">“We don't take ourselves too seriously, but seriously enough to ensure we're creating the best product and experience for our customers. I feel like Help Scout does the same.”</div>
<div class="rating">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
<!-- Testimonial Block Three -->
<div class="testimonial-block-three">
<div class="inner-box">
<div class="author-image-outer">
<div class="author-image">
<img src="images/resource/author-6.jpg" alt="" />
</div>
<h6>Steven smith</h6>
<div class="designation">Programmer Doritibe</div>
</div>
<div class="text">“We don't take ourselves too seriously, but seriously enough to ensure we're creating the best product and experience for our customers. I feel like Help Scout does the same.”</div>
<div class="rating">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
<!-- Testimonial Block Three -->
<div class="testimonial-block-three">
<div class="inner-box">
<div class="author-image-outer">
<div class="author-image">
<img src="images/resource/author-5.jpg" alt="" />
</div>
<h6>TeamSnap</h6>
<div class="designation">Amy, VP Experience</div>
</div>
<div class="text">“We don't take ourselves too seriously, but seriously enough to ensure we're creating the best product and experience for our customers. I feel like Help Scout does the same.”</div>
<div class="rating">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
<!-- Testimonial Block Three -->
<div class="testimonial-block-three">
<div class="inner-box">
<div class="author-image-outer">
<div class="author-image">
<img src="images/resource/author-6.jpg" alt="" />
</div>
<h6>Steven smith</h6>
<div class="designation">Programmer Doritibe</div>
</div>
<div class="text">“We don't take ourselves too seriously, but seriously enough to ensure we're creating the best product and experience for our customers. I feel like Help Scout does the same.”</div>
<div class="rating">
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Testimonial Section Three -->
<!-- Newsleter Section -->
<section class="newsletter-section">
<div class="auto-container">
<div class="row clearfix">
<!-- Form Column -->
<div class="form-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<div class="title">Newsletter</div>
<h2>Subscribe Our Newsletter</h2>
</div>
<div class="text">Lorem ipsum dolor sit amet consectetur adipiscing elit donec tempus pellentesque dui vel tristique purus justo </div>
<div class="newsletter-form">
<form method="post" action="http://themerange.net/html/merix/merix/contact.html">
<div class="form-group">
<input type="email" name="email" value="" placeholder="Enter Your Email" required="">
<button type="submit" class="theme-btn btn-style-three"><span class="txt">Subscribe Now</span></button>
</div>
</form>
</div>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image titlt" data-tilt data-tilt-max="3">
<img src="images/resource/newsletter.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Newsleter Section -->
<!-- Main Footer -->
<footer class="main-footer style-two">
<div class="pattern-layer" style="background-image: url(images/background/pattern-3.png)"></div>
<div class="pattern-layer-two" style="background-image: url(images/background/pattern-4.png)"></div>
<div class="pattern-layer-three" style="background-image: url(images/background/pattern-5.png)"></div>
<div class="auto-container">
<!--Widgets Section-->
<div class="widgets-section">
<div class="row clearfix">
<!-- Column -->
<div class="big-column col-lg-6 col-md-12 col-sm-12">
<div class="row clearfix">
<!-- Footer Column -->
<div class="footer-column col-lg-7 col-md-6 col-sm-12">
<div class="footer-widget logo-widget">
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="" /></a>
</div>
<div class="text">Our approach to SEO is uniquely built around what we know works…and what we know doesn’t work. With over 200 verified factors in play.</div>
<!-- Social Box -->
<ul class="social-box">
<li><a href="#" class="fa fa-facebook-f"></a></li>
<li><a href="#" class="fa fa-linkedin"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>