-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome-two.html
More file actions
1571 lines (1551 loc) · 88.4 KB
/
home-two.html
File metadata and controls
1571 lines (1551 loc) · 88.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" data-bs-theme="light">
<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-two w-100" id="sticky-header">
<nav class="navbar navbar-expand-xl d-none d-xl-flex">
<div class="container navbar-main">
<a class="navbar-brand z-2" href="home-two.html">
<img src="./assets/images/logo/logo2.svg" 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 active" 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" 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>
<!-- Banner Section Start -->
<section class="banner-section-two position-relative z-1 overflow-hidden">
<div class="container">
<div class="row g-4">
<div class="col-lg-5 align-self-center">
<div class="banner-content">
<h1 class="banner-title position-relative split-text right">
Make a big impact with IT
</h1>
<p class="banner-info">
lorem ipsum dolor sit amet consectetur. Facilisi cursus
vulputate vestibulum etiam rhoncus
</p>
<a href="https://www.youtube.com/watch?v=aoO7FmObgyM" target="_blank"
class="popup-youtube play-video d-flex align-items-center justify-content-center position-relative">
<img src="/assets/images/banner/rounded-text.svg" alt="rounded-text">
<span class="icon rounded-pill position-absolute"><i class="fa-solid fa-play text-white"></i></span>
</a>
</div>
</div>
<div class="col-lg-7 position-relative">
<div class="banner-img">
<img src="./assets/images/banner/banner-img-2.png" class="img-fluid w-100" alt="banner-img.png" />
</div>
<div class="banner-shapes">
<img src="./assets/images/shapes/banner-shape-three.png" alt="shape-1" class="shape-1 position-absolute">
<img src="./assets/images/shapes/banner-shape-four.png" alt="shape-2" class="shape-2 position-absolute">
</div>
</div>
</div>
</div>
<span class="position-absolute banner-object">
<img src="./assets/images/shapes/banner-shape-two.png" alt="banner-shape-two">
</span>
</section>
<!-- Banner section end -->
<!-- About section start -->
<section class="about-section py-120 section-bg">
<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 split-text left">
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 -->
<!-- Service section start -->
<section class="service-section-two z-1 py-120 section-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-8 text-center">
<div class="section-title mb-60">
<h5 class="sub-title text-uppercase">Our Services</h5>
<h3 class="title split-text right">
Advancing Technology for A Better Tomorrow
</h3>
</div>
</div>
</div>
<div class="row services-slider-two">
<div class="col-lg-4">
<div class="service-card rounded-20">
<div class="img-part position-relative">
<div class="img overflow-hidden">
<a href="service-details.html" class="d-block w-100" tabindex="0">
<img src="assets/images/service/service-img-1.jpg" alt="service-one-img" class="img-fluid w-100">
</a>
</div>
<div
class="box-icon section-bg rounded-20 d-flex justify-content-center align-items-center position-absolute start-50 translate-middle-x">
<img src="./assets/images/icon/Service-two-icon-1.svg" alt="service-two-icon">
</div>
</div>
<div class="service-text text-center">
<h4 class="service-title">Empowering businesses through innovative</h4>
<a href="service-details.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 class="col-lg-4">
<div class="service-card rounded-20">
<div class="img-part position-relative">
<div class="img overflow-hidden">
<a href="service-details.html" class="d-block w-100" tabindex="0">
<img src="assets/images/service/service-img-2.jpg" alt="service-one-img" class="img-fluid w-100">
</a>
</div>
<div
class="box-icon section-bg rounded-20 d-flex justify-content-center align-items-center position-absolute start-50 translate-middle-x">
<img src="./assets/images/icon/Service-two-icon-2.svg" alt="service-two-icon">
</div>
</div>
<div class="service-text text-center">
<h4 class="service-title">Connecting you to digital success</h4>
<a href="service-details"
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 class="col-lg-4">
<div class="service-card rounded-20">
<div class="img-part position-relative">
<div class="img overflow-hidden">
<a href="service-details.html" class="d-block w-100" tabindex="0">
<img src="assets/images/service/service-img-3.jpg" alt="service-one-img" class="img-fluid w-100">
</a>
</div>
<div
class="box-icon section-bg rounded-20 d-flex justify-content-center align-items-center position-absolute start-50 translate-middle-x">
<img src="./assets/images/icon/Service-two-icon-3.svg" alt="service-two-icon">
</div>
</div>
<div class="service-text text-center">
<h4 class="service-title">Your tech partner for tomorrow's challenges</h4>
<a href="service-details.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 class="col-lg-4">
<div class="service-card rounded-20">
<div class="img-part position-relative">
<div class="img overflow-hidden">
<a href="service-details.html" class="d-block w-100" tabindex="0">
<img src="assets/images/service/service-img-2.jpg" alt="service-one-img" class="img-fluid w-100">
</a>
</div>
<div
class="box-icon section-bg rounded-20 d-flex justify-content-center align-items-center position-absolute start-50 translate-middle-x">
<img src="./assets/images/icon/Service-two-icon-2.svg" alt="service-two-icon">
</div>
</div>
<div class="service-text text-center">
<h4 class="service-title">Connecting you to digital success</h4>
<a href="service-details"
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>
<!-- Service section end -->
<!-- Who We Are section start -->
<section class="who-section py-120 section-bg">
<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 split-text right">
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 reveal right">
<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 -->
<!-- NewsLetter section start -->
<section class="newsletter-section-two position-relative z-1">
<div class="shape">
<img src="assets/images/shapes/cta-bg-1.svg" class="cta-shape1 position-absolute top-0 start-0 z-n1"
alt="cta-bg">
<img src="assets/images/shapes/cta-bg-2.svg" class="cta-shape2 position-absolute bottom-0 end-0 z-n1"
alt="cta-bg">
</div>
<div class="container">
<div class="row g-4">
<div class="col-lg-11 mx-auto justify-content-center">
<h3 class="title split-text right text-white text-center">
Next-Level IT for Next-Level Businesses
</h3>
<p class="text-white text-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<div class="action-btn flex-wrap d-flex align-items-center justify-content-center">
<a href="contact.html"
class="theme-btn theme-btn-white position-relative d-inline-flex align-items-center">
Sign Up Today
</a>
<a href="services.html"
class="theme-btn theme-btn-primary theme-btn-secondary position-relative d-inline-flex align-items-center">
View Services
</a>
</div>
</div>
</div>
</div>
</section>
<!-- NewsLetter section end -->
<!-- Project section two start -->
<section class="project-section-two py-120 section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-8 mx-auto">
<div class="section-title mb-60 text-center">
<h5 class="sub-title">Latest projects</h5>
<h3 class="title split-text right z-5">Simplifying IT Complexity Amplifying Business Success</h3>
</div>
</div>
</div>
</div>
<div class="project-main overflow-hidden">
<div class="row horizontal-scroll flex-nowrap">
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-1.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-2.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-3.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-4.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-1.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-2.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-3.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 col-sm-6">
<div class="project-item">
<div class="img position-relative">
<img src="assets/images/projects/project-img-4.png" alt="project-img"
class="img-fluid w-100 rounded-20">
<div class="overlay position-absolute top-0 start-0 w-100 h-100">
<div
class="project-info rounded-20 h-100 d-flex flex-column justify-content-center align-items-center">
<h4 class="text-white project-title">Tech Horizons</h4>
<p class="text-white">The Walt Disney Company</p>
<a href="project-details.html"
class="box-icon rounded-pill secondary d-flex align-items-center justify-content-center ">
<i class="fa-solid fa-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Project section two end -->
<!-- Text-Slider section start -->
<section class="text-slider-section section-bg 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 -->
<!-- Team-section-two section start -->
<section class="team-section-two section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-4 text-center text-lg-start">
<div class="team-content">
<div class="section-title">
<h5 class="sub-title">Our Team</h5>
<h3 class="title z-5 split-text right">Transforming Challenges into Best</h3>
</div>
<p class="team-desc">
Lorem ipsum dolor sit amet consectetur adipiscing elit platea pharetra, yhe a nostra mattis hendrerit
proin mollis pretium
</p>
<div class="team-btn">
<a href="#" class="theme-btn theme-btn-primary">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>
</div>
<div class="col-lg-8">
<div class="all-team-card">
<div class="row g-4">
<div class="col-md-6">
<div class="team-card">
<div class="img position-relative rounded-20 overflow-hidden">
<img src="assets/images/team/team-member-1.png" alt="team-member-img" class="rounded-20 img-fluid w-100">
<div class="overlay position-absolute top-0 start-0 w-100 h-100 rounded-20">
<div class="member-info position-absolute start-50 translate-middle-x">
<h3 class="text-white text-nowrap text-center member-title">Marvin McKinney</h3>
<h4 class="text-white text-nowrap text-center member-position">Web Designer</h4>
<div class="social-icons d-flex align-items-center justify-content-between ">
<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>
</div>
</div>
</div>
<div class="col-md-6">
<div class="team-card">
<div class="img position-relative rounded-20 overflow-hidden">
<img src="assets/images/team/team-member-2.png" alt="team-member-img" class="rounded-20 img-fluid w-100">
<div class="overlay position-absolute top-0 start-0 w-100 h-100 rounded-20">
<div class="member-info position-absolute start-50 translate-middle-x">
<h3 class="text-white text-nowrap text-center member-title">Marvin McKinney</h3>
<h4 class="text-white text-nowrap text-center member-position">Web Designer</h4>
<div class="social-icons d-flex align-items-center justify-content-between ">
<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>
</div>
</div>
</div>
<div class="col-md-6">
<div class="team-card">
<div class="img position-relative rounded-20 overflow-hidden">
<img src="assets/images/team/team-member-3.png" alt="team-member-img" class="rounded-20 img-fluid w-100">
<div class="overlay position-absolute top-0 start-0 w-100 h-100 rounded-20">
<div class="member-info position-absolute start-50 translate-middle-x">
<h3 class="text-white text-nowrap text-center member-title">Marvin McKinney</h3>
<h4 class="text-white text-nowrap text-center member-position">Web Designer</h4>
<div class="social-icons d-flex align-items-center justify-content-between ">
<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>
</div>
</div>
</div>
<div class="col-md-6">
<div class="team-card">
<div class="img position-relative rounded-20 overflow-hidden">
<img src="assets/images/team/team-member-4.png" alt="team-member-img" class="rounded-20 img-fluid w-100">
<div class="overlay position-absolute top-0 start-0 w-100 h-100 rounded-20">
<div class="member-info position-absolute start-50 translate-middle-x">
<h3 class="text-white text-nowrap text-center member-title">Marvin McKinney</h3>
<h4 class="text-white text-nowrap text-center member-position">Web Designer</h4>
<div class="social-icons d-flex align-items-center justify-content-between ">
<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>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team-section-two 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 -->
<!-- Counter and testimonial section two start -->
<div class="counter-section-two pt-120 section-bg">
<!-- Counter section two start -->
<div class="counter-main rounded-30 position-relative">
<div class="bg-img position-absolute top-0 start-50 translate-middle-x">
<img src="assets/images/shapes/counter-two-bg.svg" alt="counter-two-bg">
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6 col-6">
<div class="counter-item-two text-center rounded-20">
<div class="number">
<span class="odometer" data-count="30"></span>+
</div>
<span class="short-info">Winning Award</span>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-6">
<div class="counter-item-two text-center rounded-20">
<div class="number">
<span class="odometer" data-count="500"></span>+
</div>
<span class="short-info">Satishfied Client</span>
</div>
</div>