-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
915 lines (878 loc) · 45.8 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
<!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>Learning bootstrap v5 with sass</title>
<link rel="stylesheet" href="/assests/css/style.css">
<link rel="stylesheet" href="/assests/css/fontawesome.css">
<link rel="stylesheet" href="/assests/vendors/css/glightbox.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<!--
Start the Navbar section
-->
<nav class="navbar navbar-expand-lg navbar-dark menu shadow fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<img alt="Logo image" src="images/logo.png"/>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<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 Us</a>
</li>
</ul>
<button type="button" class="rounded-pill btn-rounded">
+1 726565413
<span>
<i class="fas fa-phone-alt"></i>
</span>
</button>
</div>
</nav>
<!--/////////////////////////////////////////////////////////////////
START THE INTRO SECTION
//////////////////////////////////////////////////////////////////-->
<section id="home" class="intro-section">
<div class="container">
<!-- START THE CONTENT FOR THE INTRO -->
<div class="row text-white align-items-center">
<div class="col-md-6 intros">
<h1 class="display-2">
<span class="display-2--intro">
Hey, I am Patrick
</span>
<span class="display-2--description lh-base">
This is a multi-purpose responsive layout created from bootstrap v5.
(here you can place your description text)
</span>
</h1>
<button type="button" class="rounded-pill btn-rounded">
Get in Touch
<span>
<i class="fas fa-arrow-right"></i>
</span>
</button>
</div>
<!-- START THE CONTENT FOR THE VIDEO -->
<div class="col-md-6 intros text-end">
<div class="video-box">
<img src="images/arts/intro-section-illustration.png" alt="Video Illustration" class="img-fluid">
<a href="#" 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="#fff" fill-opacity="1" d="M0,192L60,192C120,192,240,192,360,213.3C480,235,600,277,720,245.3C840,213,960,107,1080,90.7C1200,75,1320,149,1380,186.7L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>
</section>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE COMPANY SECTION
///////////////////////////////////////////////////////////////////////////////////////////-->
<section id="companies" class="companies">
<div class="container">
<div class="row text-center">
<h4 class="fw-bold lead mb-3">Trusted By Companies like</h4>
<div class="heading-line mb-5"></div>
</div>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE COMPANY CONTENT
///////////////////////////////////////////////////////////////////////////////////////////-->
<div class="container">
<div class="row">
<div class="col-md-4 col-lg-2">
<div class="companies__logo_box shadow-sm"><img src="images/companies/campany-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 shadow-sm"><img src="images/companies/campany-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 shadow-sm"><img src="images/companies/campany-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 shadow-sm"><img src="images/companies/campany-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 shadow-sm"><img src="images/companies/campany-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 shadow-sm"><img src="images/companies/campany-6.png" alt="Company 6 Logo" title="Company 6 Logo" class="img-fluid"></div>
</div>
</div>
</section>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE SECTION FOR SERVICES
///////////////////////////////////////////////////////////////////////////////////////////-->
<section id="services" class="services">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold">Our Services</h1>
<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 Development Anywhere Anytime
</h2>
</div>
</div>
<div class="col-md-6">
<div class="bg-white p-4 text-start">
<p class="fw-light">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam mollis pellentesque mi,
at euismod ipsum pretium sit amet. Morbi tempus, elit vitae auctor ultrices, sem enim imperdiet enim,
'eu maximus sem nibh vel sapien. Nullam eu diam diam. Maecenas mollis, metus sit amet gravida finibus,
felis elit viverra nulla, at semper est augue vel velit.
</p>
</div>
</div>
</div>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE SERVICES 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-3--title mt-1">Marketing</h3>
<p class="lh-lg">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Quod odit quo repellendus accusamus soluta ab perspiciatis
aut eligendi repudiandae architecto dignissimos vero quidem
iusto laborum, molestias, ullam alias.
</p>
<button type="button" class="rounded-pill btn-rounded border-primary">
Learn More
<span>
<i class="fas fa-arrow-right"></i>
</span>
</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/service-1.png" alt="Marketing Illustration" class="img-fluid">
</div>
</div>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE WEB-DEVELOPMENT CONTENT
///////////////////////////////////////////////////////////////////////////////////////////-->
<div class="row">
<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/service-2.png" alt="Web Development Illustration" class="img-fluid">
</div>
</div>
<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-code"></div>
<h3 class="display-3--title mt-1">Web Development</h3>
<p class="lh-lg">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Quod odit quo repellendus accusamus soluta ab perspiciatis
aut eligendi repudiandae architecto dignissimos vero quidem
iusto laborum, molestias, ullam alias.
</p>
<button type="button" class="rounded-pill btn-rounded border-primary">
Learn More
<span>
<i class="fas fa-arrow-right"></i>
</span>
</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-3--title mt-1">Cloud Hosting</h3>
<p class="lh-lg">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Quod odit quo repellendus accusamus soluta ab perspiciatis
aut eligendi repudiandae architecto dignissimos vero quidem
iusto laborum, molestias, ullam alias.
</p>
<button type="button" class="rounded-pill btn-rounded border-primary">
Learn More
<span>
<i class="fas fa-arrow-right"></i>
</span>
</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/service-3.png" alt="Cloud Hosting Illustration" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE TESTIMONIALS SECTION
///////////////////////////////////////////////////////////////////////////////////////////-->
<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,96L34.3,80C68.6,64,137,32,206,48C274.3,64,343,128,411,154.7C480,181,549,171,617,138.7C685.7,107,754,53,823,80C891.4,107,960,213,1029,224C1097.1,235,1166,149,1234,112C1302.9,75,1371,85,1406,90.7L1440,96L1440,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">
<h1 class="display-3 fw-bold">Testimonials</h1>
<hr style="width:100px; height:3px" class="mx-auto">
<p class="lead pt-1">What our clients are saying</p>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
START THE CAROUSEL CONTENT
///////////////////////////////////////////////////////////////////////////////////////////-->
<div class="row align-items-center">
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- CARASOUEL 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.
Consectetur magnam illo nostrum, corporis nisi voluptas,
sunt laudantium odio fugiat accusamus mollitia.
<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-1.jpg" alt="client-1-picture" class="img-fluid rounded-circle">
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
CLIENT NAME & ROLE
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="testimonials__name">
<h3>Patrick Muriungi</h3>
<p class="fw-light">CEO & Founder</p>
</div>
</div>
<!-- CARASOUEL 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.
Consectetur magnam illo nostrum, corporis nisi voluptas,
sunt laudantium odio fugiat accusamus mollitia.
<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.jpg" alt="client-2-picture" class="img-fluid rounded-circle">
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
CLIENT NAME & ROLE
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="testimonials__name">
<h3>Joy Marete</h3>
<p class="fw-light">Finance Manager</p>
</div>
</div>
<!-- CARASOUEL ITEM 3 -->
<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.
Consectetur magnam illo nostrum, corporis nisi voluptas,
sunt laudantium odio fugiat accusamus mollitia.
<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-3.jpg" alt="client-3-picture" class="img-fluid rounded-circle">
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
CLIENT NAME & ROLE
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="testimonials__name">
<h3>ClaireBelle Zawadi</h3>
<p class="fw-light">Global Brand Manager</p>
</div>
</div>
<!-- CARASOUEL 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.
Consectetur magnam illo nostrum, corporis nisi voluptas,
sunt laudantium odio fugiat accusamus mollitia.
<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.jpg" alt="client-4-picture" class="img-fluid rounded-circle">
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
CLIENT NAME & ROLE
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="testimonials__name">
<h3>Uhuru Kenyatta</h3>
<p class="fw-light">CEO & Founder</p>
</div>
</div>
<!-- CARASOUEL ITEM 5 -->
<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.
Consectetur magnam illo nostrum, corporis nisi voluptas,
sunt laudantium odio fugiat accusamus mollitia.
<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-5.jpg" alt="client-5-picture" class="img-fluid rounded-circle">
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
CLIENT NAME & ROLE
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="testimonials__name">
<h3>JOHN DOE</h3>
<p class="fw-light">CEO</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,96L34.3,80C68.6,64,137,32,206,48C274.3,64,343,128,411,154.7C480,181,549,171,617,138.7C685.7,107,754,53,823,80C891.4,107,960,213,1029,224C1097.1,235,1166,149,1234,112C1302.9,75,1371,85,1406,90.7L1440,96L1440,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>
<!--////////////////////////////////////////////////////////////////////////////////////
SECTION 6 FAQ SECTION
/////////////////////////////////////////////////////////////////////////////////////-->
<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>
<!--////////////////////////////////////////////////////////////////////////////////////
ACCORDIAN CONTENT
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="row mt-5">
<div class="col-md-12">
<div class="accordion" id="accordionExample">
<!--////////////////////////////////////////////////////////////////////////////////////
ACCORDIAN ITEM #1
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" 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>
<!--////////////////////////////////////////////////////////////////////////////////////
ACCORDIAN ITEM #2
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Do I have to pay 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>
<!--////////////////////////////////////////////////////////////////////////////////////
ACCORDIAN ITEM #3
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
How can i get started after trail?
</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>
<!--////////////////////////////////////////////////////////////////////////////////////
ACCORDIAN ITEM #4
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" 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 Fourth 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>
<!--////////////////////////////////////////////////////////////////////////////////////
SECTION 7 PORTFOLIO SECTION
/////////////////////////////////////////////////////////////////////////////////////-->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="row text-center mt-5">
<h1 class="display-3 fw-bold text-uppercase">
Latest Work
</h1>
<div class="heading-line"></div>
<p class="lead">Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda, voluptatem.</p>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
FILTER BUTTONS
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="row mt-5 mb-4 g-3 text-center">
<div class="col-md-12">
<button class="btn btn-outline-primary" type="button">All</button>
<button class="btn btn-outline-primary" type="button">Website</button>
<button class="btn btn-outline-primary" type="button">Design</button>
<button class="btn btn-outline-primary" type="button">Mockup</button>
</div>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
PORTFOLIO CONTENT
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-1.jpg" alt="Portfolio 1 image" title="Portfolio 1 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 1</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-2.jpg" alt="Portfolio 2 image" title="Portfolio 2 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 2</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-3.jpg" alt="Portfolio 3 image" title="Portfolio 3 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 3</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-4.jpg" alt="Portfolio 4 image" title="Portfolio 4 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 4</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-5.jpg" alt="Portfolio 5 image" title="Portfolio 5 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 5</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-6.jpg" alt="Portfolio 6 image" title="Portfolio 6 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 6</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-7.jpg" alt="Portfolio 7 image" title="Portfolio 7 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 7</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-8.jpg" alt="Portfolio 8 image" title="Portfolio 8 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 8</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-9.jpg" alt="Portfolio 9 image" title="Portfolio 9 Picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Project name goes here 9</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--////////////////////////////////////////////////////////////////////////////////////
SECTION 8 GET STARTED SECTION
/////////////////////////////////////////////////////////////////////////////////////-->
<section id="contact" class="get-started">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold text-capitalize">Get Started</h1>
<div class="heading-line"></div>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nemo quasi sapiente aliquid?
</p>
</div>
<!--////////////////////////////////////////////////////////////////////////////////////
SECTION 8 TWO COLUMN SECTION
/////////////////////////////////////////////////////////////////////////////////////-->
<div class="row text-white">
<col-12 class="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. Esse quo ut odit delectus, saepe tenetur.
</p>
<h3 class="display-3--brief">What will be the next step</h3>
<ul class="cta-info__list">
<li>We'll Prepare the proposal</li>
<li>We'll discuss it together</li>
<li>Let's start the discussion</li>
</ul>
</div>
</col-12>
<col-12 class="col-lg-6 bg-white shadow p-3">
<div class="form w-100 pb-2">
<h4 class="display-3--title mb-5">Start your Project</h4>
<form action="#" class="row">
<div class="col-lg-6 col-md-6 mb-3">
<input type="text" placeholder="First Name" id="inputFirstName" class="form-control shadow form-control-lg">
</div>
<div class="col-lg-6 col-md-6 mb-3">
<input type="text" placeholder="Last Name" id="inputLastName" class="form-control shadow form-control-lg">
</div>
<div class="col-lg-12 mb-3">
<input type="text" placeholder="Email" id="inputEmail" class="form-control shadow form-control-lg">
</div>
<div class="col-lg-12 mb-3">
<textarea name="message" placeholder="Enter your message" id="inputMessage" cols="30" rows="8" class="form-control shadow form-control-lg"></textarea>
</div>
<div class="col-lg-12 text-center d-grid mt-1">
<button type="button" class="btn btn-primary rounded-pill pt-3 pb-3">
Submit
<i class="fas fa-paper-plane"></i>
</button>
</div>
</form>
</div>
</col-12>
</div>
</div>
</section>
<!--////////////////////////////////////////////////////////////////////////////////////
SECTION 9 FOOTER SECTION
/////////////////////////////////////////////////////////////////////////////////////-->
<footer class="footer">
<div class="container">
<div class="row">
<!--///////////////////CONTENT FOR THE MOBILE NUMBER////////////////////////////////////////////-->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2" />
<path d="M15 7a2 2 0 0 1 2 2" />
<path d="M15 3a6 6 0 0 1 6 6" />
</svg>
</div>
<div class="contact-box__info">
<a href="" class="contact-box__info--title">+1 728365413</a>
<p class="contact-box__info--subtitle">Mon-Fri 9am-6pm</p>
</div>
</div>
<!--///////////////////CONTENT FOR EMAIL///////////////////////////////////////////////////////-->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-mail-opened" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<polyline points="3 9 12 15 21 9 12 3 3 9" />
<path d="M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10" />
<line x1="3" y1="19" x2="9" y2="13" />
<line x1="15" y1="13" x2="21" y2="19" />
</svg>
</div>
<div class="contact-box__info">
<a href="" class="contact-box__info--title">[email protected]</a>
<p class="contact-box__info--subtitle">Online Support</p>
</div>
</div>
<!--///////////////////CONTENT FOR LOCATION///////////////////////////////////////////////////-->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-map-2" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<line x1="18" y1="6" x2="18" y2="6.01" />
<path d="M18 13l-3.5 -5a4 4 0 1 1 7 0l-3.5 5" />
<polyline points="10.5 4.75 9 4 3 7 3 20 9 17 15 20 21 17 21 15" />
<line x1="9" y1="4" x2="9" y2="17" />
<line x1="15" y1="15" x2="15" y2="20" />
</svg>
</div>
<div class="contact-box__info">
<a href="" class="contact-box__info--title">New York, USA</a>
<p class="contact-box__info--subtitle">NY 10012, US</p>
</div>
</div>
</div>
</div>
<!--///////////////////CONTENT FOR SOCIAL MEDIA////////////////////////////////////////////-->
<div class="footer-sm" style="background-color:#212121;">
<div class="container">
<div class="row py-4 text-center">
<div class="col-lg-5 col-md-6 mb-4 text-capitalize text-white mb-md-0">
connect with us on social media
</div>
<div class="col-lg-7 col-md-6">
<a href=""><i class="fab fa-facebook"></i></a>
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-github"></i></a>
<a href=""><i class="fab fa-linkedin"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<!--///////////////////CONTENT FOR COMPANY INFO////////////////////////////////////////////-->
<div class="container mt-5">
<div class="row text-white justify-content-center mt-3 pb-3">
<div class="col-12 col-sm-6 col-lg-6 mx-auto">
<h5 class="text-capitalize fw-bold">
Company Name
</h5>
<hr class="bg-white d-inline-block mb-4" style="width:60px; height:2px;">
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Doloribus maxime ducimus dolorem tenetur nisi provident reprehenderit similique?
</p>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">
Products
</h5>
<hr class="bg-white d-inline-block mb-4" style="width:60px; height:2px;">
<ul class="list-inline company-list">
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">
Useful Links
</h5>
<hr class="bg-white d-inline-block mb-4" style="width:60px; height:2px;">
<ul class="list-inline company-list">
<li><a href="#">Your Account</a></li>
<li><a href="#">Become a Affiliate</a></li>
<li><a href="#">Create an Account</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">
Contact
</h5>
<hr class="bg-white d-inline-block mb-4" style="width:60px; height:2px;">
<ul class="list-inline company-list">
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
</ul>
</div>
</div>
</div>
<!--///////////////////CONTENT FOR COPYWRIGHT INFO////////////////////////////////////////////-->
<div class="footer-bottom pt-5 pb-5">
<div class="container">
<div class="row text-center text-white">
<div class="col-12">
<div class="footer-bottom__copywright">
© Copywright 2021 <a href="#">Company Landing Page</a> | Created by <a href="#">PuneetSivananda</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--///////////////////BACK TO TOP BUTTON////////////////////////////////////////////-->
<a href="" class="shadow btn-primary rounded-circle back-to-top">
<i class="fas fa-chevron-up"></i>
</a>
<script src="/assests/js/bootstrap.bundle.js"></script>
<script src="/assests/vendors/js/glightbox.min.js"></script>
<script type="text/javascript">
const lightbox = GLightbox({
'href':"https://www.youtube.com/watch?v=iJKCj8uAHz8",
'type': 'video',
'source': 'youtube',
'width': 900,
"autoPlayVideos":true ,
});
</script>
</body>
</html>