forked from cipher-one/cipher-one.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1354 lines (1065 loc) · 54.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<title>Cipher One </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<div id="overlayer"></div>
<div class="loader">
<div class="spinner-border text-primary" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="site-wrap">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header class="site-navbar js-sticky-header site-navbar-target" role="banner">
<div class="container">
<div class="row align-items-center">
<div class="col-6 col-xl-2">
<h1 class="mb-0 site-logo"><a href="index.html" class="h2 mb-0">CipherOne<span class="text-primary">.</span> </a></h1>
</div>
<div class="col-12 col-md-10 d-none d-xl-block">
<nav class="site-navigation position-relative text-right" role="navigation">
<ul class="site-menu main-menu js-clone-nav mr-auto d-none d-lg-block">
<li><a href="#home-section" class="nav-link">Home</a></li>
<li class="has-children">
<a href="#about-section" class="nav-link">About Us</a>
<ul class="dropdown">
<!-- <li><a href="#team-section" class="nav-link">Team</a></li>
<li><a href="#pricing-section" class="nav-link">Pricing</a></li> -->
<li><a href="#faq-section" class="nav-link">FAQ</a></li>
<li><a href="#gallery-section" class="nav-link">Our Awareness Gallery</a></li>
<li><a href="#services-section" class="nav-link">Services</a></li>
<!-- <li><a href="#testimonials-section" class="nav-link">Testimonials</a></li> -->
<!-- <li class="has-children"> -->
<!-- <a href="#">More Links</a> -->
<!-- <ul class="dropdown">
<li><a href="#">Menu One</a></li>
<li><a href="#">Menu Two</a></li>
<li><a href="#">Menu Three</a></li>
</ul> -->
</li>
</ul>
</li>
<li><a href="#blog-section" class="nav-link">FunFacts</a></li>
<li><a href="#contact-section" class="nav-link">Contact</a></li>
<li class="social"><a href="#contact-section" class="nav-link"><span class="icon-facebook"></span></a></li>
<li class="social"><a href="#contact-section" class="nav-link"><span class="icon-twitter"></span></a></li>
<li class="social"><a href="#contact-section" class="nav-link"><span class="icon-linkedin"></span></a></li>
</ul>
</nav>
</div>
<div class="col-6 d-inline-block d-xl-none ml-md-0 py-3" style="position: relative; top: 3px;"><a href="#" class="site-menu-toggle js-menu-toggle float-right"><span class="icon-menu h3"></span></a></div>
</div>
</div>
</header>
<div class="site-blocks-cover overlay" style="background-image: url(images/hero_2.jpg);" data-aos="fade" id="home-section">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-md-10 mt-lg-5 text-center">
<div class="single-text owl-carousel">
<div class="slide">
<h1 class="text-uppercase" data-aos="fade-up">Banking Solutions</h1>
<p class="mb-5 desc" data-aos="fade-up" data-aos-delay="100">
"Go Ahead. You Can Rely On Us.""
</p>
<div data-aos="fade-up" data-aos-delay="100">
<a href="#" target="_blank" class="btn btn-primary mr-2 mb-2">Get In Touch</a>
</div>
</div>
<div class="slide">
<h1 class="text-uppercase" data-aos="fade-up">Financing Solutions</h1>
<p class="mb-5 desc" data-aos="fade-up" data-aos-delay="100">" Banking technology has made it simple and efficient to invest in good causes. ”</p>
<div data-aos="fade-up" data-aos-delay="100">
<a href="#" target="_blank" class="btn btn-primary mr-2 mb-2">Get In Touch</a>
</div>
</div>
<div class="slide">
<h1 class="text-uppercase" data-aos="fade-up">Savings Accounts</h1>
<p class="mb-5 desc" data-aos="fade-up" data-aos-delay="100">"Bank on the go with our Mobile Banking services. Download app."</p>
<div data-aos="fade-up" data-aos-delay="100">
<a href="#" target="_blank" class="btn btn-primary mr-2 mb-2">Get In Touch</a>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="#next" class="mouse smoothscroll">
<span class="mouse-icon">
<span class="mouse-wheel"></span>
</span>
</a>
</div>
<!DOCTYPE html>
<html>
<head>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="egeg.css">
</head>
<body>
<!-- BEGIN # BOOTSNIP INFO -->
<!-- BEGIN # BOOTSNIP INFO -->
<div class="container">
<div class="row">
<div class="container">
<h1 class="text-center">Join with us,Today</h1>
</div>
<div class="container">
<p class="text-center"><a href="#" class="btn btn-primary btn-lg" role="button" data-toggle="modal" data-target="#login-modal">Login/Signup</a></p>
</div>
</div>
</div>
<!-- END # BOOTSNIP INFO -->
<!-- END # BOOTSNIP INFO -->
<!-- BEGIN # MODAL LOGIN -->
<div class="modal fade" id="login-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" align="center">
<img class="img-circle" id="img_logo" src="images/img_222.jpg">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</button>
</div>
<!-- Begin # DIV Form -->
<div id="div-forms">
<!-- Begin # Login Form -->
<form id="login-form">
<div class="modal-body">
<div id="div-login-msg">
<div id="icon-login-msg" class="glyphicon glyphicon-chevron-right"></div>
<span id="text-login-msg">Type your username and password.</span>
</div>
<input id="login_username" class="form-control" type="text" placeholder="Username " required>
<input id="login_password" class="form-control" type="password" placeholder="Password" required>
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
<div class="modal-footer">
<div>
<button type="submit" class="btn btn-primary btn-lg btn-block">Login</button>
</div>
<div>
<button id="login_lost_btn" type="button" class="btn btn-link">Lost Password?</button>
<button id="login_register_btn" type="button" class="btn btn-link">Register</button>
</div>
</div>
</form>
<!-- End # Login Form -->
<!-- Begin | Lost Password Form -->
<form id="lost-form" style="display:none;">
<div class="modal-body">
<div id="div-lost-msg">
<div id="icon-lost-msg" class="glyphicon glyphicon-chevron-right"></div>
<span id="text-lost-msg">Type your e-mail.</span>
</div>
<input id="lost_email" class="form-control" type="text" placeholder="E-Mail " required>
</div>
<div class="modal-footer">
<div>
<button type="submit" class="btn btn-primary btn-lg btn-block">Send</button>
</div>
<div>
<button id="lost_login_btn" type="button" class="btn btn-link">Log In</button>
<button id="lost_register_btn" type="button" class="btn btn-link">Register</button>
</div>
</div>
</form>
<!-- End | Lost Password Form -->
<!-- Begin | Register Form -->
<form id="register-form" style="display:none;">
<div class="modal-body">
<div id="div-register-msg">
<div id="icon-register-msg" class="glyphicon glyphicon-chevron-right"></div>
<span id="text-register-msg">Register an account.</span>
</div>
<input id="register_username" class="form-control" type="text" placeholder="Username " required>
<input id="register_email" class="form-control" type="text" placeholder="E-Mail" required>
<input id="register_password" class="form-control" type="password" placeholder="Password" required>
</div>
<div class="modal-footer">
<div>
<button type="submit" class="btn btn-primary btn-lg btn-block">Register</button>
</div>
<div>
<button id="register_login_btn" type="button" class="btn btn-link">Log In</button>
<button id="register_lost_btn" type="button" class="btn btn-link">Lost Password?</button>
</div>
</div>
</form>
<!-- End | Register Form -->
</div>
<!-- End # DIV Form -->
</div>
</div>
</div>
<!-- END # MODAL LOGIN -->
<script src="egeg.js"></script>
</body>
</html>
<div class="site-section cta-big-image" id="about-section">
<div class="container">
<div class="row mb-5 justify-content-center">
<div class="col-md-8 text-center">
<h2 class="section-title mb-3" data-aos="fade-up" data-aos-delay="">Our Vision</h2>
<p class="lead" data-aos="fade-up" data-aos-delay="100">"Our vision is to help our customers and communities realize their dreams by anticipating, understanding and meeting financial needs.The web’s most convenient, secure and cost-effective payments solution.”</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 mb-5" data-aos="fade-up" data-aos-delay="">
<figure class="circle-bg">
<img src="images/img_2222.jpg" alt="Free Website Template by Free-Template.co" class="img-fluid">
</figure>
</div>
<div class="col-lg-5 ml-auto" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black mb-4">We Solve Your Financial Problem</h3>
<p>No one is free from financial problems. Poor planning or going through a tough time, such as a divorce, illness or unemployment, can really tip the scales. Need help? Here’s some advice on how to manage your financial problems.</p>
<p>Identify the problem --> Create your budget --> Lower your expenses --> Stop taking on debt --> Meet with your advisor </p>
<p>much more..</p>
</div>
</div>
</div>
</div>
<div class="site-section" id="next">
<div class="container">
<div class="row mb-5">
<div class="col-md-4 text-center" data-aos="fade-up" data-aos-delay="">
<img src="images/flaticon-svg/svg/001-wallet.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
<h3 class="card-title">Money Savings</h3>
<p>Exciting Offers on Travel, Dining, Shopping & More.</p>
</div>
<div class="col-md-4 text-center" data-aos="fade-up" data-aos-delay="100">
<img src="images/flaticon-svg/svg/004-cart.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
<h3 class="card-title">Online Shoppings</h3>
<p>The Easier, Faster and Secure Way to Pay Online.</p>
</div>
<div class="col-md-4 text-center" data-aos="fade-up" data-aos-delay="200">
<img src="images/flaticon-svg/svg/006-credit-card.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
<h3 class="card-title">Credit / Debit Cards</h3>
<p>Explore the world of Platinum(credit/debit) Explore today.</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 mb-5" data-aos="fade-up" data-aos-delay="">
<figure class="circle-bg">
<img src="images/about_2.jpg" alt="Free Website Template by Free-Template.co" class="img-fluid">
</figure>
</div>
<div class="col-lg-5 ml-auto" data-aos="fade-up" data-aos-delay="100">
<div class="mb-4">
<h3 class="h3 mb-4 text-black">Membership Rewards</h3>
<p>Membership Rewards is a customer loyalty programme.Cipher One rewards Cardmembers that regularly use Cipher One Cards. The more you spend, the more Membership Rewards points you accumulate. These points can be redeemed for a wide variety of travel rewards, shopping rewards, entertainment rewards and more. </p>
</div>
<div class="mb-4">
<ul class="list-unstyled ul-check success">
<li>shop</li>
<li>earn</li>
<li>reward</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--
<section class="site-section border-bottom" id="team-section">
<div class="container">
<div class="row mb-5 justify-content-center">
<div class="col-md-8 text-center">
<h2 class="section-title mb-3" data-aos="fade-up" data-aos-delay="">Meet Team</h2>
<p class="lead" data-aos="fade-up" data-aos-delay="100">A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 mb-4" data-aos="fade-up" data-aos-delay="">
<div class="team-member">
<figure>
<ul class="social">
<li><a href="#"><span class="icon-facebook"></span></a></li>
<li><a href="#"><span class="icon-twitter"></span></a></li>
<li><a href="#"><span class="icon-linkedin"></span></a></li>
<li><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
<img src="images/person_1.jpg" alt="Image" class="img-fluid">
</figure>
<div class="p-3">
<h3>Kaiara Spencer</h3>
<span class="position">Accountant</span>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4" data-aos="fade-up" data-aos-delay="100">
<div class="team-member">
<figure>
<ul class="social">
<li><a href="#"><span class="icon-facebook"></span></a></li>
<li><a href="#"><span class="icon-twitter"></span></a></li>
<li><a href="#"><span class="icon-linkedin"></span></a></li>
<li><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
<img src="images/person_2.jpg" alt="Image" class="img-fluid">
</figure>
<div class="p-3">
<h3>Dave Simpson</h3>
<span class="position">Bank Teller</span>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4" data-aos="fade-up" data-aos-delay="200">
<div class="team-member">
<figure>
<ul class="social">
<li><a href="#"><span class="icon-facebook"></span></a></li>
<li><a href="#"><span class="icon-twitter"></span></a></li>
<li><a href="#"><span class="icon-linkedin"></span></a></li>
<li><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
<img src="images/person_3.jpg" alt="Image" class="img-fluid">
</figure>
<div class="p-3">
<h3>Ben Thompson</h3>
<span class="position">Bank Teller</span>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section class="site-section" id="gallery-section" data-aos="fade">
<div class="container">
<div class="row mb-3">
<div class="col-12 text-center">
<h2 class="section-title mb-3">Our Awareness Gallery</h2>
</div>
</div>
<div id="posts" class="row no-gutter">
<div class="item web col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_1.jpg" class="item-wrap fancybox">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_1.jpg">
</a>
</div>
<div class="item brand col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_3.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_3.jpg">
</a>
</div>
<div class="item design col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_4.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_4.jpg">
</a>
</div>
<div class="item web col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_5.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_5.jpg">
</a>
</div>
<!-- <div class="item brand col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_1.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_1.jpg">
</a>
</div> -->
<!-- <div class="item web col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_2.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_2.jpg">
</a>
</div>
<div class="item design col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_3.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_3.jpg">
</a>
</div>
<div class="item web col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_4.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_4.jpg">
</a>
</div> -->
<!-- <div class="item design col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_5.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_5.jpg">
</a>
</div> -->
<div class="item web col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<video width="550" poster="images/video.jpg" controls>
<source src="video/video.mp4" type="video/mp4">
</video>
<!-- <a href="images/img_2.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_2.jpg">
</a> -->
</div>
<div class="item web col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<video width="550" poster="images/video1.jpg" controls>
<source src="video/video1.mp4" type="video/mp4">
</video>
<!-- <a href="images/img_2.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_2.jpg">
</a> -->
</div>
<!-- <div class="item brand col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_1.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_1.jpg">
</a>
</div>
<div class="item design col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-4">
<a href="images/img_2.jpg" class="item-wrap fancybox" data-fancybox="gallery2">
<span class="icon-search2"></span>
<img class="img-fluid" src="images/img_2.jpg">
</a>
</div>
-->
</div>
</div>
</section>
<section class="site-section">
<div class="container">
<div class="row mb-5 justify-content-center">
<div class="col-md-7 text-center">
<h2 class="section-title mb-3" data-aos="fade-up" data-aos-delay="">How It Works</h2>
<p class="lead" data-aos="fade-up" data-aos-delay="100">We are here to address all your doubts</p>
</div>
</div>
<div class="row align-items-lg-center" >
<div class="col-lg-6 mb-5" data-aos="fade-up" data-aos-delay="">
<div class="owl-carousel slide-one-item-alt">
<img src="images/img_1.jpg" alt="Image" class="img-fluid">
<img src="images/img_2.jpg" alt="Image" class="img-fluid">
<img src="images/img_3.jpg" alt="Image" class="img-fluid">
</div>
<div class="custom-direction">
<a href="#" class="custom-prev"><span><span class="icon-keyboard_backspace"></span></span></a><a href="#" class="custom-next"><span><span class="icon-keyboard_backspace"></span></span></a>
</div>
</div>
<div class="col-lg-5 ml-auto" data-aos="fade-up" data-aos-delay="100">
<div class="owl-carousel slide-one-item-alt-text">
<div>
<h2 class="section-title mb-3">01. Online Applications</h2>
<p></p>
<p><a href="#" class="btn btn-primary mr-2 mb-2">Learn More</a></p>
</div>
<div>
<h2 class="section-title mb-3">02. Get an approval</h2>
<p></p>
<p><a href="#" class="btn btn-primary mr-2 mb-2">Learn More</a></p>
</div>
<div>
<h2 class="section-title mb-3">03. Card delivery</h2>
<p></p>
<p><a href="#" class="btn btn-primary mr-2 mb-2">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="site-section border-bottom bg-light" id="services-section">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center" data-aos="fade">
<h2 class="section-title mb-3">Our Services</h2>
</div>
</div>
<div class="row align-items-stretch">
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up">
<div class="unit-4">
<div class="unit-4-icon">
<img src="images/flaticon-svg/svg/001-wallet.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
</div>
<div>
<h3>Business Consulting</h3>
<!-- <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ratione animi tempora sint hic quod!</p> -->
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="unit-4">
<div class="unit-4-icon">
<img src="images/flaticon-svg/svg/006-credit-card.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
</div>
<div>
<h3>Credit Card</h3>
<!-- <p>Expericance a wide range of our credit/debit cards. </p> -->
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="unit-4">
<div class="unit-4-icon">
<img src="images/flaticon-svg/svg/002-rich.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
</div>
<div>
<h3>Income Monitoring</h3>
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolores optio veritatis aperiam consequuntur qui.</p>
--> <p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="">
<div class="unit-4">
<div class="unit-4-icon">
<img src="images/flaticon-svg/svg/003-notes.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
</div>
<div>
<h3>Insurance Consulting</h3>
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia labore suscipit distinctio inventore doloribus deserunt!</p> -->
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="unit-4">
<div class="unit-4-icon">
<img src="images/flaticon-svg/svg/004-cart.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
</div>
<div>
<h3>Financial Investment</h3>
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cumque odio voluptatibus repellat hic officia quibusdam!</p> -->
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="unit-4">
<div class="unit-4-icon">
<img src="images/flaticon-svg/svg/005-megaphone.svg" alt="Free Website Template by Free-Template.co" class="img-fluid w-25 mb-4">
</div>
<div>
<h3>Financial Management</h3>
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. In, iusto eaque velit saepe nobis ipsa?</p> -->
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="site-section testimonial-wrap" id="testimonials-section" data-aos="fade">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center">
<h2 class="section-title mb-3">Happy Customers</h2>
</div>
</div>
</div>
<div class="slide-one-item home-slider owl-carousel">
<div>
<div class="testimonial">
<blockquote class="mb-5">
<p>“Lorem ipsum dolor sit, amet consectetur adipisicing elit. Deleniti tenetur ad perspiciatis quam atque eius quia suscipit repudiandae animi voluptatem.”</p>
</blockquote>
<figure class="mb-4 d-flex align-items-center justify-content-center">
<div><img src="images/person_1.jpg" alt="Image" class="w-50 img-fluid mb-3"></div>
<p>John Smith</p>
</figure>
</div>
</div>
<div>
<div class="testimonial">
<blockquote class="mb-5">
<p>“Lorem ipsum, dolor sit amet consectetur adipisicing elit. Voluptates exercitationem ut totam distinctio magnam quisquam, unde iure. Labore!.”</p>
</blockquote>
<figure class="mb-4 d-flex align-items-center justify-content-center">
<div><img src="images/person_2.jpg" alt="Image" class="w-50 img-fluid mb-3"></div>
<p>Christine Aguilar</p>
</figure>
</div>
</div>
<div>
<div class="testimonial">
<blockquote class="mb-5">
<p>“Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime eligendi odio nihil officia quasi nostrum, ipsa est? Culpa, ullam dolorem!”</p>
</blockquote>
<figure class="mb-4 d-flex align-items-center justify-content-center">
<div><img src="images/person_3.jpg" alt="Image" class="w-50 img-fluid mb-3"></div>
<p>Robert Spears</p>
</figure>
</div>
</div>
<div>
<div class="testimonial">
<blockquote class="mb-5">
<p>“Lorem ipsum dolor sit amet consectetur adipisicing elit. Nihil veniam tempora beatae animi in sapiente quos maiores ex aut.”</p>
</blockquote>
<figure class="mb-4 d-flex align-items-center justify-content-center">
<div><img src="images/person_1.jpg" alt="Image" class="w-50 img-fluid mb-3"></div>
<p>Bruce Rogers</p>
</figure>
</div>
</div>
</div>
</section> -->
<section class="site-section bg-light" id="pricing-section">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center" data-aos="fade-up">
<!-- <h2 class="section-title mb-3">Pricing</h2> -->
</div>
<!-- </div>
<div class="row mb-5">
<div class="col-md-6 mb-4 mb-lg-0 col-lg-4" data-aos="fade-up" data-aos-delay=""> -->
<!-- <div class="pricing">
<h3 class="text-center text-black">Basic</h3>
<div class="price text-center mb-4 ">
<span><span>$47</span> / year</span> -->
<!-- </div>
<ul class="list-unstyled ul-check success mb-5">
<li>Officia quaerat eaque neque</li>
<li>Possimus aut consequuntur incidunt</li>
<li class="remove">Lorem ipsum dolor sit amet</li>
<li class="remove">Consectetur adipisicing elit</li>
<li class="remove">Dolorum esse odio quas architecto sint</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-secondary">Buy Now</a>
</p>
</div>
</div>
<div class="col-md-6 mb-4 mb-lg-0 col-lg-4 pricing-popular" data-aos="fade-up" data-aos-delay="100">
<div class="pricing">
<h3 class="text-center text-black">Premium</h3>
<div class="price text-center mb-4 ">
<span><span>$200</span> / year</span>
</div>
<ul class="list-unstyled ul-check success mb-5">
<li>Officia quaerat eaque neque</li>
<li>Possimus aut consequuntur incidunt</li>
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipisicing elit</li>
<li class="remove">Dolorum esse odio quas architecto sint</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-primary">Buy Now</a>
</p>
</div>
</div>
<div class="col-md-6 mb-4 mb-lg-0 col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="pricing">
<h3 class="text-center text-black">Professional</h3>
<div class="price text-center mb-4 ">
<span><span>$750</span> / year</span>
</div>
<ul class="list-unstyled ul-check success mb-5">
<li>Officia quaerat eaque neque</li>
<li>Possimus aut consequuntur incidunt</li>
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipisicing elit</li>
<li>Dolorum esse odio quas architecto sint</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-secondary">Buy Now</a>
</p>
</div>
</div>
</div> -->
<div class="row site-section" id="faq-section">
<div class="col-12 text-center" data-aos="fade">
<h2 class="section-title">Frequently Ask Questions</h2>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">Can I increase my credit limit?</h3>
<p>Yes. After the first six months, you can apply for an increase in your credit limit.</p>
</div>
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">How do I report a lost, stolen or damage Card?</h3>
<p>If you need to report your lost or stolen Card call our 24 hour Card Member Help Line to block your Card. </p>
</div>
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">What is the time interval for periodic updation of KYC?</h3>
<p>FTime intervals for periodic updation of KYC is 2, 8 and 10 years for existing high, medium and low risk customers respectively.</p>
</div>
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">What is the timeframe within which a charge can be disputed?</h3>
<p>The Bank will investigate and resolve a billing error when the customer's billing error notice is received in writing at the address specified on the periodic statement and within 60 days from the date of transaction. The bank may accept billing error notices by phone.After 60 days, if the Bank is notified of a billing dispute and the dispute does not meet the criteria for a Goods & Services dispute and the Bank determines that it will investigate the dispute, the Bank will notify the customer that an attempt will be made to resolve the dispute, but credit cannot be guaranteed.</p>
</div>
</div>
<div class="col-lg-6">
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">How do I change my PIN?</h3>
<p>You can securely change your PIN online by logging into your Account. Go to the ‘Account management’ section and click on ‘Change PIN’. Please remember, you will need to enter your old PIN* one final time, at a merchant store for a Chip and PIN transaction.Your new PIN will be updated automatically on the Chip of your Card for all subsequent transactions. * If your Card is eligible for cash advances & your first transaction is an ATM withdrawal, you may use your new PIN immediately.
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">How do I view my PIN?</h3>
<p>You can securely view your PIN by simply logging in to your Online Account. Go to the 'Account Management' section and click on 'View PIN'.</p>
</div>
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">How do I close my Account?</h3>
<p>To close your Account please call the Customer Service number on the back of your Card.</p>
</div>
<div class="mb-5" data-aos="fade-up" data-aos-delay="100">
<h3 class="text-black h4 mb-4">Can I use my card abroad ?</h3>
<p>Yes, you can. You will be charged 3.5% of the transaction amount as a mark-up fee for foreign currency transactions</p>
</div>
</div>
</div>
</div>
</section>
<section class="site-section" id="about-section">
<div class="container">
<div class="row">
<div class="col-lg-6 mb-5" data-aos="fade-up" data-aos-delay="">
<figure class="circle-bg">
<img src="images/img_4.jpg" alt="Free Website Template by Free-Template.co" class="img-fluid">
</figure>
</div>
<div class="col-lg-5 ml-auto" data-aos="fade-up" data-aos-delay="100">
<div class="row">
<div class="col-12 mb-4" data-aos="fade-up" data-aos-delay="">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4 mb-3"><span class="text-primary flaticon-head"></span></div>
<div>
<h3>Bank Loan</h3>
<p>One stop solutions for all your financial needs.We provide with all kinds of loans.It may be personal loan ,home loan,car loan,two-wheeler loan,we are here.</p>
<p class="mb-0"><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-12 mb-4" data-aos="fade-up" data-aos-delay="100">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4 mb-3"><span class="text-primary flaticon-smartphone"></span></div>
<div>
<h3>Banking Consulation </h3>
<p>A convenient ,safe and rewarding experiance.We welcome to CIPHER ONE family. </p>
<p class="mb-0"><a href="#">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>