-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1115 lines (1011 loc) · 56 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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<!-- ==========BOXICON CSS LINK========== -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<!-- ==========UNICONS CSS LINK========== -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!-- ==========FONTAWESOME CSS LINK========== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<!-- ==========POPPINS GOOGLE FONT LINK========== -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<!-- ==========GLIGHTBOX CSS LINK========== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css" />
<!-- ==========SWIPER SLIDER CSS ========== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<!-- ==========BOOTSTARP CSS LINK========== -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- ==========CUSTOM CSS LINK========== -->
<link rel="stylesheet" href="css/main.css">
<title>GetInCard for Digital Business Card</title>
</head>
<body>
<!-- ===================================== -->
<!-- SCROLLTOP -->
<!-- ===================================== -->
<!-- <button id="scrollTop" onclick="topScroll()"><i class='bx bx-md bx-up-arrow-alt bx-flashing'></i></button> -->
<!-- ===================================== -->
<!-- HEADER PART START -->
<!-- ===================================== -->
<header id="header">
<div class="menubar fix-top flex_content">
<div class="container flex_content ">
<div class="logo">
<a href="index.html" class="logo"><img src="https://i.ibb.co/S5z20kb/getincardlogo.png" alt=""></a>
</div>
<nav class="ms-auto" id="menu">
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="account.html">Account</a></li>
<li class="ms-auto login"><a href="signin.html">LogIn</a></li>
</ul>
</nav>
<div class="mobile_menu d-flex align-items-center g-2">
<div class="cart_part cart-button">
<span><i class='bx bx-cart bx-md'></i></span>
<div class="count_number">0</div>
</div>
<div class="humburger" id="humburger">
<span class="l1"></span>
<span class="l2"></span>
<span class="l3"></span>
</div>
</div>
</div>
</div>
<div class="hero_inner">
<div class="hero_content">
<h1>The Best Digital <br> Business Card</h1>
<h4>Share Your Contact Info With Just A Tap Or Scan</h4>
<h5>Update, Change, Delete, Hide Or Add New Info Anytime.</h5>
<a href="#" class="primary_btn">Order Now <i class='bx bx-right-arrow-alt'></i></a>
</div>
<div class="hero_img">
<!-- <img src="images/banner-home7-b_UAE.png" alt=""> -->
</div>
</div>
</div>
<svg class="white-shape" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#fff" fill-opacity="1"
d="M0,256L30,234.7C60,213,120,171,180,181.3C240,192,300,256,360,277.3C420,299,480,277,540,250.7C600,224,660,192,720,197.3C780,203,840,245,900,245.3C960,245,1020,203,1080,181.3C1140,160,1200,160,1260,154.7C1320,149,1380,139,1410,133.3L1440,128L1440,320L1410,320C1380,320,1320,320,1260,320C1200,320,1140,320,1080,320C1020,320,960,320,900,320C840,320,780,320,720,320C660,320,600,320,540,320C480,320,420,320,360,320C300,320,240,320,180,320C120,320,60,320,30,320L0,320Z">
</path>
</svg>
</header>
<!-- ===================================== -->
<!-- HEADER PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- SHOPPING CART SIDEBAR START -->
<!-- ===================================== -->
<aside id="sidebar-cart">
<main>
<a href="#" class="close-button"><span class="close-icon"><i class="fa-solid fa-xmark"></i></span></a>
<h2>Shopping Cart <span class="count">2</span></h2>
<ul class="products">
<li class="product">
<a href="#" class="product-link">
<span class="product-image">
<img src="images/card-01.webp" alt="Product Photo">
</span>
<span class="product-details">
<h3>Black & White Card</h3>
<span class="qty-price">
<span class="qty">
<button class="minus-button" id="minus-button-1">-</button>
<input type="number" id="qty-input-1" class="qty-input" step="1" min="1" max="1000" name="qty-input" value="1" pattern="[0-9]*" title="Quantity" inputmode="numeric">
<button class="plus-button" id="plus-button-1">+</button>
<input type="hidden" name="item-price" id="item-price-1" value="12.00">
</span>
<span class="price">$1060.00</span>
</span>
</span>
</a>
<a href="#remove" class="remove-button"><span class="remove-icon">X</span></a>
</li>
<li class="product">
<a href="#" class="product-link">
<span class="product-image">
<img src="images/card-02.webp" alt="Product Photo">
</span>
<span class="product-details">
<h3>Matte Blue Card</h3>
<span class="qty-price">
<span class="qty">
<button class="minus-button" id="minus-button-1">-</button>
<input type="number" id="qty-input-2" class="qty-input" step="1" min="1" max="1000" name="qty-input" value="1" pattern="[0-9]*" title="Quantity" inputmode="numeric">
<button class="plus-button" id="plus-button-1">+</button>
<input type="hidden" name="item-price" id="item-price-2" value="12.00">
</span>
<span class="price">$1028.00</span>
</span>
</span>
</a>
<a href="#remove" class="remove-button"><span class="remove-icon">X</span></a>
</li>
</ul>
<div class="totals">
<div class="subtotal">
<span class="label">Subtotal:</span> <span class="amount">$2088.00</span>
</div>
<div class="action-buttons">
<a class="view-cart-button" href="cart.html">Cart</a>
<a class="checkout-button" href="checkout.html">Checkout <i class='bx bx-right-arrow-alt'></i></a>
</div>
</main>
</aside>
<div id="sidebar-cart-curtain"></div>
<!-- ===================================== -->
<!-- SHOPPING CART SIDEBAR END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- SERVICES PART START -->
<!-- ===================================== -->
<section id="services">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 mb-4">
<div class="service_img">
<img src="images/NFC-UAE.gif" alt="" class="img-fluid">
</div>
</div>
<div class="col-lg-6 col-md-12 float-end">
<div class="services_part">
<h1 class="service_title">Fast, Simple & Easy Way To Share Your Info</h1>
<h3>Smart NFC Business Card Is A Simple NFC Tag That Contains Essential Information Of Your
Business Contact. That Can Be Shared Contact-Less By Just A Tap To Another Phone.</h3>
<div class="service_list">
<ul>
<li> <i class='bx bx-check'></i> Ready To Use</li>
<li> <i class='bx bx-check'></i> Secured System</li>
<li> <i class='bx bx-check'></i> Branding & Customization</li>
<li> <i class='bx bx-check'></i> Contact-Less, Just Tap & Share</li>
<li> <i class='bx bx-check'></i> Futuristic NFC Technology</li>
<li> <i class='bx bx-check'></i> Generate Auto QR Code</li>
<li> <i class='bx bx-check'></i> Well Designed Display Splash Screen</li>
<li> <i class='bx bx-check'></i> Dashboard Access To Add & Modify Data</li>
<li> <i class='bx bx-check'></i> Exclusive Mobile APP Access For Corporates</li>
</ul>
</div>
<div class="services_btn flex">
<div class="order_btn">
<a href="#" class="primary_btn">Order Now <i class='bx bx-right-arrow-alt'></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- SERVICES PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- HOW IT WORKS PART START -->
<!-- ===================================== -->
<section id="how_it_works">
<h1 class="section_title">How It Works?</h1>
<h2 class="section_subtitle">Get Started In Just 3 Simple Steps</h2>
<div class="container">
<div class="row my-5 d-flex align-items-center h-100 sm-column servicebox">
<div class="col-lg-4 col-md-12 offset-lg-2">
<img src="images/imgpsh_fullsize_anim-22.png" alt="" class="img-fluid">
</div>
<div class="col-lg-4 col-md-12">
<h2 class="title"><span class="circle"></span>Purchase card</h2>
<h3>Choose between basic & custom GetInCard card & enter the name you want us to custom print on
your card. We’ll add your custom sign up link in the card and ship it to you.</h3>
</div>
</div>
<div class="row my-5 d-flex align-items-center h-100 servicebox">
<div class="col-lg-4 col-md-12 offset-lg-2 ">
<h2 class="title"><span class="circle"></span>Create your Profile</h2>
<h3>Once you receive your card, just tap it on your NFC enabled phone & set up your profile. Add
social media links, email, contact, UPI payment links & website links that you’d like to
share with others. You have the liberty to edit your profile anytime.</h3>
</div>
<div class="col-lg-4 col-md-12">
<img src="images/create-profile.png" alt="" class="img-fluid float-end">
</div>
</div>
<div class="row my-5 d-flex align-items-center h-100 sm-column servicebox">
<div class="col-lg-4 col-md-12 offset-lg-2">
<img src="images/Highcompressed_595422540.png" alt="" class="img-fluid">
</div>
<div class="col-lg-4 col-md-12">
<h2 class="title"><span class="circle"></span>Share it with a Tap</h2>
<h3>Card can be tapped on most of the Android phones and newer iPhones. Non-NFC phones can scan
the QR code to access your profile. No apps required.</h3>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- HOW IT WORKS PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- OUR PRODUCTS PART START -->
<!-- ===================================== -->
<section id="our_products">
<h1 class="section_title">Our Products</h1>
<h2 class="section_subtitle">Lorem ipsum dolor sit amet.</h2>
<div class="container">
<div class="row justify-content-center">
<div class=" col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-01.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Black White</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class=" col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-02.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Metty Blue</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class=" col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12 ">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-03.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Gradient White</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class=" col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-04.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Classic Silver</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-01.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Black White</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-02.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Metty Blue</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-03.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Gradient White</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="productcard">
<div class="productcard_inner">
<a href="singleproduct.html">
<div class="productcard_header">
<div class="productcard_header-img">
<img src="images/card-04.webp" alt="" class="img-fluid">
</div>
</div>
</a>
<div class="productcard_footer">
<h2 class="productcard_title">GetInConnect Classic Silver</h2>
<div class="product_details pb-3">
<span class="prices">৳ 1,299.00 </span>
<div class="addTocart">
<a href="#" class="addcartBtn">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="customproduct.html" class="primary_btn viewall_btn">Order Custom Card</a>
</div>
</section>
<!-- ===================================== -->
<!-- OUR PRODUCTS PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- OUR FEATURES PART START -->
<!-- ===================================== -->
<section id="features">
<h1 class="section_title text-light">Why GetInCard NFC Business Cards</h1>
<h2 class="section_subtitle white-stroke">Hightlights & Features</h2>
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="features_card">
<div class="features_card-img">
<!-- <img src="images/share-instantly.gif" alt="" class="img-fluid"> -->
<lord-icon src="https://cdn.lordicon.com/wvqpnihn.json" trigger="loop"
colors="primary:#fff,secondary:#ddd" style="width:100px;height:100px">
</lord-icon>
</div>
<div class="features_card-title">
<h2>Share Instantly</h2>
</div>
<div class="features_card-description">
<ul>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Tap</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Touch</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Scan</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Share</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="features_card">
<div class="features_card-img ">
<lord-icon src="https://cdn.lordicon.com/dsoshxtl.json" trigger="loop"
colors="primary:#fff,secondary:#ddd" style="width:100px;height:100px;">
</lord-icon>
</div>
<div class="features_card-title">
<h2>Unlimited Use</h2>
</div>
<div class="features_card-description">
<ul>
<li><i class='bx bx-radio-circle-marked bx-fw bx-md'></i> No Time Barrier</li>
<li><i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Update</li>
<li><i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Connect</li>
<li><i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Email Signature</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="features_card">
<div class="features_card-img">
<lord-icon src="https://cdn.lordicon.com/uqpazftn.json" trigger="loop"
colors="primary:#ddd,secondary:#ffffff" style="width:100px;height:100px">
</lord-icon>
</div>
<div class="features_card-title">
<h2>Capture Leads</h2>
</div>
<div class="features_card-description">
<ul>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Contact Exchange</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> No APP Needed</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Connect</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> 24/7 Support Team</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12">
<div class="features_card">
<div class="features_card-img">
<lord-icon src="https://cdn.lordicon.com/gqdnbnwt.json" trigger="loop"
colors="primary:#ffffff,secondary:#ffffff" style="width:100px;height:100px">
</lord-icon>
</div>
<div class="features_card-title">
<h2>Grow Business</h2>
</div>
<div class="features_card-description">
<ul>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Branding</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Team Build</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Connect</li>
<li> <i class='bx bx-radio-circle-marked bx-fw bx-md'></i> Cut Cost</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- OUR FEATURES PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- GETINCONNECT MAGIC WORK PART START -->
<!-- ===================================== -->
<section id="getinconnectmagic">
<h1 class="section_title">GetInCard Works Like Magic</h1>
<h2 class="section_subtitle">Make Your First Impression Special</h2>
<div class="container">
<div class="row">
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="magicCard">
<div class="magicCard_icon">
<lord-icon src="https://cdn.lordicon.com/vpcmkqzt.json" trigger="loop"
colors="primary:#7239D6,secondary:#4A1F96" style="width:150px;height:150px">
</lord-icon>
</div>
<div class="magicCard_title">
<h2>NFC Chip</h2>
</div>
<div class="magicCard_desc">
<p>Tap To Phone & Share Your Contact Details Without Hassle By GetInCard Special NFC Chip.</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="magicCard">
<div class="magicCard_icon">
<script src="https://cdn.lordicon.com/pzdvqjsp.js"></script>
<lord-icon src="https://cdn.lordicon.com/fqrjldna.json" trigger="loop"
colors="primary:#7239d6,secondary:#4a1f96" style="width:150px;height:150px">
</lord-icon>
</div>
<div class="magicCard_title">
<h2>QR Codes</h2>
</div>
<div class="magicCard_desc">
<p>Open The Phone's Camera Or Any QR App And Scan Special Next Generation GetInCard QR Code On
Your Old Phone.</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="magicCard">
<div class="magicCard_icon">
<lord-icon src="https://cdn.lordicon.com/dwoenhub.json" trigger="loop"
colors="primary:#7239D6,secondary:#4A1F96" style="width:150px;height:150px">
</lord-icon>
</div>
<div class="magicCard_title">
<h2>Smart Connect</h2>
</div>
<div class="magicCard_desc">
<p>82 Percent Of Traditional Business Cards Are Trashed Away. GetInCard Helps You To Share
Your Contact Details With People</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12">
<div class="magicCard">
<div class="magicCard_icon">
<lord-icon src="https://cdn.lordicon.com/qhgmphtg.json" trigger="loop" delay="2000"
colors="primary:#7239D6,secondary:#4A1F96" style="width:150px;height:150px">
</lord-icon>
</div>
<div class="magicCard_title">
<h2>Device Support</h2>
</div>
<div class="magicCard_desc">
<p>GetInCard Works On All Modern Smartphones Running Both Android Or IOS.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- GETINCONNECT MAGIC WORK PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- PORTFOLIO DESIGN PART START -->
<!-- ===================================== -->
<section id="designportfolio">
<h1 class="section_title">Our Some Client's Design</h1>
<h2 class="section_subtitle">Make your custom product by show some design concept</h2>
<div class="container">
<div class="swiper mySwiper ">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="images/business-card (1).jpg" alt="" class="img-fluid">
</div>
<div class="swiper-slide">
<img src="images/business-card (2).jpg" alt="" class="img-fluid">
</div>
<div class="swiper-slide">
<img src="images/business-card (3).jpg" alt="" class="img-fluid">
</div>
<div class="swiper-slide">
<img src="images/business-card (4).jpg" alt="" class="img-fluid">
</div>
<div class="swiper-slide">
<img src="images/business-card (5).jpg" alt="" class="img-fluid">
</div>
<div class="swiper-slide">
<img src="images/business-card (6).jpg" alt="" class="img-fluid">
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- PORTFOLIO DESIGN PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- STATISTICS PART START -->
<!-- ===================================== -->
<section id="statistics">
<div class="container">
<div class="row">
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="number_box">
<span class="number counter">25000</span> <span>+</span>
<h2>Projects</h2>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="number_box">
<span class="number counter">100</span><span>%</span>
<h2>Satisfictions</h2>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12 mb-3">
<div class="number_box">
<span class="number counter">250</span><span>+</span>
<h2>Clients</h2>
</div>
</div>
<div class="col-xl-3 col-lg-6 col-md-6 col-12">
<div class="number_box">
<span class="number counter">150</span><span>+</span>
<h2>Reviews</h2>
</div>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- STATISTICS PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- TESTOMONIALS PART START -->
<!-- ===================================== -->
<section id="testomonials">
<h1 class="section_title">
Our Client's Love It
</h1>
<div class="container">
<div class="swiper mySwiper1 ">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testomonial_card">
<div class="testomonial_card-profile">
<img src="images/user-01.jpg" alt="">
</div>
<div class="testomonial_card-quote"><i class='bx bxs-quote-alt-right'></i></div>
<div class="testomonial_card-thoughts">
<p>
<q>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis alias distinctio asperiores qui odit explicabo nihil labore blanditiis. Eius cupiditate nobis voluptas consequuntur? Reiciendis quibusdam molestias vitae placeat eligendi sequi.</q>
</p>
</div>
<div class="testomonial_card-userinfo">
<h2>-Aland Boe <span>Web Developer</span> </h2>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testomonial_card">
<div class="testomonial_card-profile">
<img src="images/user-03.jpg" alt="">
</div>
<div class="testomonial_card-quote"><i class='bx bxs-quote-alt-right'></i></div>
<div class="testomonial_card-thoughts">
<p>
<q>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis alias distinctio asperiores qui odit explicabo nihil labore blanditiis. Eius cupiditate nobis voluptas consequuntur? Reiciendis quibusdam molestias vitae placeat eligendi sequi.</q>
</p>
</div>
<div class="testomonial_card-userinfo">
<h2>-Aland Boe <span>Web Developer</span> </h2>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testomonial_card">
<div class="testomonial_card-profile">
<img src="images/user-03.jpg" alt="">
</div>
<div class="testomonial_card-quote"><i class='bx bxs-quote-alt-right'></i></div>
<div class="testomonial_card-thoughts">
<p>
<q>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis alias distinctio asperiores qui odit explicabo nihil labore blanditiis. Eius cupiditate nobis voluptas consequuntur? Reiciendis quibusdam molestias vitae placeat eligendi sequi.</q>
</p>
</div>
<div class="testomonial_card-userinfo">
<h2>-Aland Boe <span>Web Developer</span> </h2>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testomonial_card">
<div class="testomonial_card-profile">
<img src="images/user-03.jpg" alt="">
</div>
<div class="testomonial_card-quote"><i class='bx bxs-quote-alt-right'></i></div>
<div class="testomonial_card-thoughts">
<p>
<q>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis alias distinctio asperiores qui odit explicabo nihil labore blanditiis. Eius cupiditate nobis voluptas consequuntur? Reiciendis quibusdam molestias vitae placeat eligendi sequi.</q>
</p>
</div>
<div class="testomonial_card-userinfo">
<h2>-Aland Boe <span>Web Developer</span> </h2>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testomonial_card">
<div class="testomonial_card-profile">
<img src="images/user-03.jpg" alt="">
</div>
<div class="testomonial_card-quote"><i class='bx bxs-quote-alt-right'></i></div>
<div class="testomonial_card-thoughts">
<p>
<q>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis alias distinctio asperiores qui odit explicabo nihil labore blanditiis. Eius cupiditate nobis voluptas consequuntur? Reiciendis quibusdam molestias vitae placeat eligendi sequi.</q>
</p>
</div>
<div class="testomonial_card-userinfo">
<h2>-Aland Boe <span>Web Developer</span> </h2>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testomonial_card">
<div class="testomonial_card-profile">
<img src="images/user-03.jpg" alt="">
</div>
<div class="testomonial_card-quote"><i class='bx bxs-quote-alt-right'></i></div>
<div class="testomonial_card-thoughts">
<p>
<q>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facilis alias distinctio asperiores qui odit explicabo nihil labore blanditiis. Eius cupiditate nobis voluptas consequuntur? Reiciendis quibusdam molestias vitae placeat eligendi sequi.</q>
</p>
</div>
<div class="testomonial_card-userinfo">
<h2>-Aland Boe <span>Web Developer</span> </h2>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- TESTOMONIALS PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- FAQ PART START -->
<!-- ===================================== -->
<section id="faq">
<div class="main-wrapper">
<div class="container">
<div class="faq-title">
<h1>frequently asked questions</h1>
</div>
<div class="faq-content">
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">What are the benefits of video games for children?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>There are many advantages for your youngster playing video games. Simple games can boost your child's
disposition, encourage relaxation, and lessen worry. By developing their ability to handle disappointment
in video games, kids can also develop emotional resilience.Another benefit of video games is
socialization. This is how your youngster can communicate with pals and unwind in the digital age. Your
youngster can meet other kids their age who share their interests by playing online.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">Is it possible for my kids to play games on a desktop or tablet?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Yes Kidyking gaming platform is a web related platform so children can play on a desktop and as well as
tablet without downloading it on your devices.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">Are my child's personal information and data secure on this platform?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Absolutely, we care about children's personal information and data that’s why we make our server or
gaming platform more secure.So your kids will be safe with our kidyking gaming platform.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">What makes kidyking gaming platforms a good choice for me?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Kidyking is a platform for kids' fun educational gaming where they can learn new things with games.
Additionally all homeschool activities can be done too, So it is a good choice for kids educational gaming
web platforms.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">Is the platform suitable for my child's educational needs?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Kids are now so digital they love to play with electronic devices that parents get worried about their
education. So kidyking online gaming platforms make learning fun by playing some games which fulfill all
the basic educational needs of a child.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">Is Kidyking a provider of different types of games?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Kidyking offers a variety of games that cover all the fundamentals of learning. As an illustration,
consider writing, language, arithmetic, and science.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">Is it possible for children to learn school materials through playing
games?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Absolutely yes, Kids can learn all the basic school materials by playing our kidyking online gaming
platform because we design our games for kids educational games. All the games have given your kids
knowledge about all topics, Moreover children will learn extra curriculum activities as well.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-item-head">
<span class="faq-item-text">Is it necessary to download every time we want to play a game?</span>
<span class="faq-item-icon">
<i class="fa-solid fa-plus"></i>
</span>
</div>
<div class="faq-item-body">
<p>Not at all, kidyking is a web gaming platform where anyone can play just clicking the game but it is
important to subscribe otherwise you can play all the games.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===================================== -->
<!-- FAQ PART END -->
<!-- ===================================== -->
<!-- ===================================== -->
<!-- FOOTER SECTION START -->
<!-- ===================================== -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-xl-2 col-lg-4 col-sm-6 col-xs-12">
<div class="single_footer">
<h4>Navigate</h4>