-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
694 lines (694 loc) · 38.5 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
<!DOCTYPE html>
<html>
<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=1.0, shrink-to-fit=no, user-scalable=no" />
<title>Landing Page</title>
<link rel="stylesheet" href="lib/bootstrap-5.0.0-alpha1-dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/component.css">
<link rel="stylesheet" type="text/css" href="lib/material-design-iconic-font/css/material-design-iconic-font.min.css">
<link rel="stylesheet" href="lib/aos/aos.css" />
<link rel="stylesheet" href="lib/particle/particle-css.css">
<link rel="stylesheet" href="lib/OwlCarousel2-2.3.4/dist/assets/owl.carousel.min.css">
<link rel="stylesheet" href="lib/OwlCarousel2-2.3.4/dist/assets/owl.theme.default.min.css">
</head>
<body>
<!-- Header -->
<header>
<div class="shadow">
<nav class="navbar navbar-expand-md">
<a class="navbar-brand">
<img src="imgs/logo.png" height="30" alt="image">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav3" aria-controls="navbarNav3" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon pt-1 text-white"><i class="zmdi zmdi-menu zmdi-hc-lg"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav3">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#home">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Particle JS -->
<section class="p-0" id="home">
<div id="particles-js">
</div>
<div class="header-1 col-md-8 col-lg-6 m-auto px-3">
<div class="h1 text-uppercase text-center">Lorem Ipsum</div>
<p class="text-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an printer took a galley of type and scrambled it to make a type specimen book.</p>
<div><button type="button" class="btn btn-df">Click Me</button></div>
</div>
</section>
<!-- Single block -->
<section class="sec-clr">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-md-6 mb-4 mb-md-0">
<img alt="image" class="img-fluid" src="./imgs/block-1.png">
</div>
<div class="col-12 col-md-6 col-lg-5 ml-md-auto text-left" data-aos="fade-left" data-aos-duration="500">
<h1>Lorem Ipsum</h1>
<p class="text-dark">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<p><button type="button" class="btn btn-2">Click Me</button></p>
</div>
</div>
</div>
</section>
<!-- Features -->
<section id="services">
<div class="container">
<div class="row text-center">
<div class="col-12">
<h1>Services</h1>
<p class="lead d-lg-block d-none col-8 m-auto">Take a look at what we love to do.</p>
</div>
</div>
<div class="row text-left mt-5">
<div class="col-12 col-md-4">
<div class="row" data-aos="zoom-out-down" data-aos-duration="1000">
<div class="col-3">
<img alt="image" class="services-icon" src="./imgs/icons/gift.svg">
</div>
<div class="col-9">
<h5>App Development</h5>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 pt-3 pt-sm-4 pt-md-0">
<div class="row" data-aos="zoom-out-down" data-aos-duration="1000">
<div class="col-3">
<img alt="image" class="services-icon" src="./imgs/icons/cloud.svg">
</div>
<div class="col-9">
<h5>Digital Marketing</h5>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 pt-3 pt-sm-4 pt-md-0">
<div class="row" data-aos="zoom-out-down" data-aos-duration="1000">
<div class="col-3">
<img alt="image" class="services-icon" src="./imgs/icons/map-pin.svg">
</div>
<div class="col-9">
<h5>Web Designing</h5>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.</p>
</div>
</div>
</div>
</div>
<div class="row text-left pt-3 pt-sm-4 pt-md-5">
<div class="col-12 col-md-4">
<div class="row" data-aos="zoom-out-down" data-aos-duration="1000">
<div class="col-3">
<img alt="image" class="services-icon" src="./imgs/icons/layers.svg">
</div>
<div class="col-9">
<h5>Product Development</h5>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 pt-3 pt-sm-4 pt-md-0">
<div class="row" data-aos="zoom-out-down" data-aos-duration="1000">
<div class="col-3">
<img alt="image" class="services-icon" src="./imgs/icons/life-buoy.svg">
</div>
<div class="col-9">
<h5>E-Commerce</h5>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 pt-3 pt-sm-4 pt-md-0">
<div class="row" data-aos="zoom-out-down" data-aos-duration="1000">
<div class="col-3">
<img alt="image" class="services-icon" src="./imgs/icons/layout.svg">
</div>
<div class="col-9">
<h5>Wordpress Development</h5>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Mastery blocks-->
<section class="sec-clr c-block">
<div class="container">
<div class="row text-center justify-content-center mb-4">
<div class="col-12">
<h1>Our Mastery In</h1>
</div>
</div>
<div class="row text-left">
<div class="col-12 col-md-8 m-auto col-lg-4" data-aos="flip-left" data-aos-duration="1000">
<div class="contact-box contact-touch text-center">
<img src="imgs/services/1.png" class="img-fluid mb-2" width="20%" alt="Design">
<h2>Pixel Perfect Design</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="col-12 col-md-8 m-auto col-lg-4 pt-5 pt-lg-0" data-aos="flip-left" data-aos-duration="1500">
<div class="contact-box contact-touch text-center">
<img src="imgs/services/2.png" class="img-fluid mb-2" width="20%" alt="web development">
<h2>Web Development</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="col-12 col-md-8 m-auto col-lg-4 pt-5 pt-lg-0" data-aos="flip-left" data-aos-duration="2000">
<div class="contact-box contact-touch text-center">
<img src="imgs/services/3.png" class="img-fluid mb-2" width="20%" alt="IT Services">
<h2>IT Services</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing -->
<section id="pricing">
<div class="container">
<div class="row text-center justify-content-center mb-5">
<div class="col-12">
<h1>
<span class="d-none d-lg-block">Get Instant Access to the Unbounce Platform</span>
<span class="d-lg-none">Pricing Models</span>
</h1>
<p class="lead d-lg-block d-none col-8 m-auto">Choose Your Plan and Get Started Now.</p>
</div>
</div>
<div class="row mt-5 align-items-top">
<div class="col-12 col-sm-10 col-md-8 m-auto col-lg-4 text-left" data-aos="fade-up" data-aos-duration="1000">
<div class="rounded shadow">
<div class="bg-dark p-3 text-center">
<h2 class="font-weight-light text-white">Startup</h2>
<p class="h2 text-white">$9.90</p>
</div>
<div class="bg-gray p-5 text-center">
<p><img alt="image" height="40" src="./imgs/icons/layers.svg"></p>
<p class="h4 clr">For small companies</p>
<p><br></p>
<p>10 hours of support</p>
<p>40MB of storage</p>
<p>Subdomain</p>
<p class="text-center pt-5"><a class="btn btn-2">Choose Plan</a></p>
</div>
</div>
</div>
<div class="col-12 col-sm-10 col-md-8 m-auto col-lg-4 text-left pt-4 pt-lg-0" data-aos="fade-up" data-aos-duration="1500">
<div class="rounded shadow">
<div class="bg-dark p-3 text-center">
<h2 class="font-weight-light text-white">Standard</h2>
<p class="h2 text-white">$19.90</p>
</div>
<div class="bg-gray p-5 text-center">
<p><img alt="image" height="40" src="./imgs/icons/monitor.svg"></p>
<p class="h4 clr">For medium companies</p>
<p><br></p>
<p>10 hours of support</p>
<p>40MB of storage</p>
<p>Subdomain</p>
<p class="text-center pt-5"><a class="btn btn-2">Choose Plan</a></p>
</div>
</div>
</div>
<div class="col-12 col-sm-10 col-md-8 m-auto col-lg-4 text-left pt-4 pt-lg-0" data-aos="fade-up" data-aos-duration="2000">
<div class="rounded shadow">
<div class="bg-dark p-3 text-center">
<h2 class="font-weight-light text-white">Business</h2>
<p class="h2 text-white">$29.90</p>
</div>
<div class="bg-gray p-5 text-center">
<p><img alt="image" height="40" src="./imgs/icons/package.svg"></p>
<p class="h4 clr">For large companies</p>
<p><br></p>
<p>10 hours of support</p>
<p>40MB of storage</p>
<p>Subdomain</p>
<p class="text-center pt-5"><a class="btn btn-2">Choose Plan</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="sec-clr">
<div class="container testi-slider">
<div class="owl-carousel owl-theme py-3">
<div class="row align-items-center justify-content-center">
<div class="col-10 col-sm-6 col-md-4 col-lg-3 col-xl-2 m-auto">
<img alt="image" class="img-fluid rounded-circle" src="imgs/people/1.png">
</div>
<div class="col-12 col-md-8 ml-auto mr-auto mt-4 mt-md-0">
<p class="text-dark">
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s."
</p>
<h4 class="mt-4 mt-lg-4">Lorem Ipsum</h4>
<p><em>Co-founder at Company</em></p>
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-10 col-sm-6 col-md-4 col-lg-3 col-xl-2 m-auto">
<img alt="image" class="img-fluid rounded-circle" src="./imgs/people/2.png">
</div>
<div class="col-12 col-md-8 ml-auto mr-auto mt-4 mt-md-0">
<p class="text-dark">
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s."
</p>
<h4 class="mt-4 mt-lg-4">Lorem Ipsum</h4>
<p><em>Co-founder at Company</em></p>
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-10 col-sm-6 col-md-4 col-lg-3 col-xl-2 m-auto">
<img alt="image" class="img-fluid rounded-circle" src="./imgs/people/3.png">
</div>
<div class="col-12 col-md-8 ml-auto mr-auto mt-4 mt-md-0">
<p class="text-dark">
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s."
</p>
<h4 class="mt-4 mt-lg-4">Lorem Ipsum</h4>
<p><em>Co-founder at Company</em></p>
</div>
</div>
</div>
</div>
</section>
<!-- Teams -->
<section class="mb-0 pb-5">
<div class="container">
<div class="row text-center justify-content-center mb-5">
<div class="col-12">
<h1>Meet The Team</h1>
<p class="lead d-lg-block d-none col-8 m-auto">These people are the reason for our success and stainless reputation.<br>They have years of experience and absolute dedication to what they do.</p>
</div>
</div>
<div class="row justify-content-center text-left">
<div class="col-sm-6 mb-5">
<div class="row">
<div class="col-4">
<img alt="image" class="img-fluid rounded" src="./imgs/people/4.png">
</div>
<div class="col-8" data-aos="fade-up" data-aos-duration="2000">
<h3 class="clr">Jack Brewer</h3>
<p class="lead">Co-founder, CEO</p>
<p class="pos-4">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
<div class="col-sm-6 mb-5">
<div class="row">
<div class="col-4">
<img alt="image" class="img-fluid rounded" src="./imgs/people/5.png">
</div>
<div class="col-8" data-aos="fade-up" data-aos-duration="1700">
<h3 class="clr">Tim Smit</h3>
<p class="lead ">Designer</p>
<p class="pos-4">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
</div>
<div class="row-70"></div>
<div class="row justify-content-center text-left">
<div class="col-sm-6 mb-5">
<div class="row">
<div class="col-4">
<img alt="image" class="img-fluid rounded" src="./imgs/people/6.png">
</div>
<div class="col-8" data-aos="fade-up" data-aos-duration="1700">
<h3 class="clr">Jonny Den</h3>
<p class="lead ">Developer</p>
<p class="pos-4">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
<div class="col-sm-6 mb-5">
<div class="row">
<div class="col-4">
<img alt="image" class="img-fluid rounded" src="./imgs/people/7.png">
</div>
<div class="col-8" data-aos="fade-up" data-aos-duration="1700">
<h3 class="clr">Nicky Jhones</h3>
<p class="lead ">Sales and Marketing</p>
<p class="pos-4">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Counter -->
<section class="sec-clr">
<div class="container m-auto row">
<div class="col-lg-3 col-md-6 col-6 text-center border-right border-secondary">
<h3>
<i class="zmdi zmdi-thumb-up zmdi-hc-lg mb-3"></i>
<div class="statistic mb-1">100</div>
<div>Completed</div>
</h3>
</div>
<div class="col-lg-3 col-md-6 col-6 text-center border-right border-secondary bdr-1">
<h3>
<i class="zmdi zmdi-accounts zmdi-hc-lg mb-3"></i>
<div class="statistic mb-1">212</div>
<div>Customers</div>
</h3>
</div>
<div class="col-lg-3 col-md-6 col-6 text-center border-right border-secondary">
<h3>
<i class="zmdi zmdi-mood zmdi-hc-lg mb-3"></i>
<div class="statistic mb-1">190</div>
<div>Smiles</div>
</h3>
</div>
<div class="col-lg-3 col-md-6 col-6 text-center">
<h3>
<i class="zmdi zmdi-favorite zmdi-hc-lg mb-3"></i>
<div class="statistic mb-1">53</div>
<div>Awards</div>
</h3>
</div>
</div>
</section>
<!-- Blog blocks -->
<section>
<div class="container block-slider">
<div class="row owl-carousel owl-theme py-3">
<div class="col-12" data-aos="zoom-in" data-aos-duration="1000">
<h2><i class="zmdi zmdi-cloud-outline-alt mr-2"></i>Lorem Ipsum</h2>
<p class="lead">Hello World</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<p><button type="button" class="btn btn-2">Click Me</button></p>
</div>
<div class="col-12" data-aos="zoom-in" data-aos-duration="1500">
<h2><i class="zmdi zmdi-devices mr-2"></i>Lorem Ipsum</h2>
<p class="lead">Hello World</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<p><button type="button" class="btn btn-2">Click Me</button></p>
</div>
<div class="col-12" data-aos="zoom-in" data-aos-duration="2000">
<h2><i class="zmdi zmdi-airplay mr-2"></i>Lorem Ipsum</h2>
<p class="lead">Hello World</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<p><button type="button" class="btn btn-2">Click Me</button></p>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section class="sec-clr" id="faqs">
<div class="container">
<div class="row text-center mb-5">
<div class="col-12">
<h1>FAQ</h1>
<p class="lead d-lg-block d-none col-8 m-auto text-dark">Frequently Asked Questions</p>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-block text-left" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What is Lorem Ipsum?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Why should I use Lorem Ipsum?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
How can I use Lorem Ipsum?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Who will see my updates?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFive">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
How can I avail the discounts?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header" id="headingSix">
<h2 class="mb-0">
<button class="btn btn-block text-left" type="button" data-toggle="collapse" data-target="#collapseSix" aria-expanded="true" aria-controls="collapseSix">
How do I contact the company?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseSix" class="collapse show" aria-labelledby="headingSix" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingSeven">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven">
How do I create an account?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseSeven" class="collapse" aria-labelledby="headingSeven" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingEight">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseEight" aria-expanded="false" aria-controls="collapseEight">
What is the refund policy?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseEight" class="collapse" aria-labelledby="headingEight" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingNine">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseNine" aria-expanded="false" aria-controls="collapseNine">
How can I make a payment?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseNine" class="collapse" aria-labelledby="headingNine" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTen">
<h2 class="mb-0">
<button class="btn btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseTen" aria-expanded="false" aria-controls="collapseTen">
How do I close my account?<i class="zmdi zmdi-plus-square zmdi-hc-lg mt-1 float-right"></i>
</button>
</h2>
</div>
<div id="collapseTen" class="collapse" aria-labelledby="headingTen" data-parent="#accordionExample">
<div class="card-body text-dark">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="c-block" id="contact">
<div class="container">
<div class="row py-5">
<div class="col-lg-9 m-auto">
<div class="contact-box contact-touch">
<div class="row text-center justify-content-center">
<div class="col-12 col-md-9 col-lg-7">
<h1 class="clr">Contact Us</h1>
<p class="">It is a long established fact that a reader will be distracted by the readable content when looking at its layout.</p>
</div>
</div>
<div class="row justify-content-center pt-4">
<div class="col-12 col-md-8">
<form>
<div class="row">
<div class="col-12 col-md">
<input type="text" class="form-control" placeholder="Name">
</div>
<div class="col-12 col-md mt-4 mt-md-0">
<input type="text" class="form-control" placeholder="Email">
</div>
</div>
<div class="row mt-4">
<div class="col">
<input type="email" class="form-control" placeholder="Subject">
</div>
</div>
<div class="row mt-4">
<div class="col">
<textarea class="form-control" name="message" rows="3" placeholder="How can we help?"></textarea>
</div>
</div>
<div class="row mt-4">
<div class="col text-center">
<button type="button" class="btn btn-2">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Brand Slider -->
<section class="bg-dark py-0">
<div class="brand-slider">
<div class="owl-carousel owl-theme py-3">
<div> <img alt="image" height="40" class="ml-3 mr-3 mb-2 mt-2" src="./imgs/brands/adobe.svg"> </div>
<div> <img alt="image" height="40" class="ml-3 mr-3 mb-2 mt-2" src="./imgs/brands/amazon.svg"> </div>
<div> <img alt="image" height="40" class="ml-3 mr-3 mb-2 mt-2" src="./imgs/brands/ebay.svg"> </div>
<div> <img alt="image" height="40" class="ml-3 mr-3 mb-2 mt-2" src="./imgs/brands/samsung.svg"> </div>
<div> <img alt="image" height="40" class="ml-3 mr-3 mb-2 mt-2" src="./imgs/brands/orange.svg"> </div>
<div> <img alt="image" height="40" class="ml-3 mr-3 mb-2 mt-2" src="./imgs/brands/salesforce.svg"> </div>
</div>
</div>
</section>
<!-- Footers -->
<footer class="footer-df pt-5">
<div class="container pb-3">
<div class="row align-items-top text-md-left">
<div class="col-12 col-sm-6 col-md-4">
<div class="text-white small">
<span class="h4">Lorem Ipsum</span><br>
<span>Street Address 100</span><br>
<span>Jack Danell</span><br>
<span>+12 345 678 9125</span>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 mt-4 mt-sm-0">
<div class="text-white small">
<span class="h4">Lorem Ipsum</span><br>
<span>Street Address 100</span><br>
<span>Jhonny Kade</span><br>
<span>+12 345 678 9125</span>
</div>
</div>
<div class="col-12 col-md-4 mt-4 mt-md-0 text-md-left">
<div class="text-white small">
<span class="h4">About us</span><br>
<span>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</span>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col text-center small">
© 2020 Lorem Ipsum. All Rights Reserved
</div>
</div>
</div>
<div class="nav-social">
<ul class="mb-0">
<li>
<a><i class="zmdi zmdi-facebook"></i></a>
</li>
<li>
<a><i class="zmdi zmdi-linkedin-box"></i></a>
</li>
<li>
<a><i class="zmdi zmdi-github"></i></a>
</li>
</ul>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="lib/bootstrap-5.0.0-alpha1-dist/js/bootstrap.min.js"></script>
<script src="lib/aos/aos.js"></script>
<script src="lib/particle/particles.min.js"></script>
<script src="lib/particle/particle-js.js"></script>
<script src="lib/countUp.min.js"></script>
<script src="lib/OwlCarousel2-2.3.4/dist/owl.carousel.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>