-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
826 lines (811 loc) · 47.9 KB
/
about.html
File metadata and controls
826 lines (811 loc) · 47.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0, user-scalable=yes" />
<title>Netwise - IT Solutions & Technology Figma Template</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/images/fevicon.png" />
<!-- Place favicon.ico in the root directory -->
<!-- CSS here -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/fontawsome/css/fontawesome.css" />
<link rel="stylesheet" href="assets/css/odometer.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/animate.min.css" />
<link rel="stylesheet" href="assets/css/magnific-popup.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- Preloader start -->
<div id="preloader">
<div class="loading-container">
<div class="loading"></div>
<div id="loading-icon">
<img width="65" src="assets/images/logo/logo-sm.svg" alt="logo-sm">
</div>
</div>
</div>
<!-- Preloader end -->
<!-- Header section start -->
<header class="header-section" id="sticky-header">
<nav class="navbar navbar-expand-xl d-none d-xl-flex">
<div class="container navbar-main">
<a class="navbar-brand" href="index.html">
<img src="./assets/images/logo/logo.png" alt="logo" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home <i
class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./index.html">Home One</a></li>
<li><a href="./home-two.html">Home Two</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services<i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./services.html">Service Single</a></li>
<li><a href="./service-details.html">Service Details</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Projects<i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./porjects.html">Projects Single</a></li>
<li><a href="./project-details.html">Projects Details</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog<i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./blog.html">Blog Single</a></li>
<li><a href="./blog-details.html">Blog Details</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
</ul>
<a href="tel:(+1)652-3698" class="call-to-action d-flex align-items-center">
<div class="icon rounded-pill">
<i class="fa-solid fa-phone"></i>
</div>
<div class="info">
<p>Need Help?</p>
<h6>+123 652-3698</h6>
</div>
</a>
</div>
</div>
</nav>
<!-- mobile navbar part start -->
<div class="mobile-menu-area d-block d-xl-none">
<div class="container">
<!-- mobile topbar -->
<div class="mobile-topbar">
<div class="d-flex justify-content-between align-items-center">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo/logo.png" alt="logo" /></a>
</div>
<div class="bars">
<i class="fas fa-bars"></i>
</div>
</div>
</div>
</div>
<!-- mobile menu -->
<div class="mobile-menu-overlay"></div>
<div class="mobile-menu-main">
<div class="logo">
<a href="./index.html">
<img src="assets/images/logo/logo.png" alt="logo" /></a>
</div>
<div class="close-mobile-menu"><i class="fas fa-times"></i></div>
<div class="menu-body">
<div class="menu-list">
<ul class="list-unstyled">
<li class="sub-mobile-menu">
<a href="#">Home <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li><a href="index.html">Home One</a></li>
<li><a href="home-two.html">Home Two</a></li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="about.html">About Us</a>
</li>
<li class="sub-mobile-menu">
<a href="#">Services <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li>
<a href="services.html">Service Single</a>
</li>
<li>
<a href="service-details.html">Service Details</a>
</li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="#">Projects <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li>
<a href="projects.html">Project Single</a>
</li>
<li>
<a href="project-details.html">Project Details</a>
</li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="#">Blog <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li>
<a href="blog.html">Blog Single</a>
</li>
<li>
<a href="blog-details.html">Blog Details</a>
</li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
<div class="call-us p-4">
<a href="tel:(+1)652-3698" class="call-to-action d-flex align-items-center">
<div class="icon d-flex justify-content-center align-items-center rounded-pill">
<i class="fa-solid fa-phone"></i>
</div>
<div class="info">
<p class="help">Need help?</p>
<h5 class="number">(+1) 652-3698</h5>
</div>
</a>
</div>
</div>
</div>
<!-- mobile navbar part end -->
</header>
<!-- Header section end -->
<!-- Main area Start -->
<main>
<!-- Page Header Section Start-->
<section class="page-header-section">
<div class="container">
<div class="row g-4">
<div class="col-lg-4 align-self-center">
<div class="header-img">
<img src="assets/images/banner/page_header_img.png" alt="">
</div>
</div>
<div class="col-lg-8 align-self-center">
<div class="bread-crumb text-end">
<h1 class="page-header-title">About Us</h1>
<ul class="list-unstyled d-flex justify-content-end align-items-center">
<li><a href="index.html">Home</a></li>
<li>About Us</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Page Header Section End-->
<!-- About section start -->
<section class="about-section py-120">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="about-img position-relative">
<div class="img-main position-relative">
<img src="./assets/images/about/about-img-1.png" class="w-100 img-fluid rounded-20"
alt="about-img-1" />
<img src="assets/images/about/about-shape.svg" alt="about-shape"
class="about-shape position-absolute">
</div>
<div class="clients rounded-20 position-absolute d-flex align-items-center">
<div
class="box-icon secondary d-flex align-items-center justify-content-center rounded-pill">
<img src="assets/images/icon/group-person-icon2.svg" alt="group-user">
</div>
<div class="counter-info">
<div class="number">
<span class="odometer odometer-auto-theme" data-count="5000">
</span>
</div>
<p>Satisfied Clients</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="about-content">
<div class="section-title">
<h5 class="sub-title text-uppercase">about us</h5>
<h3 class="title text-capitalize">
Unlocking the Power of Technology
</h3>
</div>
<p class="pe-lg-5 mb-30">
The IT industry offers diverse career opportunities, from network administration to
software development
</p>
<div class="list-box mb-60">
<div class="row">
<div class="col-sm-6 list-wrapper">
<ul class="list-unstyled list-info">
<li><i class="fa-solid fa-circle-check"></i> Crafting Digital World</li>
<li><i class="fa-solid fa-circle-check"></i> Advancing Technology</li>
<li><i class="fa-solid fa-circle-check"></i> Technology That Power</li>
<li><i class="fa-solid fa-circle-check"></i> Digital Solution</li>
</ul>
</div>
<div class="col-sm-6 list-wrapper">
<ul class="list-unstyled list-info">
<li><i class="fa-solid fa-circle-check"></i> Innovative Minds</li>
<li><i class="fa-solid fa-circle-check"></i> Next-Level IT</li>
<li><i class="fa-solid fa-circle-check"></i> Art of Technology</li>
<li><i class="fa-solid fa-circle-check"></i> Accelerate with Cutting</li>
</ul>
</div>
</div>
</div>
<div class="text-start text-lg-center text-xl-start">
<a href="about.html"
class="theme-btn theme-btn-border position-relative d-inline-flex align-items-center">
Read More
<span class="btn-arrow">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4443_62)">
<path
d="M13.4317 12.5381C13.4967 12.4215 13.535 12.2898 13.5367 12.1506L13.5733 7.95396C13.5758 7.60896 13.2992 7.32646 12.9483 7.32312C12.6058 7.32312 12.3258 7.59896 12.3233 7.94229L12.2975 10.8665L7.48917 6.05813C7.245 5.81396 6.84917 5.81396 6.605 6.05813C6.36083 6.30229 6.36083 6.69812 6.605 6.94229L11.4158 11.7531L8.59083 11.7831C8.245 11.7873 7.96833 12.0698 7.9725 12.4148C7.97583 12.7581 8.255 13.0331 8.60417 13.0331C8.60417 13.0331 12.6783 12.989 12.685 12.989C12.9967 12.9856 13.2842 12.8023 13.4325 12.539L13.4317 12.5381Z"
fill="currentColor" class="btn-arrow-fill"></path>
<path
d="M9.99984 19.2219C9.29484 19.2219 8.59818 19.2094 7.91151 19.1853C4.06734 19.0503 0.949844 15.9328 0.81401 12.0869C0.789844 11.3994 0.777344 10.7036 0.777344 9.99859C0.777344 9.29359 0.789844 8.59776 0.81401 7.91026C0.949844 4.06609 4.06734 0.948594 7.91151 0.813594C9.28651 0.76526 10.7148 0.76526 12.0882 0.813594C15.9323 0.948594 19.0498 4.06609 19.1857 7.91193C19.2098 8.59859 19.2223 9.29526 19.2223 10.0003C19.2223 10.7053 19.2098 11.4011 19.1857 12.0886C19.0498 15.9336 15.9323 19.0511 12.0882 19.1869C11.4015 19.2111 10.7048 19.2236 9.99984 19.2236V19.2219ZM9.99984 2.02609C9.31068 2.02609 8.62818 2.03859 7.95568 2.06276C4.76401 2.17443 2.17568 4.76276 2.06318 7.95443C2.03984 8.62776 2.02734 9.30859 2.02734 9.99859C2.02734 10.6886 2.03984 11.3703 2.06318 12.0428C2.17568 15.2344 4.76401 17.8236 7.95568 17.9344C9.30151 17.9836 10.699 17.9836 12.044 17.9344C15.2365 17.8228 17.8248 15.2344 17.9365 12.0428C17.9598 11.3694 17.9723 10.6886 17.9723 9.99859C17.9723 9.30859 17.9598 8.62693 17.9365 7.95443C17.824 4.76276 15.2357 2.17359 12.044 2.06276C11.3707 2.03859 10.689 2.02609 9.99984 2.02609Z"
fill="currentColor" class="btn-arrow-fill"></path>
</g>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About section end -->
<!-- Text-Slider section start -->
<section class="text-slider-section py-120 overflow-hidden">
<div class="slider-main d-flex align-items-center">
<div class="slider-item d-flex align-items-center">
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Digital Wizards
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Byte Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Inno Secure
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Cloud Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Technologies
</h2>
</div>
<div class="slider-item d-flex align-items-center">
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Digital Wizards
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Byte Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Inno Secure
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Cloud Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Technologies
</h2>
</div>
</div>
</section>
<!-- Text-Slider part end -->
<!-- Who We Are section start -->
<section class="who-section py-120">
<div class="container">
<div class="row g-4">
<div class="col-xl-5 align-self-center">
<div class="content-area text-md-start">
<div class="section-title mb-20">
<h5 class="sub-title text-uppercase">Who we are</h5>
<h3 class="title text-capitalize">
Craft Tomorrow Digital World
</h3>
</div>
<p class="desc">
Lorem ipsum dolor sit amet consectetur adipiscing elit platea pharetra, yhe a nostra
mattis hendrerit
proin mollis pretium
</p>
<p class="desc">
Lorem ipsum dolor sit amet consectetur adipiscing elit platea pharetra, yhe a nostra
mattis hendrerit
proin mollis pretiumLorem ipsum dolor sit amet consectetur adipiscing elit platea
pharetra, yhe a nostra
mattis hendrerit proin mollis pretium
</p>
</div>
</div>
<div class="col-xl-7 align-self-center">
<div class="img-area w-100 d-sm-flex rounded-30 overflow-hidden">
<div class="conter-part flex-shrink-0 text-center flex-grow-1 d-flex flex-column justify-content-center"">
<div class=" icon-box mb-30 d-flex justify-content-center align-items-center rounded-pill mx-auto">
<img src="/assets/images/icon/headphone.svg" alt="headphone">
</div>
<h3 class="count text-center d-flex align-items-center justify-content-center">
<span class="odometer" data-count="25">
</span>+
</h3>
<h6 class="text-center text-nowrap">Services We Provide</h6>
</div>
<div class="img-part">
<img src="./assets/images/about/who-we-are.png" alt="counter-img" class="img-fluid w-100">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Who We Are section end -->
<!-- Team section start -->
<section class="team-section py-120 section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-7 mx-auto">
<div class="section-title text-center">
<h5 class="sub-title text-uppercase">Creative Team</h5>
<h3 class="title split-text right">
Technology that Moves You Forward
</h3>
</div>
</div>
</div>
<div class="team-items">
<div class="team-card position-relative rounded-20">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="info">
<h4>Divine Russel</h4>
<p>lorem ipsum delor</p>
</div>
</div>
<div class="col-lg-4 col-md-5 align-self-center my-4 my-md-0">
<div class="social-icons d-flex align-items-center justify-content-center">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-1 align-self-center">
<div class="hover-img position-absolute overflow-hidden rounded-20">
<div class="member-img">
<img src="./assets/images/team/team-img-1.png" alt="member-img">
</div>
</div>
</div>
</div>
</div>
<div class="team-card active-team position-relative rounded-20">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="info">
<h4>Floyd Miles</h4>
<p>lorem ipsum delor</p>
</div>
</div>
<div class="col-lg-4 col-md-5 align-self-center my-4 my-md-0">
<div class="social-icons d-flex align-items-center justify-content-center">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-1 align-self-center">
<div class="hover-img position-absolute overflow-hidden rounded-20">
<div class="member-img">
<img src="./assets/images/team/team-img-2.png" alt="member-img">
</div>
</div>
</div>
</div>
</div>
<div class="team-card position-relative rounded-20">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="info">
<h4>Kathryn Murphy</h4>
<p>lorem ipsum delor</p>
</div>
</div>
<div class="col-lg-4 col-md-5 align-self-center my-4 my-md-0">
<div class="social-icons d-flex align-items-center justify-content-center">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-1 align-self-center">
<div class="hover-img position-absolute overflow-hidden rounded-20">
<div class="member-img">
<img src="./assets/images/team/team-img-3.png" alt="member-img">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="team-btn text-center">
<a href="#" class="theme-btn theme-btn-border">All Members
<span class="btn-arrow">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4443_62)">
<path
d="M13.4317 12.5381C13.4967 12.4215 13.535 12.2898 13.5367 12.1506L13.5733 7.95396C13.5758 7.60896 13.2992 7.32646 12.9483 7.32312C12.6058 7.32312 12.3258 7.59896 12.3233 7.94229L12.2975 10.8665L7.48917 6.05813C7.245 5.81396 6.84917 5.81396 6.605 6.05813C6.36083 6.30229 6.36083 6.69812 6.605 6.94229L11.4158 11.7531L8.59083 11.7831C8.245 11.7873 7.96833 12.0698 7.9725 12.4148C7.97583 12.7581 8.255 13.0331 8.60417 13.0331C8.60417 13.0331 12.6783 12.989 12.685 12.989C12.9967 12.9856 13.2842 12.8023 13.4325 12.539L13.4317 12.5381Z"
fill="currentColor" class="btn-arrow-fill"></path>
<path
d="M9.99984 19.2219C9.29484 19.2219 8.59818 19.2094 7.91151 19.1853C4.06734 19.0503 0.949844 15.9328 0.81401 12.0869C0.789844 11.3994 0.777344 10.7036 0.777344 9.99859C0.777344 9.29359 0.789844 8.59776 0.81401 7.91026C0.949844 4.06609 4.06734 0.948594 7.91151 0.813594C9.28651 0.76526 10.7148 0.76526 12.0882 0.813594C15.9323 0.948594 19.0498 4.06609 19.1857 7.91193C19.2098 8.59859 19.2223 9.29526 19.2223 10.0003C19.2223 10.7053 19.2098 11.4011 19.1857 12.0886C19.0498 15.9336 15.9323 19.0511 12.0882 19.1869C11.4015 19.2111 10.7048 19.2236 9.99984 19.2236V19.2219ZM9.99984 2.02609C9.31068 2.02609 8.62818 2.03859 7.95568 2.06276C4.76401 2.17443 2.17568 4.76276 2.06318 7.95443C2.03984 8.62776 2.02734 9.30859 2.02734 9.99859C2.02734 10.6886 2.03984 11.3703 2.06318 12.0428C2.17568 15.2344 4.76401 17.8236 7.95568 17.9344C9.30151 17.9836 10.699 17.9836 12.044 17.9344C15.2365 17.8228 17.8248 15.2344 17.9365 12.0428C17.9598 11.3694 17.9723 10.6886 17.9723 9.99859C17.9723 9.30859 17.9598 8.62693 17.9365 7.95443C17.824 4.76276 15.2357 2.17359 12.044 2.06276C11.3707 2.03859 10.689 2.02609 9.99984 2.02609Z"
fill="currentColor" class="btn-arrow-fill"></path>
</g>
</svg>
</span>
</a>
</div>
</div>
</section>
<!-- team section end -->
<!-- Newsletter section start -->
<section class="newsletter-section" data-background="assets/images/shapes/newsletter-bg.svg">
<div class="container">
<div class="row g-4">
<div class="col-lg-6 align-self-center">
<div class="news-text d-flex align-items-center gap-4">
<div class="icon">
<img src="assets/images/icon/mail-icon.svg" alt="mail-icon">
</div>
<h3 class="info">Subscribe Our Newsletter</h3>
</div>
</div>
<div class="col-lg-6 align-self-center">
<div class="news-form">
<form action="#">
<div class="d-sm-flex gap-3 align-items-center">
<div class="input-group position-relative">
<input type="text" class="form-control form-field shadow-none"
placeholder="Enter Your Email">
<span class="mail-icon position-absolute top-50 translate-middle-y"><i
class="fas fa-envelope"></i></span>
</div>
<button
class="theme-btn mt-3 mt-sm-0 theme-btn-primary position-relative flex-shrink-0">Subscribe
Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter section end -->
<!-- Pricing section start -->
<section class="pricing-section py-120 section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-6 mx-auto">
<div class="section-title text-center mb-60">
<h5 class="sub-title">pricing plan
</h5>
<h3 class="title split-text right">Connecting the Dots of Digital Innovation</h3>
</div>
</div>
</div>
<div class="row main-pricing">
<div class="col-lg-4 col-md-6 mx-auto mx-lg-0">
<div class="pricing-card rounded-30 w-100 h-100 bg-white">
<div class="upper-content d-flex justify-content-between">
<div>
<h4 class="title">Web Support</h4>
<h3 class="price">$29</h3>
</div>
<div class="icon-box d-flex align-items-center justify-content-center rounded-20">
<img src="assets/images/icon/pricing-icon-1.svg" alt="icon">
</div>
</div>
<div class="lower-content">
<ul>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Technology
that
empowers</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Your
Startup</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Connecting
people
through IT</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Unlocking
possibilities through IT</li>
</ul>
<button class="w-100 d-flex justify-content-center flex-shrink-0 align-items-center">Get now <i
class="fa-solid fa-chevron-right"></i></button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mx-auto mx-lg-0">
<div class="pricing-card rounded-30 w-100 h-100 bg-white">
<div class="upper-content d-flex justify-content-between">
<div>
<h4 class="title">Site Assist</h4>
<h3 class="price">$39</h3>
</div>
<div class="icon-box d-flex align-items-center justify-content-center rounded-20">
<img src="assets/images/icon/pricing-icon-2.svg" alt="icon">
</div>
</div>
<div class="lower-content">
<ul>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Technology
that
empowers</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Your
Startup</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Connecting
people
through IT</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Unlocking
possibilities through IT</li>
</ul>
<button class="w-100 d-flex justify-content-center flex-shrink-0 align-items-center">Get now <i
class="fa-solid fa-chevron-right"></i></button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mx-auto mx-lg-0">
<div class="pricing-card rounded-30 w-100 h-100 bg-white">
<div class="upper-content d-flex justify-content-between">
<div>
<h4 class="title">Tech Support</h4>
<h3 class="price">$19</h3>
</div>
<div class="icon-box d-flex align-items-center justify-content-center rounded-20">
<img src="assets/images/icon/pricing-icon-3.svg" alt="icon">
</div>
</div>
<div class="lower-content">
<ul>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Technology
that
empowers</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Your
Startup</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Connecting
people
through IT</li>
<li class="d-flex align-items-center"><i class="fa-solid fa-chevrons-right"></i> Unlocking
possibilities through IT</li>
</ul>
<button class="w-100 d-flex justify-content-center flex-shrink-0 align-items-center">Get now <i
class="fa-solid fa-chevron-right"></i></button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing section end -->
<!-- Back to top button start -->
<button class="scroll-to-top position-fixed">
<i class="fas fa-chevron-up"></i>
</button>
<!-- Back to top button end -->
</main>
<!-- Main area end -->
<!-- Footer section start -->
<footer class="footer-section pt-120" data-background="assets/images/shapes/footer-shape.svg">
<div class="container">
<div class="row g-4">
<div class="col-xl-4 col-md-6">
<div class="footer-short-info rounded-20 d-flex align-items-center">
<div class="icon d-flex align-items-center justify-content-center rounded-pill flex-shrink-0">
<img src="assets/images/icon/footer-short-icon-1.svg" alt="footer-short-icon">
</div>
<div class="text">
<h4 class="title">Tech Fusion Solutions</h4>
<p>It encompasses the use of computers, networks</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="footer-short-info rounded-20 d-flex align-items-center">
<div class="icon d-flex align-items-center justify-content-center rounded-pill flex-shrink-0">
<img src="assets/images/icon/footer-short-icon-2.svg" alt="footer-short-icon">
</div>
<div class="text">
<h4 class="title">Digital Edge Innovations</h4>
<p>Other digital technologies to store place network</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="footer-short-info rounded-20 d-flex align-items-center">
<div class="icon d-flex align-items-center justify-content-center rounded-pill flex-shrink-0">
<img src="assets/images/icon/footer-short-icon-3.svg" alt="footer-short-icon">
</div>
<div class="text">
<h4 class="title">Cloud Wave Services</h4>
<p>The rapid advancement of technology continuously</p>
</div>
</div>
</div>
</div>
<div class="footer-main">
<div class="row g-4">
<div class="col-xl-3 col-lg-3 col-md-6">
<div class="footer-widget footer-about">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo/logo2.svg" alt="logo2">
</a>
</div>
<div class="short-info">
<p>Drives innovation within the IT sector, making it a dynamic </p>
</div>
<div class="contact-info">
<ul class="list-unstyled">
<li>
<div class="d-flex align-items-center gap-2">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<h4 class="title">Address </h4>
</div>
<p>2464 Royal Ln. Mesa, New Jersey</p>
</li>
<li>
<div class="d-flex align-items-center gap-2">
<div class="icon">
<i class="fas fa-envelope"></i>
</div>
<h4 class="title">Email </h4>
</div>
<a href="mailto:curtis.weaver@example.com">curtis.weaver@example.com</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6">
<div class="footer-widget footer-links services-widget">
<h4 class="footer-title">Services</h4>
<ul class="list-unstyled">
<li><a href="services.html"><i class="fas fa-chevron-right"></i> InfoSec Experts</a>
</li>
<li><a href="services.html"><i class="fas fa-chevron-right"></i> Quantum IT
Solutions</a></li>
<li><a href="services.html"><i class="fas fa-chevron-right"></i> NexusTech Systems</a>
</li>
<li><a href="services.html"><i class="fas fa-chevron-right"></i> SmartNet IT
Services</a></li>
<li><a href="services.html"><i class="fas fa-chevron-right"></i> ByteForce Solutions</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-2 col-md-6">
<div class="footer-widget footer-links links-widget">
<h4 class="footer-title">Link</h4>
<ul class="list-unstyled">
<li><a href="about-us.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="#">Testimonial</a></li>
<li><a href="blog-and-news.html">Blog And News</a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6">
<div class="footer-widget recent-post-widget">
<h4 class="footer-title">Recent Post</h4>
<ul class="list-unstyled">
<li>
<a href="blog.html">
<span class="title">
Crafting Tomorrow’s Digital World
</span>
<small>
<i class="fas fa-calendar-alt"></i>
October 19, 2024
</small>
</a>
</li>
<li>
<a href="blog.html">
<span class="title">
Technology That Powers the Future
</span>
<small>
<i class="fas fa-calendar-alt"></i>
October 19, 2024
</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="row g-2">
<div class="col-lg-6">
<div class="footer-copyright text-center text-lg-start">
<p>© Yoursitename <span id="copyright_year"></span> | All Rights Reserved</p>
</div>
</div>
<div class="col-lg-6">
<div class="footer-menu text-center text-lg-end">
<ul class="list-unstyled">
<li class="d-inline-block"><a href="#">Trams & Condition</a></li>
<li class="d-inline-block"><a href="#">Privacy Policy</a></li>
<li class="d-inline-block"><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer section end -->
<!-- All Js File -->
<script src="assets/js/vendor/jquery-3.6.4.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/jquery.appear.js"></script>
<script src="assets/js/gsap.js"></script>
<script src="assets/js/gsap-scroll-trigger.js"></script>
<script src="assets/js/gsap-split-text.js"></script>
<script src="assets/js/odometer.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/jquery.magnific-popup.js"></script>
<script src="assets/js/clipboard.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>