forked from aayushi1499/ccet-acm-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
988 lines (865 loc) · 38.3 KB
/
about.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Meto HTML-5 Template | About Us</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" 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">
<!-- Main Header-->
<header class="main-header header-style-two">
<!-- Header Top -->
<div class="header-top">
<div class="auto-container">
<div class="clearfix">
<!-- Top Left -->
<div class="top-left pull-left">
<!-- Page Nav -->
<ul class="page-nav">
<li><a href="#">About Us</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<!-- Top Right -->
<div class="top-right pull-right">
<!-- Info List -->
<ul class="info-list">
<li><span class="icon flaticon-maps-and-flags"></span> 576d University St, Seattle, UK</li>
<li><span class="icon flaticon-email-4"></span> <a href="mailto:[email protected]"> UK [email protected]</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--Header-Upper-->
<div class="header-upper">
<div class="auto-container">
<div class="inner-container clearfix">
<div class="pull-left logo-box">
<div class="logo"><a href="index.html"><img src="images/logo-2.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="dropdown"><a href="#">Home</a>
<ul>
<li><a href="index.html">Home Page 01</a></li>
<li><a href="index-2.html">Home Page 02</a></li>
<li><a href="index-3.html">Home Page 03</a></li>
<li class="dropdown"><a href="#">Header Styles</a>
<ul>
<li><a href="index.html">Header Style 01</a></li>
<li><a href="index-2.html">Header Style 02</a></li>
<li><a href="index-3.html">Header Style 03</a></li>
</ul>
</li>
</ul>
</li>
<li class="current 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="testimonial.html">Testimonial</a></li>
<li><a href="comming-soon.html">Comming Soon</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Services</a>
<ul>
<li><a href="services.html">Services</a></li>
<li><a href="services-detail.html">Services Detail</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Projects</a>
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="projects-detail.html">Projects Detail</a></li>
</ul>
</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-single.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">
<!-- Cart Box -->
<div class="cart-box">
<div class="dropdown">
<button class="cart-box-btn dropdown-toggle" type="button" id="dropdownMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="flaticon-shopping-bag-1"></span><span class="total-cart">2</span></button>
<div class="dropdown-menu pull-right cart-panel" aria-labelledby="dropdownMenu3">
<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">Flying Ninja</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">Patient Ninja</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="quote-btn theme-btn">Get A Quote</a>
</div>
<!-- Nav Btn -->
<div class="nav-btn navSidebar-button"><span class="icon flaticon-menu"></span></div>
</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="dropdownMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="flaticon-shopping-bag-1"></span><span class="total-cart">2</span></button>
<div class="dropdown-menu pull-right cart-panel" aria-labelledby="dropdownMenu3">
<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">Flying Ninja</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">Patient Ninja</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>
<!-- Nav Btn -->
<div class="mobile-nav-toggler"><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-2.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">The argument in favor of using filler text goes something like this: If you use real content in the Consulting Process, anytime you reach a review point you’ll end up reviewing and negotiating the content itself and not the design.</p>
<a href="#" class="theme-btn btn-style-two"><span class="txt">Consultation</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>Chicago 12, Melborne City, USA</li>
<li><span class="icon fa fa-phone"></span>(111) 111-111-1111</li>
<li><span class="icon fa fa-envelope"></span>[email protected]</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 -->
<!--Page Title-->
<section class="page-title">
<div class="pattern-layer-one" style="background-image: url(images/background/pattern-14.png)"></div>
<div class="pattern-layer-two" style="background-image: url(images/background/pattern-15.png)"></div>
<div class="auto-container">
<h2>About us</h2>
<ul class="page-breadcrumb">
<li><a href="index.html">home</a></li>
<li>About us</li>
</ul>
</div>
</section>
<!--End Page Title-->
<!-- About Section -->
<section class="about-section style-two">
<div class="bg-pattern-layer" style="background-image: url(images/background/pattern-16.png)"></div>
<!-- Pattern One -->
<div class="left-patterm paroller" data-paroller-factor="0.20" data-paroller-factor-lg="0.20" data-paroller-type="foreground" data-paroller-direction="vertical" style="background-image:url(images/icons/about.png)"></div>
<div class="auto-container">
<div class="row clearfix">
<!-- Content Column -->
<div class="content-column col-lg-5 col-md-12 col-sm-12">
<div class="inner-column">
<!-- Sec Title -->
<div class="sec-title">
<div class="title">ABOUT US</div>
<h2>Grow Business with SEO</h2>
</div>
<div class="bold-text">Over 12 years Meto helping companies reach <br> their financial and branding goals.</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-three"><span class="txt">Learn More</span></a>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-7 col-md-12 col-sm-12">
<div class="inner-column parallax-scene-1">
<div data-depth="0.30" class="image">
<img src="images/resource/about.png" alt ="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- Services Section -->
<section class="services-section style-two">
<div class="auto-container">
<div class="row clearfix">
<!-- Service Block -->
<div class="service-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="inner-content">
<div class="icon-box">
<span class="icon flaticon-rocket"></span>
</div>
<h5>Greate Results</h5>
<div class="text">We have seen great successes <br> with everyone companies.</div>
<span class="side-icon flaticon-rocket"></span>
</div>
<!-- Overlay Box -->
<div class="overlay-box">
<div class="overlay-inner">
<div class="content">
<div class="left-top-icon flaticon-rocket"></div>
<div class="overlay-icon flaticon-rocket"></div>
<h5><a href="service-detail.html">Greate Results</a></h5>
<div class="text">We have seen great successes <br> with everyone companies.</div>
<a href="service-detail.html" class="arrow"><span class="icon flaticon-right-arrow-2"></span></a>
</div>
</div>
</div>
</div>
</div>
<!-- Service Block -->
<div class="service-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="150ms" data-wow-duration="1500ms">
<div class="inner-content">
<div class="icon-box">
<span class="icon flaticon-world"></span>
</div>
<h5>Business Worth</h5>
<div class="text">Every business and industry requires an approach.</div>
<span class="side-icon flaticon-world"></span>
</div>
<!-- Overlay Box -->
<div class="overlay-box">
<div class="overlay-inner">
<div class="content">
<div class="left-top-icon flaticon-world"></div>
<div class="overlay-icon flaticon-world"></div>
<h5><a href="service-detail.html">Business Worth</a></h5>
<div class="text">Every business and industry <br> requires an approach.</div>
<a href="service-detail.html" class="arrow"><span class="icon flaticon-right-arrow-2"></span></a>
</div>
</div>
</div>
</div>
</div>
<!-- Service Block -->
<div class="service-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-content">
<div class="icon-box">
<span class="icon flaticon-connect"></span>
</div>
<h5>Keep Your Groth</h5>
<div class="text">You make sure you know how <br> campaign is performing.</div>
<span class="side-icon flaticon-connect"></span>
</div>
<!-- Overlay Box -->
<div class="overlay-box">
<div class="overlay-inner">
<div class="content">
<div class="left-top-icon flaticon-connect"></div>
<div class="overlay-icon flaticon-connect"></div>
<h5><a href="service-detail.html">Keep Your Groth</a></h5>
<div class="text">You make sure you know how <br> campaign is performing.</div>
<a href="service-detail.html" class="arrow"><span class="icon flaticon-right-arrow-2"></span></a>
</div>
</div>
</div>
</div>
</div>
<!-- Service Block -->
<div class="service-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="450ms" data-wow-duration="1500ms">
<div class="inner-content">
<div class="icon-box">
<span class="icon flaticon-report"></span>
</div>
<h5>Important ROI</h5>
<div class="text">To generate highly focused leads <br> ready to purchases.</div>
<span class="side-icon flaticon-report"></span>
</div>
<!-- Overlay Box -->
<div class="overlay-box">
<div class="overlay-inner">
<div class="content">
<div class="left-top-icon flaticon-report"></div>
<div class="overlay-icon flaticon-report"></div>
<h5><a href="service-detail.html">Important ROI</a></h5>
<div class="text">To generate highly focused leads <br> ready to purchases.</div>
<a href="service-detail.html" class="arrow"><span class="icon flaticon-right-arrow-2"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- SEO Section Three -->
<section class="seo-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 parallax-scene-2">
<div class="image" data-depth="0.30">
<img src="images/resource/seo-1.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>Our Mission is to change <br> Your View for SEO</h2>
<div class="text">Smratseo 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>
</div>
<ul class="seo-list">
<li><span class="icon flaticon-check-symbol"></span>If Google can’t crawl your site, it’s not going to rank – but that <br> doesn’t mean avoiding Javascript.</li>
<li><span class="icon flaticon-check-symbol"></span>For businesses which sell products online & and improve their <br> product listings in the search results..</li>
<li><span class="icon flaticon-check-symbol"></span>If you’re investing in a new website it’s important to ensure it’s <br> built to succeed in the search results too.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End SEO Section Three -->
<!-- Website Section -->
<section class="website-section">
<div class="map-pattern" style="background-image: url(images/background/map-pattern.png)"></div>
<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 parallax-scene-1">
<div data-depth="0.30" class="image">
<img src="images/resource/website.png" alt="" />
</div>
</div>
</div>
<!-- Content Column -->
<div class="content-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<h2>Take Your Website to Next <br> Level Right Now!</h2>
<div class="text">Make the Right Choice for Your Future. Choose Moto!</div>
<a href="about.html" class="theme-btn btn-style-one"><span class="txt">Start Now</span></a>
</div>
</div>
</div>
</div>
</section>
<!-- End Website Section -->
<!-- Counter Section Two -->
<section class="counter-section-two margin-top">
<div class="auto-container">
<div class="inner-container">
<!-- Fact Counter -->
<div class="fact-counter-two">
<div class="row clearfix">
<!-- Column -->
<div class="column counter-column col-lg-3 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="content">
<div class="icon-box">
<span class="icon"><img src="images/icons/counter-1.png" alt="" /></span>
<div class="circles-box">
<span class="circle-one"></span>
<span class="circle-two"></span>
</div>
</div>
<h4 class="counter-title">Active Clients</h4>
<div class="count-outer count-box">
<span class="count-text" data-speed="3000" data-stop="330">0</span>+
</div>
</div>
</div>
</div>
<!-- Column -->
<div class="column counter-column col-lg-3 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="content">
<div class="icon-box">
<span class="icon"><img src="images/icons/counter-2.png" alt="" /></span>
<div class="circles-box">
<span class="circle-one"></span>
<span class="circle-two"></span>
</div>
</div>
<h4 class="counter-title">Team Advisors</h4>
<div class="count-outer count-box alternate">
<span class="count-text" data-speed="5000" data-stop="85">0</span>+
</div>
</div>
</div>
</div>
<!-- Column -->
<div class="column counter-column col-lg-3 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="600ms" data-wow-duration="1500ms">
<div class="content">
<div class="icon-box">
<span class="icon"><img src="images/icons/counter-3.png" alt="" /></span>
<div class="circles-box">
<span class="circle-one"></span>
<span class="circle-two"></span>
</div>
</div>
<h4 class="counter-title">Projects Done</h4>
<div class="count-outer count-box">
<span class="count-text" data-speed="2000" data-stop="850">0</span>+
</div>
</div>
</div>
</div>
<!-- Column -->
<div class="column counter-column col-lg-3 col-md-6 col-sm-12">
<div class="inner wow fadeInLeft" data-wow-delay="900ms" data-wow-duration="1500ms">
<div class="content">
<div class="icon-box">
<span class="icon"><img src="images/icons/counter-4.png" alt="" /></span>
<div class="circles-box">
<span class="circle-one"></span>
<span class="circle-two"></span>
</div>
</div>
<h4 class="counter-title">Glorious Years</h4>
<div class="count-outer count-box">
<span class="count-text" data-speed="3500" data-stop="15">0</span>+
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Counter Section Two -->
<!-- Steps Section -->
<section class="steps-section">
<div class="left-pattern" style="background-image: url(images/background/pattern-7.png)"></div>
<div class="right-pattern" style="background-image: url(images/background/pattern-8.png)"></div>
<div class="dotted-pattern" style="background-image: url(images/background/pattern-1.png)"></div>
<div class="dotted-pattern-2" style="background-image: url(images/background/pattern-5.png)"></div>
<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="clearfix">
<!-- Step Block -->
<div class="step-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInUp" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="number-box">
<div class="number">01</div>
</div>
<h5>Advertising and <br> Marketing</h5>
</div>
</div>
<!-- Step Block -->
<div class="step-block style-two col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInDown" data-wow-delay="0ms" data-wow-duration="1500ms">
<h5>Web <br> Development</h5>
<div class="number-box">
<div class="number">02</div>
</div>
</div>
</div>
<!-- Step Block -->
<div class="step-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInUp" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="number-box">
<div class="number">03</div>
</div>
<h5>Mobile App <br> Development</h5>
</div>
</div>
<!-- Step Block -->
<div class="step-block style-two col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInDown" data-wow-delay="0ms" data-wow-duration="1500ms">
<h5>Search Engine <br> Optimization</h5>
<div class="number-box">
<div class="number">04</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Steps Section -->
<!-- Seo Section Two -->
<section class="seo-section-two">
<div class="auto-container">
<div class="inner-container">
<div class="pattern-one" style="background-image: url(images/background/pattern-9.png)"></div>
<div class="pattern-two" style="background-image: url(images/icons/cloud-1.png)"></div>
<div class="pattern-three" style="background-image: url(images/icons/cloud-2.png)"></div>
<div class="pattern-four" style="background-image: url(images/icons/cloud-3.png)"></div>
<div class="rocket-icon" style="background-image: url(images/icons/rocket.png)"></div>
<!-- Sec Title -->
<div class="sec-title light">
<div class="title">Web SEO</div>
<h2>Check Your Website For SEO</h2>
</div>
<!-- Seo Form-->
<div class="seo-form">
<form method="post" action="contact.html">
<div class="form-group clearfix">
<input type="text" name="website" value="" placeholder="Your Website URL" required>
<input type="email" name="email" value="" placeholder="Email" required>
</div>
<button type="submit" class="theme-btn btn-style-four"><span class="txt">Send Now</span></button>
</form>
</div>
</div>
</div>
</section>
<!-- End Seo Section Two -->
<!-- Faq's Section -->
<section class="faq-section style-two">
<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 parallax-scene-3">
<div class="image" data-depth="0.30">
<img src="images/resource/faq.png" alt="" />
</div>
</div>
</div>
<!-- Accordian Column -->
<div class="accordian-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<!-- Sec Title -->
<div class="sec-title">
<div class="title">Some Faq’s</div>
<h2>Work with a Dedicated <br> SEO Company</h2>
<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>
</div>
<!-- Accordian Box -->
<ul class="accordion-box">
<!--Block-->
<li class="accordion block">
<div class="acc-btn"><div class="icon-outer"><span class="icon icon-plus fa fa-plus"></span> <span class="icon icon-minus fa fa-minus"></span></div>Best Practices for Keyword Density?</div>
<div class="acc-content">
<div class="content">
<div class="text">Google has said for years that the most important single factor to them is high quality content. Now more than ever, they have the ability. We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers.</div>
</div>
</div>
</li>
<!--Block-->
<li class="accordion block active-block">
<div class="acc-btn active"><div class="icon-outer"><span class="icon icon-plus fa fa-plus"></span> <span class="icon icon-minus fa fa-minus"></span></div>Best SEO Practices for Page Layouts?</div>
<div class="acc-content current">
<div class="content">
<div class="text">Google has said for years that the most important single factor to them is high quality content. Now more than ever, they have the ability. We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers.</div>
</div>
</div>
</li>
<!--Block-->
<li class="accordion block">
<div class="acc-btn"><div class="icon-outer"><span class="icon icon-plus fa fa-plus"></span> <span class="icon icon-minus fa fa-minus"></span></div>What is off page SEO link building?</div>
<div class="acc-content">
<div class="content">
<div class="text">Google has said for years that the most important single factor to them is high quality content. Now more than ever, they have the ability. We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers.</div>
</div>
</div>
</li>
<!--Block-->
<li class="accordion block">
<div class="acc-btn"><div class="icon-outer"><span class="icon icon-plus fa fa-plus"></span> <span class="icon icon-minus fa fa-minus"></span></div>Best SEO Practices for High Quality Content?</div>
<div class="acc-content">
<div class="content">
<div class="text">Google has said for years that the most important single factor to them is high quality content. Now more than ever, they have the ability. We help ambitious businesses like yours generate more profits by building awareness, driving web traffic, connecting with customers.</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Faq's Section -->
<!-- Newsletter Section -->
<section class="newsletter-section margin-bottom">
<div class="auto-container">
<div class="inner-container">
<div class="row clearfix">
<!-- Title Column -->
<div class="title-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<span class="icon flaticon-rocket-ship"></span>
<h4>Subscribe for Newsletter</h4>
<div class="text">Grow Your Business with Our SEO Agency</div>
</div>
</div>
<!-- Form Column -->
<div class="form-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<!--Emailed Form-->
<div class="emailed-form">
<form method="post" action="contact.html">
<div class="form-group">
<input type="email" name="email" value="" placeholder="Email Address" required>
<button type="submit" class="theme-btn">Lets Start</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Newsletter Section -->
<!-- Main Footer -->
<footer class="main-footer">
<div class="pattern-layer-one" style="background-image: url(images/icons/pattern-1.png)"></div>
<!--Waves end-->
<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>
<li><a href="#" class="fa fa-google"></a></li>
</ul>
</div>
</div>
<!-- Footer Column -->
<div class="footer-column col-lg-5 col-md-6 col-sm-12">
<div class="footer-widget links-widget">
<h4>Services</h4>
<ul class="list-link">
<li><a href="">SEO for Small Business</a></li>
<li><a href="">SEO for Local Services</a></li>
<li><a href="">Enterprise SEO</a></li>
<li><a href="">National SEO</a></li>
<li><a href="">International SEO</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- 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-6 col-md-6 col-sm-12">
<div class="footer-widget gallery-widget">
<h4>instagram</h4>
<div class="widget-content">
<div class="images-outer clearfix">
<!--Image Box-->
<figure class="image-box"><a href="images/gallery/1.jpg" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="images/gallery/footer-gallery-thumb-1.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="images/gallery/2.jpg" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="images/gallery/footer-gallery-thumb-2.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="images/gallery/3.jpg" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="images/gallery/footer-gallery-thumb-3.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="images/gallery/4.jpg" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="images/gallery/footer-gallery-thumb-4.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="images/gallery/1.jpg" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="images/gallery/footer-gallery-thumb-5.jpg" alt=""></a></figure>
<!--Image Box-->
<figure class="image-box"><a href="images/gallery/2.jpg" class="lightbox-image" data-fancybox="footer-gallery" title="Image Title Here" data-fancybox-group="footer-gallery"><img src="images/gallery/footer-gallery-thumb-6.jpg" alt=""></a></figure>
</div>
</div>
</div>
</div>
<!-- Footer Column -->
<div class="footer-column col-lg-5 col-md-6 col-sm-12">
<div class="footer-widget links-widget">
<h4>Contact info</h4>
<ul class="list-style-two">
<li><span class="icon flaticon-maps-and-flags"></span>427 Schoen Circles Suite 124 Melbourne Australia</li>
<li><span class="icon flaticon-clock"></span>Mon – Sat 10:00pm - 8:00pm</li>
<li><span class="icon flaticon-call"></span>0987 654 321, 0123 456 789</li>
<li><span class="icon flaticon-email-4"></span>[email protected]</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End Main Footer -->
</div>
<!--End pagewrapper-->
<!--Scroll to top-->
<div class="scroll-to-top scroll-to-target" data-target="html"><span class="fa fa-arrow-up"></span></div>
<script src="js/jquery.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/jquery.fancybox.js"></script>
<script src="js/appear.js"></script>
<script src="js/parallax.min.js"></script>
<script src="js/tilt.jquery.min.js"></script>
<script src="js/jquery.paroller.min.js"></script>
<script src="js/owl.js"></script>
<script src="js/mixitup.js"></script>
<script src="js/wow.js"></script>
<script src="js/nav-tool.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/script.js"></script>
<script src="js/color-settings.js"></script>
</body>
</html>