-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlanding-financial.html
1258 lines (1176 loc) · 64.6 KB
/
landing-financial.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Silicon | Financial Consulting Landing</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Silicon - Multipurpose Technology Bootstrap Template">
<meta name="keywords" content="bootstrap, business, creative agency, mobile app showcase, saas, fintech, finance, online courses, software, medical, conference landing, services, e-commerce, shopping cart, multipurpose, shop, ui kit, marketing, seo, landing, blog, portfolio, html5, css3, javascript, gallery, slider, touch, creative">
<meta name="author" content="Createx Studio">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon and Touch Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#6366f1">
<link rel="shortcut icon" href="assets/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#080032">
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Vendor Styles -->
<link rel="stylesheet" media="screen" href="assets/vendor/boxicons/css/boxicons.min.css"/>
<link rel="stylesheet" media="screen" href="assets/vendor/swiper/swiper-bundle.min.css"/>
<!-- Main Theme Styles + Bootstrap -->
<link rel="stylesheet" media="screen" href="assets/css/theme.min.css">
<!-- Page loading styles -->
<style>
.page-loading {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .4s .2s ease-in-out;
transition: all .4s .2s ease-in-out;
background-color: #fff;
opacity: 0;
visibility: hidden;
z-index: 9999;
}
.dark-mode .page-loading {
background-color: #0b0f19;
}
.page-loading.active {
opacity: 1;
visibility: visible;
}
.page-loading-inner {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out;
opacity: 0;
}
.page-loading.active > .page-loading-inner {
opacity: 1;
}
.page-loading-inner > span {
display: block;
font-size: 1rem;
font-weight: normal;
color: #9397ad;
}
.dark-mode .page-loading-inner > span {
color: #fff;
opacity: .6;
}
.page-spinner {
display: inline-block;
width: 2.75rem;
height: 2.75rem;
margin-bottom: .75rem;
vertical-align: text-bottom;
border: .15em solid #b4b7c9;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: spinner .75s linear infinite;
animation: spinner .75s linear infinite;
}
.dark-mode .page-spinner {
border-color: rgba(255,255,255,.4);
border-right-color: transparent;
}
@-webkit-keyframes spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
<!-- Theme mode -->
<script>
let mode = window.localStorage.getItem('mode'),
root = document.getElementsByTagName('html')[0];
if (mode !== null && mode === 'dark') {
root.classList.add('dark-mode');
} else {
root.classList.remove('dark-mode');
}
</script>
<!-- Page loading scripts -->
<script>
(function () {
window.onload = function () {
const preloader = document.querySelector('.page-loading');
preloader.classList.remove('active');
setTimeout(function () {
preloader.remove();
}, 1000);
};
})();
</script>
</head>
<!-- Body -->
<body>
<!-- Page loading spinner -->
<div class="page-loading active">
<div class="page-loading-inner">
<div class="page-spinner"></div><span>Loading...</span>
</div>
</div>
<!-- Page wrapper for sticky footer -->
<!-- Wraps everything except footer to push footer to the bottom of the page if there is little content -->
<main class="page-wrapper">
<!-- Navbar -->
<!-- Remove "navbar-sticky" class to make navigation bar scrollable with the page -->
<header class="header navbar navbar-expand-lg bg-light navbar-sticky">
<div class="container px-3">
<a href="index.html" class="navbar-brand pe-3">
<img src="assets/img/logo.svg" width="47" alt="Silicon">
Silicon
</a>
<div id="navbarNav" class="offcanvas offcanvas-end">
<div class="offcanvas-header border-bottom">
<h5 class="offcanvas-title">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle active" data-bs-toggle="dropdown" aria-current="page">Landings</a>
<div class="dropdown-menu p-0">
<div class="d-lg-flex">
<div class="mega-dropdown-column bg-position-center bg-repeat-0 bg-size-cover rounded-3 rounded-end-0" style="background-image: url(assets/img/landings.jpg); margin: -1px;"></div>
<div class="mega-dropdown-column pt-lg-3 pb-lg-4">
<ul class="list-unstyled mb-0">
<li><a href="index.html" class="dropdown-item">Template Intro Page</a></li>
<li><a href="landing-mobile-app-showcase-v1.html" class="dropdown-item">Mobile App Showcase v.1</a></li>
<li><a href="landing-mobile-app-showcase-v2.html" class="dropdown-item">Mobile App Showcase v.2</a></li>
<li><a href="landing-product.html" class="dropdown-item d-flex align-items-center">Product Landing<span class="badge bg-success ms-2">New</span></a></li>
<li><a href="landing-startup.html" class="dropdown-item d-flex align-items-center">Startup</a></li>
<li><a href="landing-saas-v1.html" class="dropdown-item">SaaS v.1</a></li>
<li><a href="landing-saas-v2.html" class="dropdown-item">SaaS v.2</a></li>
<li><a href="landing-saas-v3.html" class="dropdown-item">SaaS v.3</a></li>
</ul>
</div>
<div class="mega-dropdown-column pt-lg-3 pb-lg-4">
<ul class="list-unstyled mb-0">
<li><a href="landing-financial.html" class="dropdown-item">Financial Consulting</a></li>
<li><a href="landing-online-courses.html" class="dropdown-item">Online Courses</a></li>
<li><a href="landing-medical.html" class="dropdown-item">Medical</a></li>
<li><a href="landing-software-company.html" class="dropdown-item">IT (Software) Company</a></li>
<li><a href="landing-conference.html" class="dropdown-item">Conference</a></li>
<li><a href="landing-digital-agency.html" class="dropdown-item">Digital Agency</a></li>
<li><a href="landing-blog.html" class="dropdown-item">Blog Homepage</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Pages</a>
<div class="dropdown-menu">
<div class="d-lg-flex pt-lg-3">
<div class="mega-dropdown-column">
<h6 class="px-3 mb-2">About</h6>
<ul class="list-unstyled mb-3">
<li><a href="about-v1.html" class="dropdown-item py-1">About v.1</a></li>
<li><a href="about-v2.html" class="dropdown-item py-1">About v.2</a></li>
<li><a href="about-v3.html" class="dropdown-item py-1">About v.3</a></li>
</ul>
<h6 class="px-3 mb-2">Blog</h6>
<ul class="list-unstyled mb-3">
<li><a href="blog-list-with-sidebar.html" class="dropdown-item py-1">List View with Sidebar</a></li>
<li><a href="blog-grid-with-sidebar.html" class="dropdown-item py-1">Grid View with Sidebar</a></li>
<li><a href="blog-list-no-sidebar.html" class="dropdown-item py-1">List View no Sidebar</a></li>
<li><a href="blog-grid-no-sidebar.html" class="dropdown-item py-1">Grid View no Sidebar</a></li>
<li><a href="blog-simple-feed.html" class="dropdown-item py-1">Simple Feed</a></li>
<li><a href="blog-single.html" class="dropdown-item py-1">Single Post</a></li>
<li><a href="blog-podcast.html" class="dropdown-item py-1">Podcast</a></li>
</ul>
</div>
<div class="mega-dropdown-column">
<h6 class="px-3 mb-2">Portfolio</h6>
<ul class="list-unstyled mb-3">
<li><a href="portfolio-grid.html" class="dropdown-item py-1">Grid View</a></li>
<li><a href="portfolio-list.html" class="dropdown-item py-1">List View</a></li>
<li><a href="portfolio-slider.html" class="dropdown-item py-1">Slider View</a></li>
<li><a href="portfolio-courses.html" class="dropdown-item py-1">Courses</a></li>
<li><a href="portfolio-single-project.html" class="dropdown-item py-1">Single Project</a></li>
<li><a href="portfolio-single-course.html" class="dropdown-item py-1">Single Course</a></li>
</ul>
<h6 class="px-3 mb-2">Services</h6>
<ul class="list-unstyled mb-3">
<li><a href="services-v1.html" class="dropdown-item py-1">Services v.1</a></li>
<li><a href="services-v2.html" class="dropdown-item py-1">Services v.2</a></li>
<li><a href="services-single-v1.html" class="dropdown-item py-1">Service Details v.1</a></li>
<li><a href="services-single-v2.html" class="dropdown-item py-1">Service Details v.2</a></li>
</ul>
</div>
<div class="mega-dropdown-column">
<h6 class="px-3 mb-2">Pricing</h6>
<ul class="list-unstyled mb-3">
<li><a href="pricing.html" class="dropdown-item py-1">Pricing Page</a></li>
</ul>
<h6 class="px-3 mb-2">Contacts</h6>
<ul class="list-unstyled mb-3">
<li><a href="contacts-v1.html" class="dropdown-item py-1">Contacts v.1</a></li>
<li><a href="contacts-v2.html" class="dropdown-item py-1">Contacts v.2</a></li>
<li><a href="contacts-v3.html" class="dropdown-item py-1">Contacts v.3</a></li>
</ul>
<h6 class="px-3 mb-2">Specialty</h6>
<ul class="list-unstyled">
<li><a href="404-v1.html" class="dropdown-item py-1">404 Error v.1</a></li>
<li><a href="404-v2.html" class="dropdown-item py-1">404 Error v.2</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Account</a>
<ul class="dropdown-menu">
<li><a href="account-details.html" class="dropdown-item">Account Details</a></li>
<li><a href="account-security.html" class="dropdown-item">Security</a></li>
<li><a href="account-notifications.html" class="dropdown-item">Notifications</a></li>
<li><a href="account-messages.html" class="dropdown-item">Messages</a></li>
<li><a href="account-saved-items.html" class="dropdown-item">Saved Items</a></li>
<li><a href="account-collections.html" class="dropdown-item">My Collections</a></li>
<li><a href="account-payment.html" class="dropdown-item">Payment Details</a></li>
<li><a href="account-signin.html" class="dropdown-item">Sign In</a></li>
<li><a href="account-signup.html" class="dropdown-item">Sign Up</a></li>
</ul>
</li>
<li class="nav-item">
<a href="components/typography.html" class="nav-link">UI Kit</a>
</li>
<li class="nav-item">
<a href="docs/getting-started.html" class="nav-link">Docs</a>
</li>
</ul>
</div>
<div class="offcanvas-header border-top">
<a href="https://themes.getbootstrap.com/product/silicon-business-technology-template-ui-kit/" class="btn btn-primary w-100" target="_blank" rel="noopener">
<i class="bx bx-cart fs-4 lh-1 me-1"></i>
Buy now
</a>
</div>
</div>
<div class="form-check form-switch mode-switch pe-lg-1 ms-auto me-4" data-bs-toggle="mode">
<input type="checkbox" class="form-check-input" id="theme-mode">
<label class="form-check-label d-none d-sm-block" for="theme-mode">Light</label>
<label class="form-check-label d-none d-sm-block" for="theme-mode">Dark</label>
</div>
<button type="button" class="navbar-toggler" data-bs-toggle="offcanvas" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a href="https://themes.getbootstrap.com/product/silicon-business-technology-template-ui-kit/" class="btn btn-primary btn-sm fs-sm rounded d-none d-lg-inline-flex" target="_blank" rel="noopener">
<i class="bx bx-cart fs-5 lh-1 me-1"></i>
Buy now
</a>
</div>
</header>
<!-- Hero -->
<section class="pt-lg-4 mt-lg-3">
<div class="position-relative overflow-hidden">
<!-- Image -->
<div class="container-fluid position-relative position-lg-absolute top-0 start-0 h-100">
<div class="row h-100 me-n4 me-n2">
<div class="col-lg-7 position-relative">
<div class="d-none d-sm-block d-lg-none" style="height: 400px;"></div>
<div class="d-sm-none" style="height: 300px;"></div>
<div class="jarallax position-absolute top-0 start-0 w-100 h-100 rounded-3 rounded-start-0 overflow-hidden" data-jarallax data-speed="0.3">
<div class="jarallax-img" style="background-image: url(assets/img/landing/financial/hero-img.jpg);"></div>
</div>
</div>
</div>
</div>
<div class="container position-relative zindex-5 pt-lg-5 px-0 px-lg-3">
<div class="row pt-lg-5 mx-n4 mx-lg-n3">
<div class="col-xl-6 col-lg-7 offset-lg-5 offset-xl-6 pb-5">
<!-- Card -->
<div class="card bg-dark border-light overflow-hidden py-4 px-2 p-sm-4">
<span class="position-absolute top-0 start-0 w-100 h-100" style="background-color: rgba(255,255,255,.05);"></span>
<div class="card-body position-relative zindex-5">
<p class="fs-xl fw-bold text-primary text-uppercase mb-3">Power your business</p>
<h1 class="display-5 text-light pb-3 mb-3">Clever Financial Consulting</h1>
<p class="fs-lg text-light opacity-70 mb-5">Helping our clients meet their financial needs for more than 10 years. We offer you the full spectrum of global financial services.</p>
<div class="d-flex flex-column flex-sm-row">
<a href="#" class="btn btn-primary shadow-primary btn-lg mb-3 mb-sm-0 me-sm-4">Get started</a>
<a href="#" class="btn btn-outline-light btn-lg">
Who we are
<i class="bx bx-right-arrow-alt fs-4 lh-1 ms-2 me-n1"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-xxl-3 col-lg-4 offset-lg-8 offset-xxl-9 pt-lg-5 mt-xxl-5">
<!-- Contacts (List) -->
<ul class="list-unstyled mb-0 px-4 px-lg-0">
<li class="d-flex align-items-center pb-1 mb-2">
<i class="bx bx-map fs-xl text-primary me-2"></i>
6391 Elgin St. Celina, Delaware 10299
</li>
<li class="d-flex align-items-center pb-1 mb-2">
<i class="bx bx-envelope fs-xl text-primary me-2"></i>
<a href="mailto:email@example.com" class="nav-link fw-normal p-0">email@example.com</a>
</li>
<li class="d-flex align-items-center pb-1 mb-2">
<i class="bx bx-phone-call fs-xl text-primary me-2"></i>
<a href="tel:4065550120" class="nav-link fw-normal p-0">(406) 555-0120</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Services (Turns into carousel on narrow screens) -->
<section class="container py-5 mt-md-3 my-lg-5">
<h2 class="h1 pt-xl-2 pb-4 mb-2 mb-lg-3">Our Services</h2>
<div class="swiper" data-swiper-options='{
"slidesPerView": 1,
"spaceBetween": 24,
"autoHeight": true,
"pagination": {
"el": ".swiper-pagination",
"clickable": true
},
"breakpoints": {
"500": {
"slidesPerView": 2
},
"991": {
"slidesPerView": 3
}
}
}'>
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide">
<a href="#"><img src="assets/img/landing/financial/services/01.jpg" class="rounded-3" alt="Image"></a>
<div class="pt-4">
<h3 class="h4">Consulting Services</h3>
<ul class="list-unstyled">
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Ut auctor egestas leo arcu
</li>
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Adipiscing velit enim nec id etiam
</li>
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Imperdiet quis suspendisse imperdiet
</li>
</ul>
</div>
<a href="#" class="btn btn-link px-0">
Learn more
<i class="bx bx-right-arrow-alt fs-xl ms-2"></i>
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#"><img src="assets/img/landing/financial/services/02.jpg" class="rounded-3" alt="Image"></a>
<div class="pt-4">
<h3 class="h4">Banking Expertise</h3>
<ul class="list-unstyled">
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Quis euismod lacus, at consectetur porta
</li>
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Dictumst enim lectus dis eget non metus cras
</li>
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Risus volutpat tellus hendrerit nibh
</li>
</ul>
</div>
<a href="#" class="btn btn-link px-0">
Learn more
<i class="bx bx-right-arrow-alt fs-xl ms-2"></i>
</a>
</div>
<!-- Item -->
<div class="swiper-slide">
<a href="#"><img src="assets/img/landing/financial/services/03.jpg" class="rounded-3" alt="Image"></a>
<div class="pt-4">
<h3 class="h4">Product Solutions</h3>
<ul class="list-unstyled">
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Sit scelerisque venenatis, at orci
</li>
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Felis nascetur tempus nibh dictum tristique mus
</li>
<li class="d-flex align-items-center fs-sm mb-2">
<i class="bx bx-check fs-xl text-primary me-2"></i>
Consectetur neque vestibulum, vel ut fermentum
</li>
</ul>
</div>
<a href="#" class="btn btn-link px-0">
Learn more
<i class="bx bx-right-arrow-alt fs-xl ms-2"></i>
</a>
</div>
</div>
<!-- Pagination (bullets) -->
<div class="swiper-pagination position-relative d-lg-none mt-5"></div>
</div>
</section>
<!-- COVID banner -->
<section class="container">
<div class="card bg-white border-primary shadow-sm px-4 px-lg-0">
<div class="row align-items-center py-3">
<div class="col-xl-5 col-md-6 offset-lg-1 text-center text-md-start py-4 py-lg-5">
<h2 class="h1">Our Response to COVID-19</h2>
<h3 class="h4 text-primary">Get remote financial consulting help</h3>
<p class="mb-4 mb-lg-5">At ultricies id non quisque integer eget velit. Facilisis enim malesuada metus, risus amet ultricies. Magna aliquam id nunc ut eu.</p>
<a href="#" class="btn btn-primary">Find out more</a>
</div>
<div class="col-xl-6 col-lg-5 col-md-6">
<lottie-player class="mx-auto" src="assets/json/animation-financial-landing.json" background="transparent" speed="1" loop autoplay style="max-width: 416px;"></lottie-player>
</div>
</div>
</div>
</section>
<!-- Features (Icon boxes) -->
<section class="container py-5 my-2 my-md-4 my-lg-5">
<h2 class="h1 text-center pt-1 pt-xl-3 mb-lg-4">Why Us?</h2>
<div class="swiper mx-n2" data-swiper-options='{
"slidesPerView": 1,
"spaceBetween": 8,
"pagination": {
"el": ".swiper-pagination",
"clickable": true
},
"breakpoints": {
"500": {
"slidesPerView": 2
},
"800": {
"slidesPerView": 3
},
"1200": {
"slidesPerView": 4
}
}
}'>
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide h-auto py-3">
<div class="card h-100 card-body card-hover mx-2">
<i class="bx bx-rocket display-5 fw-normal card-icon" style="color: #b4b7c9;"></i>
<h3 class="h5 pt-3 pb-1 mb-2">Innovative Solutions</h3>
<p class="mb-0">Massa enim libero dictumst consectetur in convallis. Lobortis cursus mi a magna ullamcorper consectetur.</p>
</div>
</div>
<!-- Item -->
<div class="swiper-slide h-auto py-3">
<div class="card h-100 card-body card-hover mx-2">
<i class="bx bx-like display-5 fw-normal card-icon" style="color: #b4b7c9;"></i>
<h3 class="h5 pt-3 pb-1 mb-2">Success Guarantee</h3>
<p class="mb-0">At ultricies id non quisque integer eget velit. Facilisis enim malesuada metus, risus amet ultricies. Magna aliquam id nunc.</p>
</div>
</div>
<!-- Item -->
<div class="swiper-slide h-auto py-3">
<div class="card h-100 card-body card-hover mx-2">
<i class="bx bx-time-five display-5 fw-normal card-icon" style="color: #b4b7c9;"></i>
<h3 class="h5 pt-3 pb-1 mb-2">On Time Service</h3>
<p class="mb-0">Nisi augue at ridiculus odio ullamcorper in id. In bibendum diam nunc dignissim magna morbi mattis enim.</p>
</div>
</div>
<!-- Item -->
<div class="swiper-slide h-auto py-3">
<div class="card h-100 card-body card-hover mx-2">
<i class="bx bx-group display-5 fw-normal card-icon" style="color: #b4b7c9;"></i>
<h3 class="h5 pt-3 pb-1 mb-2">Professional Team</h3>
<p class="mb-0">Pellentesque rhoncus viverra vestibulum, purus purus quisque quisque sed. Cras vestibulum facilisis dictumst consequat.</p>
</div>
</div>
</div>
<!-- Pagination (bullets) -->
<div class="swiper-pagination position-relative d-xl-none pt-3 mt-4"></div>
</div>
<div class="d-flex flex-column flex-sm-row justify-content-center pt-3 pt-sm-4">
<a href="#" class="btn btn-primary shadow-primary btn-lg">Request a price</a>
</div>
</section>
<!-- Industries (Slider) -->
<section class="container pt-xl-3 pb-5">
<h2 class="h1 text-center text-lg-start pb-4 mb-1 mb-lg-3">Industries We Serve</h2>
<div class="row pb-2 pb-md-4 pb-lg-5">
<div class="col-xl-4 col-lg-5 d-flex flex-column order-2 order-lg-1">
<!-- Swiper slider -->
<div class="swiper mx-0 mb-md-n2 mb-xxl-n3" data-swiper-options='{
"spaceBetween": 30,
"loop": true,
"tabs": true,
"autoHeight": true,
"navigation": {
"prevEl": "#prev-industry",
"nextEl": "#next-industry"
}
}'>
<div class="swiper-wrapper text-center text-lg-start">
<!-- Item -->
<div class="swiper-slide" data-swiper-tab="#industry-1">
<h3 class="h4 mb-4">
<a href="#" class="nav-link justify-content-center justify-content-lg-start fw-bold p-0">
Transportation & Logistics
<i class="bx bx-right-arrow-alt text-primary fs-3 fw-normal ms-2 mt-1"></i>
</a>
</h3>
<p>Risus massa fames metus lectus diam maecenas dui. Nibh morbi id purus eget tellus diam, integer blandit. Ac condimentum a nisl sagittis, interdum. Et viverra maecenas quis cras sed gravida volutpat, cursus enim. Enim ut nulla netus porta lacus diam. Et enim ultrices nunc, nunc. In iaculis venenatis at sit.</p>
</div>
<!-- Item -->
<div class="swiper-slide" data-swiper-tab="#industry-2">
<h3 class="h4 mb-4">
<a href="#" class="nav-link justify-content-center justify-content-lg-start fw-bold p-0">
Construction & Real Estate
<i class="bx bx-right-arrow-alt text-primary fs-3 fw-normal ms-2 mt-1"></i>
</a>
</h3>
<p>Nunc, amet et, et at habitant. Eget quis justo, metus at metus sapien. Urna quisque rutrum pharetra pulvinar vitae quam blandit non. Orci tempor cursus egestas quis orci at nisi maecenas. Enim in ultrices tortor, nibh quis sollicitudin tellus non maecenas. In libero ut semper nunc magna tortor.</p>
</div>
<!-- Item -->
<div class="swiper-slide" data-swiper-tab="#industry-3">
<h3 class="h4 mb-4">
<a href="#" class="nav-link justify-content-center justify-content-lg-start fw-bold p-0">
Education
<i class="bx bx-right-arrow-alt text-primary fs-3 fw-normal ms-2 mt-1"></i>
</a>
</h3>
<p>Vivamus nisl sit volutpat laoreet ligula et. Nunc, duis est justo, cras ipsum vulputate eget tellus augue. Amet, sagittis ut enim nisl commodo, pharetra. Sapien imperdiet tristique interdum aliquet varius vitae facilisis vel. Erat convallis eget elit eget iaculis. Morbi id facilisis ligula odio sed amet suspendisse duis aliquet. Justo quam convallis id sed.</p>
</div>
</div>
</div>
<!-- Slider controls (Prev / next buttons) -->
<div class="d-flex justify-content-center justify-content-lg-start mt-2 mt-lg-auto">
<button type="button" id="prev-industry" class="btn btn-prev btn-icon btn-sm me-2">
<i class="bx bx-chevron-left"></i>
</button>
<button type="button" id="next-industry" class="btn btn-next btn-icon btn-sm ms-2">
<i class="bx bx-chevron-right"></i>
</button>
</div>
</div>
<div class="col-lg-7 offset-xl-1 order-1 order-lg-2 pt-lg-3 mt-lg-n5 mb-4 mb-lg-0">
<!-- Swiper tabs (Industry images) -->
<div class="swiper-tabs mt-lg-n5">
<!-- Industry 1 -->
<div id="industry-1" class="swiper-tab active">
<img src="assets/img/landing/financial/industries/01.jpg" class="rounded-3" alt="Image">
</div>
<!-- Industry 2 -->
<div id="industry-2" class="swiper-tab">
<img src="assets/img/landing/financial/industries/02.jpg" class="rounded-3" alt="Image">
</div>
<!-- Industry 3 -->
<div id="industry-3" class="swiper-tab">
<img src="assets/img/landing/financial/industries/03.jpg" class="rounded-3" alt="Image">
</div>
</div>
</div>
</div>
</section>
<!-- Brands (Carousel) -->
<section class="container my-n2 my-md-0">
<div class="swiper mx-n2" data-swiper-options='{
"slidesPerView": 2,
"pagination": {
"el": ".swiper-pagination",
"clickable": true
},
"breakpoints": {
"500": {
"slidesPerView": 3,
"spaceBetween": 8
},
"650": {
"slidesPerView": 4,
"spaceBetween": 8
},
"900": {
"slidesPerView": 5,
"spaceBetween": 8
},
"1100": {
"slidesPerView": 6,
"spaceBetween": 8
}
}
}'>
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide py-3">
<a href="#" class="card card-body card-hover px-2 mx-2">
<img src="assets/img/brands/01.svg" class="d-block mx-auto my-2" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide py-3">
<a href="#" class="card card-body card-hover px-2 mx-2">
<img src="assets/img/brands/02.svg" class="d-block mx-auto my-2" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide py-3">
<a href="#" class="card card-body card-hover px-2 mx-2">
<img src="assets/img/brands/03.svg" class="d-block mx-auto my-2" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide py-3">
<a href="#" class="card card-body card-hover px-2 mx-2">
<img src="assets/img/brands/04.svg" class="d-block mx-auto my-2" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide py-3">
<a href="#" class="card card-body card-hover px-2 mx-2">
<img src="assets/img/brands/05.svg" class="d-block mx-auto my-2" width="154" alt="Brand">
</a>
</div>
<!-- Item -->
<div class="swiper-slide py-3">
<a href="#" class="card card-body card-hover px-2 mx-2">
<img src="assets/img/brands/06.svg" class="d-block mx-auto my-2" width="154" alt="Brand">
</a>
</div>
</div>
<!-- Pagination (bullets) -->
<div class="swiper-pagination position-relative pt-2 mt-4"></div>
</div>
</section>
<!-- Testimonials -->
<section class="container py-5 mb-2 mt-md-2 mb-md-4 mt-lg-4 mb-lg-5">
<div class="row pt-xl-1 pb-xl-3">
<div class="col-lg-3 col-md-4">
<h2 class="text-center text-md-start mx-auto mx-md-0 pt-md-2" style="max-width: 300px;">What Our <br class="d-none d-md-inline">Clients Say <br class="d-none d-md-inline">About Us:</h2>
<!-- Slider controls (Prev / next buttons) -->
<div class="d-flex justify-content-center justify-content-md-start pb-4 mb-2 pt-2 pt-md-4 mt-md-5">
<button type="button" id="prev-testimonial" class="btn btn-prev btn-icon btn-sm me-2">
<i class="bx bx-chevron-left"></i>
</button>
<button type="button" id="next-testimonial" class="btn btn-next btn-icon btn-sm ms-2">
<i class="bx bx-chevron-right"></i>
</button>
</div>
</div>
<div class="col-lg-9 col-md-8">
<div class="swiper mx-n2" data-swiper-options='{
"slidesPerView": 1,
"spaceBetween": 8,
"loop": true,
"navigation": {
"prevEl": "#prev-testimonial",
"nextEl": "#next-testimonial"
},
"breakpoints": {
"500": {
"slidesPerView": 2
},
"1000": {
"slidesPerView": 2
},
"1200": {
"slidesPerView": 3
}
}
}'>
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide h-auto pt-4">
<figure class="d-flex flex-column h-100 px-2 px-sm-0 mb-0 mx-2">
<div class="card h-100 position-relative border-0 shadow-sm pt-4">
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-3 mb-0">
<p class="mb-0">Id mollis consectetur congue egestas egestas suspendisse blandit justo. Tellus augue commodo id quis tempus etiam pulvinar at maecenas.</p>
</blockquote>
<div class="card-footer border-0 text-nowrap pt-0">
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bx-star text-muted opacity-75"></i>
<i class="bx bx-star text-muted opacity-75"></i>
</div>
</div>
<figcaption class="d-flex align-items-center ps-4 pt-4">
<img src="assets/img/avatar/03.jpg" width="48" class="rounded-circle" alt="Fannie Summers">
<div class="ps-3">
<h6 class="fs-sm fw-semibold mb-0">Fannie Summers</h6>
<span class="fs-xs text-muted">Medical Center patient</span>
</div>
</figcaption>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto pt-4">
<figure class="d-flex flex-column h-100 px-2 px-sm-0 mb-0 mx-2">
<div class="card h-100 position-relative border-0 shadow-sm pt-4">
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-3 mb-0">
<p class="mb-0">Phasellus luctus nisi id orci condimentum, at cursus nisl vestibulum. Orci varius natoque penatibus et magnis dis parturient montes commodo.</p>
</blockquote>
<div class="card-footer border-0 text-nowrap pt-0">
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
</div>
</div>
<figcaption class="d-flex align-items-center ps-4 pt-4">
<img src="assets/img/avatar/02.jpg" width="48" class="rounded-circle" alt="Robert Fox">
<div class="ps-3">
<h6 class="fs-sm fw-semibold mb-0">Robert Fox</h6>
<span class="fs-xs text-muted">Medical Center patient</span>
</div>
</figcaption>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto pt-4">
<figure class="d-flex flex-column h-100 px-2 px-sm-0 mb-0 mx-2">
<div class="card h-100 position-relative border-0 shadow-sm pt-4">
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-3 mb-0">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris ipsum odio, bibendum ornare mi at, efficitur urna.</p>
</blockquote>
<div class="card-footer border-0 text-nowrap pt-0">
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bx-star text-muted opacity-75"></i>
</div>
</div>
<figcaption class="d-flex align-items-center ps-4 pt-4">
<img src="assets/img/avatar/06.jpg" width="48" class="rounded-circle" alt="Annette Black">
<div class="ps-3">
<h6 class="fs-sm fw-semibold mb-0">Annette Black</h6>
<span class="fs-xs text-muted">Medical Center patient</span>
</div>
</figcaption>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto pt-4">
<figure class="d-flex flex-column h-100 px-2 px-sm-0 mb-0 mx-2">
<div class="card h-100 position-relative border-0 shadow-sm pt-4">
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-3 mb-0">
<p class="mb-0">Etiam augue ante, imperdiet et nunc sed, bibendum faucibus est. Suspendisse egestas facilisis erat eu eleifend.</p>
</blockquote>
<div class="card-footer border-0 text-nowrap pt-0">
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bx-star text-muted opacity-75"></i>
<i class="bx bx-star text-muted opacity-75"></i>
</div>
</div>
<figcaption class="d-flex align-items-center ps-4 pt-4">
<img src="assets/img/avatar/05.jpg" width="48" class="rounded-circle" alt="Jerome Bell">
<div class="ps-3">
<h6 class="fs-sm fw-semibold mb-0">Jerome Bell</h6>
<span class="fs-xs text-muted">Medical Center patient</span>
</div>
</figcaption>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto pt-4">
<figure class="d-flex flex-column h-100 px-2 px-sm-0 mb-0 mx-2">
<div class="card h-100 position-relative border-0 shadow-sm pt-4">
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-3 mb-0">
<p class="mb-0">Pellentesque finibus congue egestas egestas suspendisse blandit justo. Tellus augue commodo id quis tempus etiam pulvinar at maecenas.</p>
</blockquote>
<div class="card-footer border-0 text-nowrap pt-0">
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bxs-star text-warning"></i>
<i class="bx bx-star text-muted opacity-75"></i>
</div>
</div>
<figcaption class="d-flex align-items-center ps-4 pt-4">
<img src="assets/img/avatar/01.jpg" width="48" class="rounded-circle" alt="Albert Flores">
<div class="ps-3">
<h6 class="fs-sm fw-semibold mb-0">Albert Flores</h6>
<span class="fs-xs text-muted">Medical Center patient</span>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Latest news (Carousel) -->
<section class="bg-secondary py-5">
<div class="container py-2 py-md-4 py-lg-5">
<h2 class="h1 text-center pb-4 mb-1 mb-lg-3">Latest News</h2>
<div class="position-relative px-xl-5">
<!-- Slider prev/next buttons -->
<button type="button" id="prev-news" class="btn btn-prev btn-icon btn-sm position-absolute top-50 start-0 translate-middle-y d-none d-xl-inline-flex">
<i class="bx bx-chevron-left"></i>
</button>
<button type="button" id="next-news" class="btn btn-next btn-icon btn-sm position-absolute top-50 end-0 translate-middle-y d-none d-xl-inline-flex">
<i class="bx bx-chevron-right"></i>
</button>
<!-- Slider -->
<div class="px-xl-2">
<div class="swiper mx-n2" data-swiper-options='{
"slidesPerView": 1,
"loop": true,
"pagination": {
"el": ".swiper-pagination",
"clickable": true
},
"navigation": {
"prevEl": "#prev-news",
"nextEl": "#next-news"
},
"breakpoints": {
"500": {
"slidesPerView": 2
},
"1000": {
"slidesPerView": 3
}
}
}'>
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide h-auto pb-3">
<article class="card h-100 border-0 shadow-sm mx-2">
<div class="position-relative">
<a href="#" class="position-absolute top-0 start-0 w-100 h-100" aria-label="Read more"></a>
<a href="#" class="btn btn-icon btn-light bg-white border-white btn-sm rounded-circle position-absolute top-0 end-0 zindex-5 me-3 mt-3" data-bs-toggle="tooltip" data-bs-placement="left" title="Read later">
<i class="bx bx-bookmark"></i>
</a>
<img src="assets/img/landing/financial/news/01.jpg" class="card-img-top" alt="Image">
</div>
<div class="card-body pb-4">
<div class="d-flex align-items-center justify-content-between mb-3">
<a href="#" class="badge fs-sm text-nav bg-secondary text-decoration-none">Business</a>
<span class="fs-sm text-muted">12 hours ago</span>
</div>
<h3 class="h5 mb-0">
<a href="#">How agile is your forecasting process?</a>
</h3>
</div>
<div class="card-footer py-4">
<a href="#" class="d-flex align-items-center text-decoration-none">
<img src="assets/img/avatar/40.jpg" class="rounded-circle" width="48" alt="Avatar">
<div class="ps-3">
<h6 class="fs-base fw-semibold mb-0">Marvin McKinney</h6>
<span class="fs-sm text-muted">Deputy Director, Capital Department</span>
</div>
</a>
</div>
</article>
</div>
<!-- Item -->
<div class="swiper-slide h-auto pb-3">
<article class="card h-100 border-0 shadow-sm mx-2">
<div class="position-relative">
<a href="#" class="position-absolute top-0 start-0 w-100 h-100" aria-label="Read more"></a>
<a href="#" class="btn btn-icon btn-light bg-white border-white btn-sm rounded-circle position-absolute top-0 end-0 zindex-5 me-3 mt-3" data-bs-toggle="tooltip" data-bs-placement="left" title="Read later">
<i class="bx bx-bookmark"></i>
</a>
<img src="assets/img/landing/financial/news/02.jpg" class="card-img-top" alt="Image">
</div>
<div class="card-body pb-4">
<div class="d-flex align-items-center justify-content-between mb-3">
<a href="#" class="badge fs-sm text-nav bg-secondary text-decoration-none">Enterprise</a>
<span class="fs-sm text-muted">1 day ago</span>
</div>
<h3 class="h5 mb-0">
<a href="#">A future with high public debt: low-for-long is not low forever</a>
</h3>
</div>