-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfintech-apps.html
691 lines (635 loc) · 48.7 KB
/
fintech-apps.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Finscale: Open Source and Open banking platform</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Finscale is an open suite of financial technology platform that powers neobanks, challenger banks, fin techs and traditional banks with ease of development and scalability" />
<meta name="keywords" content="muellners, finscale, open banking, core banking, fintech platform" />
<meta name="author" content="Muellners Foundation" />
<meta name="email" content="info@muellners.org" />
<meta name="website" content="https://finscale.org" />
<meta name="Version" content="v1.0.0" />
<!-- default favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- added new favicon code -->
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- Icons -->
<link href="css/materialdesignicons.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v3.0.6/css/line.css">
<!-- Slider -->
<link rel="stylesheet" href="css/tiny-slider.css"/>
<!-- Main Css -->
<link href="css/style.css" rel="stylesheet" type="text/css" id="theme-opt" />
<link href="css/colors/default.css" rel="stylesheet" id="color-opt">
</head>
<body>
<!-- Loader -->
<!-- <div id="preloader">
<div id="status">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div> -->
<!-- Loader -->
<!-- Navbar STart -->
<header id="topnav" class="defaultscroll sticky">
<div class="container">
<!-- Logo container-->
<div>
<a class="logo" href="index.html">
<img src="images/logo-dark.png" height="90" alt="170">
</a>
</div>
<div class="buy-button">
<a href="developer.html" target="_blank">
<div class="btn btn-primary">Dev Portal</div>
</a>
</div><!--end login button-->
<!-- End Logo container-->
<div class="menu-extras">
<div class="menu-item">
<!-- Mobile menu toggle-->
<a class="navbar-toggle" id="isToggle" onclick="toggleMenu()">
<div class="lines">
<span></span>
<span></span>
<span></span>
</div>
</a>
<!-- End mobile menu toggle-->
</div>
</div>
<div id="navigation">
<!-- Navigation Menu-->
<ul class="navigation-menu">
<li class="has-submenu parent-menu-item"><a href="javascript:void(0)">Community </a><span class="submenu-arrow"></span>
<ul class="submenu">
<li><a href="aboutus.html" class="sub-menu-item">About Us</a></li>
<li><a href="history.html" class="sub-menu-item">History </a></li>
<li><a href="event.html" class="sub-menu-item">Events</a></li>
<!-- Standby Code <li><a href="team.html" class="sub-menu-item">Team</a></li>
Standby Code ends -->
</ul>
</li>
<li class="has-submenu parent-menu-item"> <a href="javascript:void(0)">Solutions</a><span class="menu-arrow"></span>
<ul class="submenu megamenu">
<li><ul>
<li><a href="payments.html" class="sub-menu-item">Payments</a></li>
<li><a href="integration.html" class="sub-menu-item">Integrations</a></li>
<li><a href="fintech-apps.html" class="sub-menu-item">Fintech Applications <span class="badge bg-warning ms-2">New</span></a></li>
<li><a href="money-app.html" class="sub-menu-item">Mobile Money Applications <span class="badge bg-warning ms-2">New</span></a></li>
<li><a href="CBS.html" class="sub-menu-item">CBS <span class="badge bg-warning ms-2">New</span></a></li>
<!-- Standby Code <li><a href="index-saas.html" class="sub-menu-item">Lending Management</a></li>
<li><a href="index-classic-saas.html" class="sub-menu-item">CBS</a></li>
<li><a href="index-videocall.html" class="sub-menu-item">Video Banking <span class="badge bg-danger">New</span></a></li>
<li><a href="index-crypto.html" class="sub-menu-item">Cryptocurrency</a></li>
</ul></li>
<li><ul>
<li><a href="index-blockchain.html" class="sub-menu-item">Blockchain <span class="badge bg-danger">New</span></a></li>
<li><a href="index-crypto-two.html" class="sub-menu-item">Cryptocurrency <span class="badge bg-danger">New</span></a></li>
<li><a href="index-task-management.html" class="sub-menu-item">Task Management </a></li>
<li><a href="index-email-inbox.html" class="sub-menu-item">Email Inbox </a></li>
<li><a href="index-insurance.html" class="sub-menu-item">Insurance</a></li>
<li><a href="index-single-product.html" class="sub-menu-item">Product</a></li>
</ul></li>
<li><ul>
<li><a href="index-portfolio.html" class="sub-menu-item">Portfolio</a></li>
<li><a href="index-customer.html" class="sub-menu-item">Customer</a></li>
<li><a href="index-software.html" class="sub-menu-item">Software</a></li>
Stand by Code ends -->
</ul></li>
</ul>
</li>
<li class="has-submenu parent-parent-menu-item"><a href="https://www.muellners.com/case-studies.html" target="_blank"> Case Studies</a><span class="menu-arrow"></span>
</li>
<li class="has-submenu parent-menu-item"> <a href="javascript:void(0)">Resources</a><span class="menu-arrow"></span>
<ul class="submenu">
<li><a href="https://muellners-1.gitbook.io/finscale/" target="_blank" class="sub-menu-item">Documentation</a></li>
<li><a href="faqs.html" class="sub-menu-item">FAQs</a></li>
<li><a href="developer.html" class="sub-menu-item">Dev Portal <span class="badge bg-warning ms-2">New</span></a></li>
<!-- Standby Code <li><a href="changelog.html" class="sub-menu-item">Changelog</a></li>
<li><a href="helpcenter-overview.html" class="sub-menu-item">Help Center</a></li> Standby Code ends-->
</ul>
</li>
</ul><!--end navigation menu-->
<div class="buy-menu-btn d-none">
<a href="developer.html" target="_blank" class="btn btn-primary">Dev Portal</a>
</div><!--end login button-->
</div><!--end navigation-->
</div><!--end container-->
</header><!--end header-->
<!-- Navbar End -->
<!-- Hero Start -->
<section class="bg-half-170 d-table w-100" id="home">
<div class="container">
<div class="row mt-5 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="title-heading">
<h1 class="heading mb-3">Manage all of you stuff using <span class="text-primary">Landrick.</span> app</h1>
<p class="para-desc text-muted">Launch your campaign and benefit from our expertise on designing and managing conversion centered bootstrap v5 html page.</p>
<div class="mt-4">
<a href="javascript:void(0)" class="btn btn-primary mt-2 me-2"><i class="uil uil-apple"></i> App Store</a>
<a href="javascript:void(0)" class="btn btn-outline-primary mt-2"><i class="uil uil-google-play"></i> Play Store</a>
</div>
</div>
</div><!--end col-->
<div class="col-lg-6 col-md-5 mt-4 pt-2 mt-sm-0 pt-sm-0">
<div class="text-md-end text-center ms-lg-4">
<img src="images/app/home.png" class="img-fluid" alt="">
</div>
</div>
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<!-- Hero End -->
<!-- Shape Start -->
<div class="position-relative">
<div class="shape overflow-hidden text-light">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 48H1437.5H2880V0H2160C1442.5 52 720 0 720 0H0V48Z" fill="currentColor"></path>
</svg>
</div>
</div>
<!--Shape End-->
<!-- Features Start -->
<section class="section bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title mb-4 pb-2">
<h4 class="title mb-4">App Features</h4>
<p class="text-muted para-desc mb-0 mx-auto">Start working with <span class="text-primary fw-bold">Landrick</span> that can provide everything you need to generate awareness, drive traffic, connect.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row justify-content-center align-items-center">
<div class="col-lg-8 col-md-8">
<div class="row mt-4 pt-2">
<div class="col-md-6 col-12">
<div class="d-flex features pt-4 pb-4">
<div class="icon text-center rounded-circle text-primary me-3 mt-2">
<i data-feather="monitor" class="fea icon-ex-md text-primary"></i>
</div>
<div class="flex-1">
<h4 class="title">Use On Any Device</h4>
<p class="text-muted para mb-0">Composed in a pseudo-Latin language which more or less pseudo-Latin language corresponds.</p>
</div>
</div>
</div><!--end col-->
<div class="col-md-6 col-12">
<div class="d-flex features pt-4 pb-4">
<div class="icon text-center rounded-circle text-primary me-3 mt-2">
<i data-feather="feather" class="fea icon-ex-md text-primary"></i>
</div>
<div class="flex-1">
<h4 class="title">Feather Icons</h4>
<p class="text-muted para mb-0">Composed in a pseudo-Latin language which more or less pseudo-Latin language corresponds.</p>
</div>
</div>
</div><!--end col-->
<div class="col-md-6 col-12">
<div class="d-flex features pt-4 pb-4">
<div class="icon text-center rounded-circle text-primary me-3 mt-2">
<i data-feather="eye" class="fea icon-ex-md text-primary"></i>
</div>
<div class="flex-1">
<h4 class="title">Retina Ready</h4>
<p class="text-muted para mb-0">Composed in a pseudo-Latin language which more or less pseudo-Latin language corresponds.</p>
</div>
</div>
</div><!--end col-->
<div class="col-md-6 col-12">
<div class="d-flex features pt-4 pb-4">
<div class="icon text-center rounded-circle text-primary me-3 mt-2">
<i data-feather="user-check" class="fea icon-ex-md text-primary"></i>
</div>
<div class="flex-1">
<h4 class="title">W3c Valid Code</h4>
<p class="text-muted para mb-0">Composed in a pseudo-Latin language which more or less pseudo-Latin language corresponds.</p>
</div>
</div>
</div><!--end col-->
<div class="col-md-6 col-12">
<div class="d-flex features pt-4 pb-4">
<div class="icon text-center rounded-circle text-primary me-3 mt-2">
<i data-feather="smartphone" class="fea icon-ex-md text-primary"></i>
</div>
<div class="flex-1">
<h4 class="title">Fully Responsive</h4>
<p class="text-muted para mb-0">Composed in a pseudo-Latin language which more or less pseudo-Latin language corresponds.</p>
</div>
</div>
</div><!--end col-->
<div class="col-md-6 col-12">
<div class="d-flex features pt-4 pb-4">
<div class="icon text-center rounded-circle text-primary me-3 mt-2">
<i data-feather="heart" class="fea icon-ex-md text-primary"></i>
</div>
<div class="flex-1">
<h4 class="title">Browser Compatibility</h4>
<p class="text-muted para mb-0">Composed in a pseudo-Latin language which more or less pseudo-Latin language corresponds.</p>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end col-->
<div class="col-lg-4 col-md-4 col-12 mt-4 pt-2 text-center text-md-end">
<img src="images/app/feature.png" class="img-fluid" alt="">
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<!-- Feature End -->
<!-- Showcase Start -->
<section class="section pt-0 bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title mb-4 pb-2">
<h4 class="title mb-4">How Can We Help You ?</h4>
<p class="text-muted para-desc mb-0 mx-auto">Start working with <span class="text-primary fw-bold">Landrick</span> that can provide everything you need to generate awareness, drive traffic, connect.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row align-items-center">
<div class="col-lg-5 col-md-6 mt-4 pt-2">
<img src="images/app/1.png" class="img-fluid mx-auto d-block" alt="">
</div><!--end col-->
<div class="col-lg-7 col-md-6 mt-4 pt-2">
<div class="section-title ms-lg-5">
<h4 class="title mb-4">Best <span class="text-primary">Landrick</span> App Partner For Your Life</h4>
<p class="text-muted">You can combine all the Landrick templates into a single one, you can take a component from the Application theme and use it in the Website.</p>
<ul class="list-unstyled text-muted">
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Digital Marketing Solutions for Tomorrow</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Our Talented & Experienced Marketing Agency</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Create your own skin to match your brand</li>
</ul>
<a href="javascript:void(0)" class="mt-3 h6 text-primary">Find Out More <i class="uil uil-angle-right-b"></i></a>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
<div class="container mt-100 mt-60">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title mb-4 pb-2">
<h4 class="title mb-4"><span class="text-primary">Landrick</span> App Showcase</h4>
<p class="text-muted para-desc mb-0 mx-auto">Start working with <span class="text-primary fw-bold">Landrick</span> that can provide everything you need to generate awareness, drive traffic, connect.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row justify-content-center">
<div class="col-lg-8 col-md-12 mt-4 pt-2 text-center">
<ul class="nav nav-pills nav-justified flex-column flex-sm-row rounded" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link rounded active" id="pills-cloud-tab" data-bs-toggle="pill" href="#pills-cloud" role="tab" aria-controls="pills-cloud" aria-selected="false">
<div class="text-center py-2">
<h6 class="mb-0">High Performance</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
<li class="nav-item">
<a class="nav-link rounded" id="pills-smart-tab" data-bs-toggle="pill" href="#pills-smart" role="tab" aria-controls="pills-smart" aria-selected="false">
<div class="text-center py-2">
<h6 class="mb-0">Creative Design</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
<li class="nav-item">
<a class="nav-link rounded" id="pills-apps-tab" data-bs-toggle="pill" href="#pills-apps" role="tab" aria-controls="pills-apps" aria-selected="false">
<div class="text-center py-2">
<h6 class="mb-0">24 / 7 Support</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
</ul><!--end nav pills-->
</div>
</div>
<div class="row">
<div class="col-12 mt-4 pt-2">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-cloud" role="tabpanel" aria-labelledby="pills-cloud-tab">
<div class="row align-items-center">
<div class="col-md-6">
<img src="images/app/2.png" class="img-fluid mx-auto d-block" alt="">
</div><!--end col-->
<div class="col-md-6 mt-4 mt-sm-0 pt-2 pt-sm-0">
<div class="section-title">
<h4 class="title mb-4"><i class="uil uil-angle-double-right text-primary"></i> High Performing Landing App</h4>
<p class="text-muted">You can combine all the Landrick templates into a single one, you can take a component from the Application theme and use it in the Website.</p>
<ul class="list-unstyled text-muted">
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Digital Marketing Solutions for Tomorrow</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Our Talented & Experienced Marketing Agency</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Create your own skin to match your brand</li>
</ul>
<a href="javascript:void(0)" class="mt-3 h6 text-primary">Find Out More <i class="uil uil-angle-right-b"></i></a>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end teb pane-->
<div class="tab-pane fade" id="pills-smart" role="tabpanel" aria-labelledby="pills-smart-tab">
<div class="row align-items-center">
<div class="col-md-6">
<img src="images/app/3.png" class="img-fluid mx-auto d-block" alt="">
</div><!--end col-->
<div class="col-md-6 mt-4 mt-sm-0 pt-2 pt-sm-0">
<div class="section-title">
<h4 class="title mb-4"><i class="uil uil-angle-double-right text-primary"></i> Creative Design and Clean Code</h4>
<p class="text-muted">You can combine all the Landrick templates into a single one, you can take a component from the Application theme and use it in the Website.</p>
<ul class="list-unstyled text-muted">
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Digital Marketing Solutions for Tomorrow</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Our Talented & Experienced Marketing Agency</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Create your own skin to match your brand</li>
</ul>
<a href="javascript:void(0)" class="mt-3 h6 text-primary">Find Out More <i class="uil uil-angle-right-b"></i></a>
</div>
</div> <!--end col-->
</div> <!--end row-->
</div><!--end teb pane-->
<div class="tab-pane fade" id="pills-apps" role="tabpanel" aria-labelledby="pills-apps-tab">
<div class="row align-items-center">
<div class="col-md-6">
<img src="images/app/4.png" class="img-fluid mx-auto d-block" alt="">
</div><!--end col-->
<div class="col-md-6 mt-4 mt-sm-0 pt-2 pt-sm-0">
<div class="section-title">
<h4 class="title mb-4"><i class="uil uil-angle-double-right text-primary"></i> 24 / 7 App Supports and Responsive</h4>
<p class="text-muted">You can combine all the Landrick templates into a single one, you can take a component from the Application theme and use it in the Website.</p>
<ul class="list-unstyled text-muted">
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Digital Marketing Solutions for Tomorrow</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Our Talented & Experienced Marketing Agency</li>
<li class="mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Create your own skin to match your brand</li>
</ul>
<a href="javascript:void(0)" class="mt-3 h6 text-primary">Find Out More <i class="uil uil-angle-right-b"></i></a>
</div>
</div> <!--end col-->
</div> <!--end row-->
</div><!--end teb pane-->
</div><!--end tab content-->
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<!-- Showcase End -->
<!-- Shape Start -->
<div class="position-relative">
<div class="shape overflow-hidden text-white">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 48H1437.5H2880V0H2160C1442.5 52 720 0 720 0H0V48Z" fill="currentColor"></path>
</svg>
</div>
</div>
<!--Shape End-->
<!-- Price Start -->
<section class="section">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title mb-4 pb-2">
<h4 class="title mb-4">Choose The Pricing Plan</h4>
<p class="text-muted para-desc mb-0 mx-auto">Start working with <span class="text-primary fw-bold">Landrick</span> that can provide everything you need to generate awareness, drive traffic, connect.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row align-items-center">
<div class="col-md-4 col-12 mt-4 pt-2">
<div class="card pricing-rates bg-light py-5 border-0 rounded text-center">
<div class="card-body">
<h6 class="title fw-bold text-uppercase text-primary mb-4">Free</h6>
<div class="d-flex justify-content-center mb-4">
<span class="h4 mb-0 mt-2">$</span>
<span class="price h1 mb-0">0</span>
<span class="h4 align-self-end mb-1">/mo</span>
</div>
<ul class="list-unstyled mb-0 ps-0">
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Full Access</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Enhanced Security</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Source Files</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>1 Domain Free</li>
</ul>
<a href="javascript:void(0)" class="btn btn-primary mt-4">Buy Now</a>
</div>
</div>
</div><!--end col-->
<div class="col-md-4 col-12 mt-4 pt-2">
<div class="card pricing-rates starter-plan bg-light py-5 border-0 rounded text-center">
<div class="card-body">
<h6 class="title fw-bold text-uppercase text-primary mb-4">Starter</h6>
<div class="d-flex justify-content-center mb-4">
<span class="h4 mb-0 mt-2">$</span>
<span class="price h1 mb-0">39</span>
<span class="h4 align-self-end mb-1">/mo</span>
</div>
<ul class="list-unstyled mb-0 ps-0">
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Full Access</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Source Files</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Free Appointments</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Enhanced Security</li>
</ul>
<a href="javascript:void(0)" class="btn btn-primary mt-4">Get Started</a>
</div>
</div>
</div><!--end col-->
<div class="col-md-4 col-12 mt-4 pt-2">
<div class="card pricing-rates bg-light py-5 border-0 rounded text-center">
<div class="card-body">
<h6 class="title fw-bold text-uppercase text-primary mb-4">Professional</h6>
<div class="d-flex justify-content-center mb-4">
<span class="h4 mb-0 mt-2">$</span>
<span class="price h1 mb-0">59</span>
<span class="h4 align-self-end mb-1">/mo</span>
</div>
<ul class="list-unstyled mb-0 ps-0">
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Full Access</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Enhanced Security</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>Source Files</li>
<li class="h6 text-muted mb-0"><span class="text-primary h5 me-2"><i class="uil uil-check-circle align-middle"></i></span>1 Domain Free</li>
</ul>
<a href="javascript:void(0)" class="btn btn-primary mt-4">Try It Now</a>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<!-- Price End -->
<!-- Testi n Download cta start -->
<section class="section pt-0">
<div class="container">
<div class="row">
<div class="col-12">
<div class="tiny-three-item">
<div class="tiny-slide">
<div class="card border-0 text-center">
<div class="card-body">
<img src="images/client/01.jpg" class="img-fluid avatar avatar-small rounded-circle mx-auto shadow" alt="">
<p class="text-muted mt-4">" It seems that only fragments of the original text remain in the Lorem Ipsum texts used today. "</p>
<h6 class="text-primary">- Thomas Israel</h6>
</div>
</div>
</div>
<div class="tiny-slide">
<div class="card border-0 text-center">
<div class="card-body">
<img src="images/client/02.jpg" class="img-fluid avatar avatar-small rounded-circle mx-auto shadow" alt="">
<p class="text-muted mt-4">" The most well-known dummy text is the 'Lorem Ipsum', which is said to have originated in the 16th century. "</p>
<h6 class="text-primary">- Carl Oliver</h6>
</div>
</div>
</div>
<div class="tiny-slide">
<div class="card border-0 text-center">
<div class="card-body">
<img src="images/client/03.jpg" class="img-fluid avatar avatar-small rounded-circle mx-auto shadow" alt="">
<p class="text-muted mt-4">" One disadvantage of Lorum Ipsum is that in Latin certain letters appear more frequently than others. "</p>
<h6 class="text-primary">- Barbara McIntosh</h6>
</div>
</div>
</div>
<div class="tiny-slide">
<div class="card border-0 text-center">
<div class="card-body">
<img src="images/client/04.jpg" class="img-fluid avatar avatar-small rounded-circle mx-auto shadow" alt="">
<p class="text-muted mt-4">" Thus, Lorem Ipsum has only limited suitability as a visual filler for German texts. "</p>
<h6 class="text-primary">- Jill Webb</h6>
</div>
</div>
</div>
<div class="tiny-slide">
<div class="card border-0 text-center">
<div class="card-body">
<img src="images/client/05.jpg" class="img-fluid avatar avatar-small rounded-circle mx-auto shadow" alt="">
<p class="text-muted mt-4">" There is now an abundance of readable dummy texts. These are usually used when a text is required. "</p>
<h6 class="text-primary">- Dean Tolle</h6>
</div>
</div>
</div>
<div class="tiny-slide">
<div class="card border-0 text-center">
<div class="card-body">
<img src="images/client/06.jpg" class="img-fluid avatar avatar-small rounded-circle mx-auto shadow" alt="">
<p class="text-muted mt-4">" According to most sources, Lorum Ipsum can be traced back to a text composed by Cicero. "</p>
<h6 class="text-primary">- Christa Smith</h6>
</div>
</div>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row mt-md-5 pt-md-3 mt-4 pt-2 mt-sm-0 pt-sm-0 justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<h4 class="title mb-4">Get the App now !</h4>
<p class="text-muted para-desc mx-auto">Start working with <span class="text-primary fw-bold">Landrick</span> that can provide everything you need to generate awareness, drive traffic, connect.</p>
<div class="mt-4">
<a href="javascript:void(0)" class="btn btn-primary m-1"><i class="uil uil-apple"></i> App Store</a>
<a href="javascript:void(0)" class="btn btn-outline-primary m-1"><i class="uil uil-google-play"></i> Play Store</a>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<!-- Testi n Download cta End -->
<!-- Shape Start -->
<div class="position-relative">
<div class="shape overflow-hidden text-footer">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 48H1437.5H2880V0H2160C1442.5 52 720 0 720 0H0V48Z" fill="currentColor"></path>
</svg>
</div>
</div>
<!--Shape End-->
<!-- Footer Start -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-4 col-12 mb-0 mb-md-4 pb-0 pb-md-2">
<a href="https://muellners.com" class="logo-footer">
<img src="images/muellnerslogo.png" height="24" alt="">
</a>
<p class="mt-4">Start working with Finscale, offered by Muellners Inc, a global tech capital company.</p>
<ul class="list-unstyled social-icon social mb-0 mt-4">
<li class="list-inline-item"><a href="https://www.facebook.com/muellners" class="rounded"><i data-feather="facebook" class="fea icon-sm fea-social"></i></a></li>
<li class="list-inline-item"><a href="https://www.instagram.com/muellnersllc/" class="rounded"><i data-feather="instagram" class="fea icon-sm fea-social"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/muellnersorg" class="rounded"><i data-feather="twitter" class="fea icon-sm fea-social"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/company/muellners" class="rounded"><i data-feather="linkedin" class="fea icon-sm fea-social"></i></a></li>
</ul><!--end icon-->
</div><!--end col-->
<div class="col-lg-2 col-md-4 col-12 mt-4 mt-sm-0 pt-2 pt-sm-0">
<h5 class="text-light footer-head">Relevant Links</h5>
<ul class="list-unstyled footer-list mt-4">
<li><a href="https://www.muellners.com/case-studies.html" target="_blank" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Case Studies</a></li>
<li><a href="event.html" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Upcoming Events</a></li>
<li><a href="history.html" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>History</a></li>
<li><a href="https://docs.muellners.info/privacy/cookie-policy" target="_blank" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Cookie Policy</a></li>
<li><a href="https://docs.muellners.info/privacy/privacy-policy" target="_blank" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Privacy Policy</a></li>
</ul>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 mt-sm-0 pt-2 pt-sm-0">
<h5 class="text-light footer-head">Resources</h5>
<ul class="list-unstyled footer-list mt-4">
<li><a href="https://muellners-1.gitbook.io/finscale/" target="_blank" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Documentation</a></li>
<li><a href="faqs.html" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>FAQs</a></li>
<li><a href="https://join.slack.com/share/zt-n459y51f-UzXcV3LAXbc~nC6neR4rdA" target="_blank" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Join Slack</a></li>
<li><a href="https://sourceforge.net/projects/finscale/lists/finscale-discuss" target="_blank" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Join Mailing List</a></li>
<li><a href="developer.html" class="text-foot"><i class="uil uil-angle-right-b me-1"></i>Dev Portal</a></li>
</ul>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 mt-sm-0 pt-2 pt-sm-0">
<h5 class="text-light footer-head">Mailing List</h5>
<p class="mt-4">Sign up and receive the latest tips via email.</p>
<form>
<div class="row">
<div class="col-lg-12">
<div class="foot-subscribe mb-3">
<label class="form-label">Write your email <span class="text-danger">*</span></label>
<div class="form-icon position-relative">
<i data-feather="mail" class="fea icon-sm icons"></i>
<input type="email" name="email" id="emailsubscribe" class="form-control ps-5 rounded" placeholder="Your email : " required>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="d-grid">
<input type="submit" id="submitsubscribe" name="send" class="btn btn-soft-primary" value="Subscribe">
</div>
</div>
</div>
</form>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</footer><!--end footer-->
<footer class="footer footer-bar">
<div class="container text-center">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="text-sm-start">
<p class="mb-0">© <script>document.write(new Date().getFullYear())</script> Maintained <i class="mdi mdi-heart text-danger"></i> by <a href="https://muellners.org/" target="_blank" class="text-reset">Muellners Foundation, Denmark</a> CVR:41008407</p>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</footer><!--end footer-->
<!-- Footer End -->
<!-- Removed Back to top -->
<!-- javascript -->
<script src="js/bootstrap.bundle.min.js"></script>
<!-- SLIDER -->
<script src="js/tiny-slider.js "></script>
<script src="js/tiny-slider-init.js "></script>
<!-- Icons -->
<script src="js/feather.min.js"></script>
<!-- Main Js -->
<script src="js/app.js"></script>
</body>
</html>