-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1196 lines (1058 loc) · 49.4 KB
/
index.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
989
990
991
992
993
994
995
996
997
998
999
1000
<!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" />
<title>Inet Technology</title>
<!-- CUSTOM CSS STYLESHEETS -->
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/fontawesome.css" />
<!-- GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Poppins:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="/assets/vendors/css/glightbox.css" />
</head>
<body>
<!-- //////////////////////////////////////////////// -->
<!-- START THE NAVBAR SECTION -->
<!-- //////////////////////////////////////////////// -->
<nav class="navbar navbar-expand-lg navbar-dark menu fixed-top px-1">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/logo.png" alt="" srcset="" style="width: 150px;" />
</a>
<button class="navbar-toggler collapsed d-flex d-lg-none flex-column justify-content-around" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon top-bar"></span>
<span class="toggler-icon middle-bar"></span>
<span class="toggler-icon bottom-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav justify-content-center mx-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
<button type="button" class="rounded-pill btn-rounded me-2">
<div class="row">
<div>+234 8102863210</div>
<span>
<i class="fas fa-phone-alt"></i>
</span>
</div>
</button>
</div>
</div>
</nav>
<!-- //////////////////////////////////////////////// -->
<!-- START THE INTRO SECTION -->
<!-- //////////////////////////////////////////////// -->
<section id="home" class="intro-section">
<div class="container">
<div class="row align-items-center text-white">
<!-- START THE CONTENT FOR THE INTRO -->
<div class="col-md-5 intros mb-3">
<h1 class="display-2">
<p class="display-2--intro col-lg-10 d-block">Hey!, I'm <span class="typed-text"></span>
<span class="cursor"> </span></span>
</p>
<span class="display-2--description lh-base d-block">This is design agency with the objective of providing
multi-purpose responsive websites with Bootstrap 5 and
Sass</span>
</h1>
<button type="button" class="btn btn-lg btn-outline-light rounded-pill fw-medium mb-3 contact-btn">
Get in Touch
<span>
<i class="fas fa-arrow-right ps-1"></i>
</span>
</button>
</div>
<!-- START THE CONTENT FOR THE VIDEO -->
<div class="col-md-7 intros text-end mt-3">
<div class="video-box">
<img src="images/arts/programmer.png" alt="video-illustration" class="img-fluid"/>
<a href="http://" class="glightbox position-absolute top-50 start-50 translate-middle">
<span>
<i class="fas fa-play-circle"> </i>
</span>
<span class="border-animation border-animation--border-1"></span>
<span class="border-animation border-animation--border-2"></span>
</a>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#ffffff" fill-opacity="1"
d="M0,128L48,149.3C96,171,192,213,288,213.3C384,213,480,171,576,176C672,181,768,235,864,213.3C960,192,1056,96,1152,53.3C1248,11,1344,21,1392,26.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z">
</path>
</svg>
</section>
<!-- //////////
<START THE TRUSTED COMPANIES -->
<!-- ////////// -->
<section id="companies" class="companies">
<div class="container">
<div class="row text-center text-primary">
<h4 class="fw-bold mb-2 display-6">Trusted by companies like</h4>
<div class="heading-line mb-5"></div>
</div>
</div>
<!-- START THE COMPANY CONTENT -->
<div class="section-bg">
<div class="container">
<div class="row">
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box">
<img src="images/companies/company-1.png" alt="Company 1 logo" title="Company 1 Logo" class="img-fluid" />
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box">
<img src="images/companies/company-2.png" alt="Company 2 logo" title="Company 2 Logo" class="img-fluid" />
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box">
<img src="images/companies/company-3.png" alt="Company 3 logo" title="Company 3 Logo" class="img-fluid" />
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box">
<img src="images/companies/company-4.png" alt="Company 4 logo" title="Company 4 Logo" class="img-fluid" />
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box">
<img src="images/companies/company-5.png" alt="Company 5 logo" title="Company 5 Logo" class="img-fluid" />
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="companies__logo-box">
<img src="images/companies/company-6.png" alt="Company 6 logo" title="Company 6 Logo" class="img-fluid" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /////////////////////////////////////////////// -->
<!-- START OUR SERVICES SECTION -->
<!-- /////////////////////////////////////////////// -->
<section id="services" class="services">
<div class="container">
<div class="row text-center">
<h2 class="fw-bold m-3 display-3 mx-auto">Our Services</h2>
<div class="heading-line mb-1"></div>
</div>
<!-- START THE DESCRIPTION CONTENT -->
<div class="row pt-2 pb-2 mt-0 mb-3">
<div class="col-md-6 border-right">
<div class="bg-white p-3">
<h2 class="fw-bold text-capitalize text-center">
Our Services Range From Initial Design To Deployment Anywhere
Anytime
</h2>
</div>
</div>
<div class="col-md-6">
<div class="bg-whie p-4 text-start">
<p class="fw-light">
Lorem ipsum dolor sit amet consectetur architecto magni, dicta
maxime laborum temporibus dolorem esse doloremque illo quas nisi
enim molestias. Tempore ducimus molestiae in dolore enim.
</p>
</div>
</div>
</div>
</div>
<!-- START THE CONTENT -->
<div class="container">
<!-- START THE MARKETING CONTENT -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block fas fa-paper-plane"></div>
<h3 class="display-2--title mt-1">Marketing</h3>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse
optio vero natus voluptatum. Aspernatur commodi consequuntur,
laborum nostrum praesentium amet nemo, ad, corrupti eveniet
maiores placeat minima repellendus.
</p>
<button type="button" class="rounded-pill btn-rounded btn-services me-2" style="margin-bottom: -4rem;">
<div class="row">
<div>+234 8102863210</div>
<span>
<i class="fas fa-phone-alt"></i>
</span>
</div>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-end">
<div class="services__pic">
<img src="images/services/marketing.png" alt="marketing illustration" class="img-fluid" />
</div>
</div>
</div>
<!-- START THE WEB DEVELOPMENT CONTENT -->
<div class="row mb-lg-5">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-start">
<div class="services__pic">
<img src="images/services/web-development.png" alt="web development" class="img-fluid"
style="margin-bottom: -10rem;" />
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services">
<div class="services__content">
<div class="icon d-block fas fa-code"></div>
<h3 class="display-2--title my-lg-4">Web Development</h3>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse
optio vero natus voluptatum. Aspernatur commodi consequuntur,
laborum nostrum praesentium amet nemo, ad, corrupti eveniet
maiores placeat minima repellendus.
</p>
<button type="button" class="rounded-pill btn-rounded btn-services me-2">
<div class="row">
<div>+234 8102863210</div>
<span>
<i class="fas fa-phone-alt"></i>
</span>
</div>
</button>
</div>
</div>
</div>
<!-- START THE CLOUD HOSTING CONTENT -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block fas fa-cloud-upload-alt"></div>
<h3 class="display-2--title mt-1">Cloud Hosting</h3>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse
optio vero natus voluptatum. Aspernatur commodi consequuntur,
laborum nostrum praesentium amet nemo, ad, corrupti eveniet
maiores placeat minima repellendus.
</p>
<button type="button" class="rounded-pill btn-rounded btn-services me-2" style="margin-bottom: -4rem;">
<div class="row">
<div>+234 8102863210</div>
<span>
<i class="fas fa-phone-alt"></i>
</span>
</div>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-end">
<div class="services__pic">
<img src="images/services/cloud-hosting.png" alt="cloud hosting" class="img-fluid" />
</div>
</div>
</div>
</div>
</section>
<!-- START SECTION 5 - TESTIMONIALS -->
<section id="testimonials" class="testimonials">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#fff" fill-opacity="1"
d="M0,192L34.3,165.3C68.6,139,137,85,206,64C274.3,43,343,53,411,74.7C480,96,549,128,617,144C685.7,160,754,160,823,138.7C891.4,117,960,75,1029,90.7C1097.1,107,1166,181,1234,186.7C1302.9,192,1371,128,1406,96L1440,64L1440,0L1405.7,0C1371.4,0,1303,0,1234,0C1165.7,0,1097,0,1029,0C960,0,891,0,823,0C754.3,0,686,0,617,0C548.6,0,480,0,411,0C342.9,0,274,0,206,0C137.1,0,69,0,34,0L0,0Z">
</path>
</svg>
<div class="container">
<div class="row text-center text-white">
<h2 class="fw-bold m-3 display-3 text-white mx-auto">Testimonials</h2>
<hr style="width: 100px; height: 3px" class="mx-auto" />
<p class="lead pt-1">what our clients are saying about us</p>
</div>
<!-- START THE CAROUSEL CONTENT -->
<div class="row align-items-center">
<div id="carouselExampleCaptions" class="carousel slide">
<div class="carousel-inner">
<!-- CAROUSEL ITEM 1 -->
<div class="carousel-item active">
<!-- TESTIMONIALS CARD -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus voluptatibus, illo et fugiat minima
autem, suscipit ipsum commodi repellendus, impedit voluptatem!
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</p>
</div>
</div>
<!-- CLIENT PICTURE -->
<div class="testimonials__picture">
<img src="/images/testimonials/client-1.jpeg" alt="client-1 picture" class="rounded-circle img-fluid">
</div>
<!-- CLIENT NAME & ROLE -->
<div class="testimonials__name">
<h3>Jacobs David</h3>
<p class="lead fw-light">
Saturn Labs, CEO & Founder
</p>
</div>
</div>
<!-- CAROUSEL ITEM 2 -->
<div class="carousel-item">
<!-- TESTIMONIALS CARD -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus voluptatibus, illo et fugiat minima
autem, suscipit ipsum commodi repellendus, impedit voluptatem!
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- CLIENT PICTURE -->
<div class="testimonials__picture">
<img src="/images/testimonials/client-2.jpeg" alt="client-2 picture" class="rounded-circle img-fluid">
</div>
<!-- CLIENT NAME & ROLE -->
<div class="testimonials__name">
<h3>Omeiza Wisdom</h3>
<p class="lead fw-light">
Wise Creations, Graphics Designer
</p>
</div>
</div>
<!-- CAROUSEL ITEM 3 -->
<div class="carousel-item">
<!-- TESTIMONIALS CARD -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fa-solid fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus voluptatibus, illo et fugiat minima
autem, suscipit ipsum commodi repellendus, impedit voluptatem!
<i class="fa-solid fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- CLIENT PICTURE -->
<div class="testimonials__picture">
<img src="/images/testimonials/client-3.jpeg" alt="client-3 picture" class="rounded-circle img-fluid">
</div>
<!-- CLIENT NAME & ROLE -->
<div class="testimonials__name">
<h3>William Chris</h3>
<p class="lead fw-light">
FinTech, Finance Manager
</p>
</div>
</div>
<!-- CAROUSEL ITEM 4 -->
<div class="carousel-item">
<!-- TESTIMONIALS CARD -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus voluptatibus, illo et fugiat minima
autem, suscipit ipsum commodi repellendus, impedit voluptatem!
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- CLIENT PICTURE -->
<div class="testimonials__picture">
<img src="/images/testimonials/client-4.jpeg" alt="client-4 picture" class="rounded-circle img-fluid">
</div>
<!-- CLIENT NAME & ROLE -->
<div class="testimonials__name">
<h3>Claire Wilbur</h3>
<p class="lead fw-light">
Arizone, Social Media Manager
</p>
</div>
</div>
</div>
<div class="text-center">
<button class="btn btn-outline-light fas fa-long-arrow-alt-left" type="button"
data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
</button>
<button class="btn btn-outline-light fas fa-long-arrow-alt-right" type="button"
data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
</button>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#fff" fill-opacity="1"
d="M0,192L34.3,165.3C68.6,139,137,85,206,64C274.3,43,343,53,411,74.7C480,96,549,128,617,144C685.7,160,754,160,823,138.7C891.4,117,960,75,1029,90.7C1097.1,107,1166,181,1234,186.7C1302.9,192,1371,128,1406,96L1440,64L1440,320L1405.7,320C1371.4,320,1303,320,1234,320C1165.7,320,1097,320,1029,320C960,320,891,320,823,320C754.3,320,686,320,617,320C548.6,320,480,320,411,320C342.9,320,274,320,206,320C137.1,320,69,320,34,320L0,320Z">
</path>
</svg>
</section>
<!-- //////////////////////////////////////// -->
<!-- START SECTION 6- THE FAQ -->
<!-- //////////////////////////////////////// -->
<section id="faq" class="faq">
<div class="container">
<div class="row text-center ">
<h1 class="display-3 fw-bold text-uppercase">faq</h1>
<div class="heading-line"></div>
<p class="lead">Frequently Asked Questions, get knowledge before hand</p>
</div>
<!-- ACCORDION CONTENT -->
<div class="row mt-5">
<div class="col-md-12">
<div class="accordion" id="accordionExample">
<!-- ACCORDION ITEM 1 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button fw-medium" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What are the main features?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the first item's accordion body.</strong> It is shown by default, until the collapse
plugin adds the appropriate classes that we use to style each element. These classes control the
overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this
with custom CSS or overriding our default variables. It's also worth noting that just about any HTML
can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<!-- ACCORDION ITEM 2 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed fw-medium" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Do I have to pay again after trial?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the second item's accordion body.</strong> It is hidden by default, until the collapse
plugin adds the appropriate classes that we use to style each element. These classes control the
overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this
with custom CSS or overriding our default variables. It's also worth noting that just about any HTML
can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<!-- ACCORDION ITEM 3 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed fw-medium" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
How can I get started after trial
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse
plugin adds the appropriate classes that we use to style each element. These classes control the
overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this
with custom CSS or overriding our default variables. It's also worth noting that just about any HTML
can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<!-- ACCORDION ITEM 4 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed fw-medium" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Can I be refunded if I am not satisfied?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse
plugin adds the appropriate classes that we use to style each element. These classes control the
overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this
with custom CSS or overriding our default variables. It's also worth noting that just about any HTML
can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //////////////////////////////////////////// -->
<!-- START SECTION 7-PORTFOLIO -->
<!-- //////////////////////////////////////////////////////////////////////// -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="row text-center mt-5">
<h1 class="display-3 fw-bold text-capitalize">Latest Work</h1>
<div class="heading-line"></div>
<p class="lead">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt repudiandae repellat nostrum.
</p>
</div>
</div>
<!-- FILTER BUTTON -->
<div class="section-bg mb-4 mt-5 pb-3">
<div class="row py-auto text-center">
<div class="col-md-12">
<div class="nav-portfolio text-center">
<ul class="nav nav-pills nav-pills-bg-soft justify-content-sm-center mb-4" id="course-pills-tab"
role="tablist">
<!-- Tab item -->
<li class="nav-item">
<button class="btn btn-outline-primary rounded-pill mx-2 mb-2 mb-md-0 fw-bold active" id="all-tab"
data-bs-toggle="tab" data-bs-target="#all" type="button" role="tab" aria-controls="all"
aria-selected="true">All</button>
</li>
<!-- Tab item -->
<li class="nav-item">
<button class="btn btn-outline-primary rounded-pill mx-2 mb-2 mb-md-0" id="development-tab" data-bs-toggle="tab"
data-bs-target="#development" type="button" role="tab" aria-controls="development"
aria-selected="false">Development</button>
</li>
<!-- Tab item -->
<li class="nav-item">
<button class="btn btn-outline-primary rounded-pill mx-2 mb-2 mb-md-0" id="graphic-tab" data-bs-toggle="tab"
data-bs-target="#graphic" type="button" role="tab" aria-controls="graphic"
aria-selected="false">Graphic Design</button>
</li>
<!-- Tab item -->
<li class="nav-item">
<button class="btn btn-outline-primary rounded-pill mx-2 mb-2 mb-md-0" id="app-tab" data-bs-toggle="tab"
data-bs-target="#app" type="button" role="tab" aria-controls="app" aria-selected="false">App</button>
</li>
</ul>
</div>
<!-- Tabs END -->
<!-- TABS CONTENT START -->
<div class="tab-content">
<!-- TAB 1 "ALL" -->
<div class="tab-pane fade show active" id="all" role="tabpanel" aria-labelledby="all">
<div class="container">
<div class="row">
<!-- Project 1 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Archeco.jpg" alt="portfolio 1 image" title="portfolio 1 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 1</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Battle Peer Network.jpg" alt="portfolio 2 image"
title="portfolio 2 picture" class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 2</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Capt Travel.jpg" alt="portfolio 3 image" title="portfolio 3 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 3</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Dl Charge.jpg" alt="portfolio 4 image" title="portfolio 4 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 4</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Fitbess Pro.png" alt="portfolio 5 image" title="portfolio 5 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 5</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/FrozeVerse App.jpg" alt="portfolio 6 image" title="portfolio 6 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 6</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 7 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/FYWH Tracker.jpg" alt="portfolio 7 image" title="portfolio 7 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 7</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 8 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Yummly App Redesign.jpg" alt="portfolio 8 image"
title="portfolio 8 picture" class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 8</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 9 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Zara Larsson.jpg" alt="portfolio 9 image" title="portfolio 9 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 9</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TAB 2 "DEVELOPMENT" -->
<div class="tab-pane fade" id="development" role="tabpanel" aria-labelledby="development-tab">
<div class="container">
<div class="row">
<!-- Project 1 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Archeco.jpg" alt="portfolio 1 image" title="portfolio 1 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 1</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Battle Peer Network.jpg" alt="portfolio 2 image"
title="portfolio 2 picture" class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 2</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Capt Travel.jpg" alt="portfolio 3 image" title="portfolio 3 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 3</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TAB 3 "GRAPHIC DESIGN" -->
<div class="tab-pane fade" id="graphic" role="tabpanel" aria-labelledby="graphic-tab">
<div class="container">
<div class="row">
<!-- Project 4 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Dl Charge.jpg" alt="portfolio 4 image" title="portfolio 4 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 4</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Fitbess Pro.png" alt="portfolio 5 image" title="portfolio 5 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 5</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/FrozeVerse App.jpg" alt="portfolio 6 image" title="portfolio 6 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 6</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TAB 4 "APP" -->
<div class="tab-pane fade" id="app" role="tabpanel" aria-labelledby="app-tab">
<div class="container">
<div class="row">
<!-- Project 7 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/FYWH Tracker.jpg" alt="portfolio 7 image" title="portfolio 7 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 7</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 8 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Yummly App Redesign.jpg" alt="portfolio 8 image"
title="portfolio 8 picture" class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 8</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<!-- Project 9 -->
<div class="col-lg-4 col-md-6 px-3">
<div class="portfolio-box shadow">
<img src="images/portfolio/Zara Larsson.jpg" alt="portfolio 9 image" title="portfolio 9 picture"
class="img-fluid">
<div class="div portfolio-info">
<div class="caption">
<h4>project name goes here 9</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- START SECTION - 8 GET STARTED SECTION -->
<section id="contact" class="get-started">
<div class="container">
<div class="row text-center">
<h2 class="fw-bold display-2">
Get Started
</h2>
<div class="heading-line"></div>
<p class="lh-lg">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nostrum maxime unde culpa.
</p>
</div>
<!-- START THE CTA CONTENT -->
<div class="row text-white cta-row">
<div class="col-12 col-lg-6 gradient shadow p-3">
<div class="cta-info w-100">
<h4 class="display-4 fw-bold">100% Satisfaction Guaranteed</h4>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugiat, ipsam repellat? Mollitia nemo qui
suscipit praesentium assumenda! Ad suscipit autem reprehenderit.
</p>
<h3 class="display-3--brief">What will be the next step?</h3>
<ul class="cta-info__list">
<li>We will prepare the Proposal</li>
<li>We will discuss it together</li>
<li>Let's start the discussion</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-6 bg-white shadow p-3 text-center">
<div class="form w-100 pb-2">
<h4 class="display-2--title mb-5">Start your project with
<br><img class="img-fluid" src="/images/logo.png" alt="">
</h4>
<form action="#" class="row">
<!-- INPUT FOR FOR FIRST NAME -->
<div class="col-lg-6 col-md-6 mb-3">
<input type="text" placeholder="First Name" id="inputFirstName"
class="shadow form-control-lg form-control">
</div>
<!-- INPUT FOR LAST NAME -->
<div class="col-lg-6 col-md-6 mb-3">
<input type="text" placeholder="Last Name" id="inputLastName"
class="shadow form-control-lg form-control">
</div>
<!-- INPUT FOR EMAIL ADDRESS -->