-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1026 lines (989 loc) · 41.3 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>investment website </title>
<!-- -------- anime css ------ -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<script src="https://kit.fontawesome.com/cecd2c945d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="index.css">
<!-- Start of Async Drift Code -->
<script>
"use strict";
!function() {
var t = window.driftt = window.drift = window.driftt || [];
if (!t.init) {
if (t.invoked) return void (window.console && console.error && console.error("Drift snippet included twice."));
t.invoked = !0, t.methods = [ "identify", "config", "track", "reset", "debug", "show", "ping", "page", "hide", "off", "on" ],
t.factory = function(e) {
return function() {
var n = Array.prototype.slice.call(arguments);
return n.unshift(e), t.push(n), t;
};
}, t.methods.forEach(function(e) {
t[e] = t.factory(e);
}), t.load = function(t) {
var e = 3e5, n = Math.ceil(new Date() / e) * e, o = document.createElement("script");
o.type = "text/javascript", o.async = !0, o.crossorigin = "anonymous", o.src = "https://js.driftt.com/include/" + n + "/" + t + ".js";
var i = document.getElementsByTagName("script")[0];
i.parentNode.insertBefore(o, i);
};
}
}();
drift.SNIPPET_VERSION = '0.3.1';
drift.load('c3aurgtk94ca');
</script>
<!-- End of Async Drift Code -->
</head>
<body>
<!-- header start -->
<div class="row">
<div class="col-sm-12">
<header id="header">
<a href="#" class="logo"><img src="img/logo.png" height="50px" width="100px"></a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="packages.html">Packages</a></li>
<li><a href="faqs.html">FAQS</a></li>
</ul>
</nav>
<i class="fas fa-bars"></i>
</header>
</div>
</div>
<div class="header-hero">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
<div class="shape shape-6"></div>
<div class="container">
<div class="row align-items-center justify-content-center justify-content-lg-between">
<div class="col-lg-6 col-md-10">
<div class="header-hero-content">
<h1 class="header-title wow fadeInLeftBig" data-wow-duration="3s" data-wow-delay="0.2s"><span>Welcome to G-stock,</span> your <span style="color: rgb(199, 168, 32);">Trusted Investment</span> Company</h1>
<h2 class="text wow fadeInLeftBig" data-wow-duration="3s" data-wow-delay="0.4s">We are Secured and Trusted</h2>
<ul class="d-flex">
<li><a href="" class="btn1">G-Stock</a></li>
<li><a href="https://youtu.be/93b5ffRp-Qo" class="header-video venobox wow fadeInLeftBig"
data-autoplay="true" data-vbtype="video" data-wow-duration="3s" data-wow-delay="1.2s"><i
class="fas fa-play"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="header-image">
<img src="img/mok.gif" alt="" class="image-1 wow fadeInRightBig"
data-wow-duration="3s" data-wow-delay="0.5s">
</div>
</div>
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- small service -->
<section class="section-wrapper">
<div class="container">
<div class="row">
<div class="col-md-5 col-lg-3">
<div class="single-service wow fadeInUp" data-wow-duration="3s" data-wow-delay="0.2s">
<div class="content">
<span class="icon">
<i class="fab fa-battle-net"></i>
</span>
<h3 class="text">Expert Analysts</h3>
<p class="description">Investment websites often offer research reports, market analysis, and investment recommendations to help investors assess investment opportunities.</p>
</div>
<span class="circle-before"></span>
</div>
</div>
<div class="col-md-5 col-lg-3">
<div class="single-service wow fadeInUp" data-wow-duration="3s" data-wow-delay="0.2s">
<div class="content">
<span class="icon">
<i class="fab fa-asymmetrik"></i>
</span>
<h3 class="text">Best Technology</h3>
<p class="description">nvestment websites offer portfolio management tools that allow users to track and manage their investment portfolios.</p>
</div>
<span class="circle-before"></span>
</div>
</div>
<div class="col-md-5 col-lg-3">
<div class="single-service wow fadeInUp" data-wow-duration="3s" data-wow-delay="0.2s">
<div class="content">
<span class="icon">
<i class="fab fa-artstation"></i>
</span>
<h3 class="text">On Time Delivery</h3>
<p class="description"> investment websites serve as platforms for buying and selling various investment products, such as stocks, bonds, mutual funds, or exchange-traded funds (ETFs).</p>
</div>
<span class="circle-before"></span>
</div>
</div>
<div class="col-md-5 col-lg-3">
<div class="single-service wow fadeInUp" data-wow-duration="3s" data-wow-delay="0.2s">
<div class="content">
<span class="icon">
<i class="fab fa-battle-net"></i>
</span>
<h3 class="text">6 Years Experience</h3>
<p class="description">websites frequently provide the latest financial news, market updates, and economic indicators to keep investors informed about important developments that may impact their investment decisions.</p>
</div>
<span class="circle-before"></span>
</div>
</div>
</div>
</div>
</section>
<!-- small service -->
<!-- big service -->
<section class="section-wrapper1">
<div class="container-fluid px-lg-4 px-md-4">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="header-section">
<h2 class="title wow fadeIn" data-wow-delay=".2s">Exclusive Services</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="single-service1">
<div id="carousel1" class="owl-carousel">
<div class="item">
<div class="card text-center">
<div class="card-img-top">
<img src="img/india.jpg"/>
</div>
<div class="card-body">
<h5>Crypto Investments</h5>
<p>.</p>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<div class="card-img-top">
<img src="https://img.icons8.com/doodle/48/000000/coins--v1.png"/>
</div>
<div class="card-body">
<h5>Financial Advisor</h5>
<p>.</p>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<div class="card-img-top">
<img src="https://img.icons8.com/doodle/48/000000/positive-dynamic.png"/>
</div>
<div class="card-body">
<h5>Free trading strategy</h5>
<p>.</p>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<div class="card-img-top">
<img src="https://img.icons8.com/doodle/48/000000/search--v1.png"/>
</div>
<div class="card-body">
<h5>Market Research</h5>
<p></p>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<div class="card-img-top">
<img src="https://img.icons8.com/doodle/48/000000/umbrella.png"/>
</div>
<div class="card-body">
<h5>Insurance & Annuities</h5>
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- big service -->
<!-- counter area -->
<section class="section counter_area">
<div class="container">
<div class="row justify-content-center">
<div class="col-6 col-sm-3 single_counter text-center">
<div class="counter_inner p-3 p-md-0 ">
<div class="counter_item d-inline-block mb-3">
<span id="count1" class="counter fw-bold">10</span>
<span class="fw-bold">M+</span>
</div>
<h5>Happy Clients</h5>
</div>
</div>
<div class="col-6 col-sm-3 single_counter text-center">
<div class="counter_inner p-3 p-md-0">
<div class="counter_item d-inline-block mb-3">
<span id="count2" class="counter fw-bold">23</span>
<span class="fw-bold">K+</span>
</div>
<h5>Total Investment</h5>
</div>
</div>
<div class="col-6 col-sm-3 single_counter text-center">
<div class="counter_inner p-3 p-md-0">
<div class="counter_item d-inline-block mb-3">
<span id="count3" class="counter fw-bold">9</span>
<span class="fw-bold">M+</span>
</div>
<h5>Total Withdrawal</h5>
</div>
</div>
<div class="col-6 col-sm-3 single_counter text-center">
<div class="counter_inner p-3 p-md-0">
<div class="counter_item d-inline-block mb-3">
<span id="count4" class="counter fw-bold">12</span>
<span class="fw-bold">K+</span>
</div>
<h5>Running Days</h5>
</div>
</div>
</div>
</div>
</section>
<!-- counter area -->
<!-- about area -->
<section class="about">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="about-section">
<h2 class="title">About Us</h2>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="row mt-5">
<div class="col-lg-6 order-1 order-lg-2" data-aos="zoom-in" data-aos-delay="100">
<div class="about-img">
<img src="img/india.jpg" class="img-fluid wow fadeInRightBig"
data-wow-duration="3s" data-wow-delay="0.5s" alt="">
</div>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1 content">
<h3>About G-Stock</h3>
<p class="font-italic">
A crucial objective of investment websites is to offer customer support and assistance to their users. This can include providing FAQs, live chat, email support, or phone support to address user inquiries and resolve any issues they may encounter.<br>
</p>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="about-section">
<h2 class="title">Our Mission</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<p class="font-italic">
Having “financial freedom” means different things to different people. But, generally, it is understood as being able to live the lifestyle of your choosing while responsibly managing your finances. In other words, it means having enough savings, investments and cash on hand to live as you desire, both now and in your later years. Additionally, many people qualify financial freedom as having their money work for them rather than having to work for – and stress over – their money.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- about area -->
<!-- package area -->
<section class="Package-area">
<div id="mainCoantiner">
<!--dust particel-->
<div class="margin-body">
<div>
<div class="starsec"></div>
<div class="starthird"></div>
<div class="starfourth"></div>
<div class="starfifth"></div>
</div>
<!--Dust particle end--->
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="Package-section">
<h2 class="title wow fadeIn" data-wow-delay=".2s">Affordable Pricing Plan</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 col-md-3 pricing-column-wrapper">
<div class="pricing-column wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="pricing-price-row">
<div class="pricing-price-wrapper">
<div class="pricing-price">
<img src="https://img.icons8.com/office/80/000000/starred-ticket.png"/>
</div>
</div>
</div>
<div class="pricing-row-title">
<div class="pricing_row_title">Basic</div>
<h2 class="pricing_row_title">$200</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
<h2 class="pricing_row_title">$999</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
</div>
<figure class="pricing-row">Percentage - 2%</figure>
<figure class="pricing-row"><span> Duration - 7 days</span></figure>
<figure class="pricing-row"> Deposit Return - Yes</figure>
<figure class="pricing-row"> Earn 14% after 7 days</figure>
<figure class="pricing-row">24/7 Great Support</figure>
<figure class="pricing-row ">Data Security & Backups</figure>
<div class="pricing-footer">
<div class="gem-button-container gem-button-position-center"><a href="https://www.enationalelectronics.com" target="_blank" class="gem-button gem-green">order now</a></div>
</div>
</div>
</div>
<div class="col-sm-3 col-md-3 pricing-column-wrapper">
<div class="pricing-column wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="pricing-price-row">
<div class="pricing-price-wrapper">
<div class="pricing-price">
<img src="https://img.icons8.com/fluent/80/000000/coin-wallet.png"/>
</div>
</div>
</div>
<div class="pricing-row-title">
<div class="pricing_row_title">Standard</div>
<h2 class="pricing_row_title">$1,000</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
<h2 class="pricing_row_title">$4,999</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
</div>
<figure class="pricing-row">Percentage - 3%</figure>
<figure class="pricing-row"><span> Duration - 7 days</span></figure>
<figure class="pricing-row"> Deposit Return - Yes</figure>
<figure class="pricing-row"> Earn 21% after 7 days</figure>
<figure class="pricing-row">24/7 Great Support</figure>
<figure class="pricing-row ">Data Security & Backups</figure>
<div class="pricing-footer">
<div class="gem-button-container gem-button-position-center"><a class="gem-button gem-purpel">order now</a></div>
</div>
</div>
</div>
<div class="col-sm-3 col-md-3 pricing-column-wrapper">
<div class="pricing-column wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="pricing-price-row">
<div class="pricing-price-wrapper">
<div class="pricing-price">
<img src="https://img.icons8.com/emoji/80/000000/military-medal-emoji.png"/>
</div>
</div>
</div>
<div class="pricing-row-title">
<div class="pricing_row_title">Premium</div>
<h2 class="pricing_row_title">$5,000</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
<h2 class="pricing_row_title">$9,999</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
</div>
<figure class="pricing-row">Percentage - 4%</figure>
<figure class="pricing-row"><span> Duration - 7 days</span></figure>
<figure class="pricing-row"> Deposit Return - Yes</figure>
<figure class="pricing-row"> Earn 31% after 7 days</figure>
<figure class="pricing-row">24/7 Great Support</figure>
<figure class="pricing-row ">Data Security & Backups</figure>
<div class="pricing-footer">
<div class="gem-button-container gem-button-position-center">
<a class="gem-button gem-orange">order now</a></div>
</div>
</div>
</div>
<div class="col-sm-3 col-md-3 pricing-column-wrapper">
<div class="pricing-column wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="pricing-price-row">
<div class="pricing-price-wrapper">
<div class="pricing-price">
<img src="https://img.icons8.com/emoji/80/000000/military-medal-emoji.png"/>
</div>
</div>
</div>
<div class="pricing-row-title">
<div class="pricing_row_title">Ultimate</div>
<h2 class="pricing_row_title">$10,000</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
<h2 class="pricing_row_title">$19,999,999</h2>
<h3 class="pricing_row_title">Minimum Deposit</h3>
</div>
<figure class="pricing-row">Percentage - 7%</figure>
<figure class="pricing-row"><span> Duration - 7 days</span></figure>
<figure class="pricing-row"> Deposit Return - Yes</figure>
<figure class="pricing-row"> Earn 49% after 7 days</figure>
<figure class="pricing-row">24/7 Great Support</figure>
<figure class="pricing-row ">Data Security & Backups</figure>
<div class="pricing-footer">
<div class="gem-button-container gem-button-position-center"><a class="gem-button gem-yellow">order now</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- package area -->
<!-- Choosing -->
<section class="choosing-section">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="choosing-area">
<h2 class="title">Why Choose Us!</h2>
<p>Investors choose us for these and many more reasons</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="choosing-img">
<img src="image/economy-news.jpg" class="img-fluid wow fadeInLeftBig" data-wow-duration="3s" data-wow-delay="0.2s" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="choosing-item wow fadeInRightBig"
data-wow-duration="3s" data-wow-delay="0.4s">
<div class="choosing-icon">
<img src="https://img.icons8.com/color/48/000000/money-bag.png"/>
</div>
<div class="choosing-text">
<h4>Transparent</h4>
<p>We are always transparent in our dealings with our investors</p>
</div>
</div>
<!-- -->
<div class="choosing-item wow fadeInRightBig"
data-wow-duration="3s" data-wow-delay="0.3s">
<div class="choosing-icon">
<img src="https://img.icons8.com/color/48/000000/reply.png"/>
</div>
<div class="choosing-text">
<h4>Quick Response</h4>
<p>Our customer service is top notch and always working round the club to satisfy you.</p>
</div>
</div>
<!-- -->
<div class="choosing-item wow fadeInRightBig"
data-wow-duration="3s" data-wow-delay="0.2s">
<div class="choosing-icon">
<img src="https://img.icons8.com/color/48/000000/idea.png"/>
</div>
<div class="choosing-text">
<h4>Professional Service</h4>
<p>We have a team of dedicated staff who are professionals from different fields working with us.</p>
</div>
</div>
<!-- -->
<div class="choosing-item wow fadeInRightBig"
data-wow-duration="3s" data-wow-delay="0.1s">
<div class="choosing-icon">
<img src="https://img.icons8.com/office/48/000000/settings.png"/>
</div>
<div class="choosing-text">
<h4>Mouth Watering Return on Investment(ROI)</h4>
<p>Our ROIs are juicy and mouth watering that you can not easily resist them.</p>
</div>
</div>
<!-- -->
</div>
</div>
</div>
</section>
<!-- Choosing -->
<!--team -->
<section class="team-page-section">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
<div class="shape shape-6"></div>
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="team-area">
<h2 class="title">Our Team</h2>
</div>
</div>
</div>
<div class="container">
<div class="row clearfix">
<!-- Team Block -->
<div class="team-block col-lg-4 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-skype"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
<div class="image">
<img src="img/gt.jpg" alt="" />
</div>
<div class="lower-content">
<h3>Gaurav</h3>
<div class="designation">Senior Investment Analyst</div>
</div>
</div>
</div>
<!-- Team Block -->
<div class="team-block col-lg-4 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-skype"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
<div class="image">
<img src="img/gt.jpg" alt="" />
</div>
<div class="lower-content">
<h3>Gaurav</h3>
<div class="designation">Investment Analyst</div>
</div>
</div>
</div>
<!-- Team Block -->
<div class="team-block col-lg-4 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-skype"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
<div class="image">
<img src="img/gt.jpg" alt="" />
</div>
<div class="lower-content">
<h3>Gaurav Tripathi</h3>
<div class="designation">Head of Trading</div>
</div>
</div>
</div>
</div>
</div>
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
<div class="shape shape-6"></div>
</section>
<!-- team -->
<!-- ----------- Download Section Start ------- -->
<section class="app-download section-padding">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="download-section">
<h2 class="title">Our App</h2>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="app-download-item">
<i class="fab fa-google-play"></i>
<h3>google play</h3>
<p>Dowload G-Stock Google play app</p>
<a href="#" class="btn btn-2"> Download now</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="app-download-item">
<i class="fab fa-apple"></i>
<h3>apple store</h3>
<p>Dowload G-Stock Apple sTORE play app</p>
<a href="#" class="btn btn-2"> Download now</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="app-download-item">
<i class="fab fa-windows"></i>
<h3>microsoft store</h3>
<p>Dowload G-Stock Microsoft store play app</p>
<a href="#" class="btn btn-2"> Download now</a>
</div>
</div>
</div>
</div>
</section>
<!-- ----------- Download Section End ------- -->
<!-- how it works -->
<section class="how-it-works section-padding">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="how-it-works-section">
<h2 class="title">How It Works</h2>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="how-it-works-item line-right">
<div class="step">1</div>
<h3>download</h3>
<p> Investment websites aim to educate visitors about various investment options, financial markets, investment strategies, and other related topics. </p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="how-it-works-item line-right">
<div class="step">2</div>
<h3>create profile</h3>
<p> Investment websites aim to educate visitors about various investment options, financial markets, investment strategies, and other related topics. </p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="how-it-works-item line-right">
<div class="step">3</div>
<h3>contact us</h3>
<p> Investment websites aim to educate visitors about various investment options, financial markets, investment strategies, and other related topics. </p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="how-it-works-item">
<div class="step">4</div>
<h3>invest</h3>
<p> Investment websites aim to educate visitors about various investment options, financial markets, investment strategies, and other related topics. </p>
</div>
</div>
</div>
</div>
</section>
<!-- how it works -->
<!-- testimonals -->
<section class="testimonals-section">
<div class="container-fluid px-lg-4 px-md-4">
<div class="row justify-content-center text-center">
<div class="col-md-10 col-lg-8">
<div class="header-section">
<h2 class="title wow fadeIn" data-wow-delay=".2s">What Our Client Say</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="testimonal-service">
<div class="owl-carousel testimonials-carousel" >
<div class="item">
<div class="card text-center">
<img src="img/c1.png" class="img-top">
<div class="card-body">
<p>Investment websites often offer research reports, market analysis, and investment </p>
<h5>Nitesh <br/><span>project maneger</span></h5>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<img src="img/c2.png" class="img-top">
<div class="card-body">
<p>Investment websites often offer research reports, market analysis, and investment </p>
<h5>Disha<br/><span>project maneger</span></h5>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<img src="image/custom3.jpg" class="img-top">
<div class="card-body">
<p>good</p>
<h5>Ronne <br/><span>project maneger</span></h5>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<img src="img/c3.jpg" class="img-top">
<div class="card-body">
<p>provide tools and calculators to analyze stocks, mutual funds, or other investment products.</p>
<h5>Ronne Galle <br/><span>project maneger</span></h5>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<img src="img/gt.jpg" class="img-top">
<div class="card-body">
<p>provide tools and calculators to analyze stocks, mutual funds, or other investment products..</p>
<h5>Gaurav <br/><span>project maneger</span></h5>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
<div class="item">
<div class="card text-center">
<img src="image/custom6.jpg" class="img-top">
<div class="card-body">
<p>provide tools and calculators to analyze stocks, mutual funds, or other investment products.</p>
<h5>RRR <br/><span>project maneger</span></h5>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- testimonals -->
<!-- contact -->
<section class="contact section-padding">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-5">
<div class="contact-info">
<h3>For Any Queries and Support</h3>
<div class="contact-info-item">
<i class="fas fa-location-arrow"></i>
<h4>Company Location</h4>
<p>Bhadohi</p>
</div>
<div class="contact-info-item">
<i class="fas fa-envelope"></i>
<h4>Write to us at</h4>
<p>Jalajt41@gmail.com</p>
</div>
<div class="contact-info-item">
<i class="fas fa-phone"></i>
<h>Call us on</h4>
<p>+91 8299890048</p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-7">
<div class="contact-form">
<form>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<input type="text" placeholder="First Name" class="form-control">
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<input type="text" placeholder="Last Name" class="form-control">
</div>
</div>
<div class="col-lg-12">
<div class="form-group">
<input type="text" placeholder="Your Email" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="form-group">
<input type="text" placeholder="Your phone" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="form-group">
<input type="text" placeholder="Subject" class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="form-group">
<textarea placeholder="Message" class="form-control">
</textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<button type="submit" class="btn btn-2">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- contact -->
<footer class="footer-section">
<div class="container">
<div class="footer-cta py-5">
<div class="row">
<div class="col-sm-6 col-xl-4 mb-30">
<div class="single-cta">
<i class="fas fa-map marker-alt"></i>
<div class="cta-text">
<h4>Find us</h4>
<span>India Port U.P.</span>
</div>
</div>
</div>
<div class="col-sm-6 col-xl-4 mb-30">
<div class="single-cta">
<i class="fas fa-phone"></i>
<div class="cta-text">
<h4>Call us</h4>
<span>+91 8299890048</span>
</div>
</div>
</div>
<div class="col-sm-6 col-xl-4 mb-30">
<div class="single-cta">
<i class="fas fa-envelope-open"></i>
<div class="cta-text">
<h4>Mail us</h4>
<span>Jalajt41@gmail.com</span>
</div>
</div>
</div>
</div>
</div>
<div class="footer-content py-5">
<div class="row">
<div class="col-lg-4">
<div class="footer-widget">
<div class="footer-logo">
<a href="#"><img src="img/logo.png" class="img-fluid"></a>
</div>
<div class="footer-text">
<p>The objective of an investment website can vary depending on the specific goals and target audience of the website. However, in general, the objective of an investment website is to provide relevant and accurate information, tools, and resources to assist individuals in making informed investment decisions</p>
</div>
<div class="footer-social-icon">
<span>Follow us</span>
<a href="#"><i class="fab fa-facebook-f facebook-bg"></i></a>
<a href="#"><i class="fab fa-twitter twitter-bg"></i></a>
<a href="#"><i class="fab fa-instagram instagram-bg"></i></a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="footer-widget">
<div class="footer-widget-heading">
<h3>Useful Links</h3>
</div>
<ul>
<li><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">portfolio</a></li>
<li><a href="#">contact</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Our services</a></li>
<li><a href="#">Expert team</a></li>
<li><a href="#">contact us<a></li>
<li><a href="#">latest news</a></li>
</ul>
</div>
</div>
<div class="col-lg-4">
<div class="footer-widget">
<div class="footer-widget-heading">
<h3>Subscribe</h3>
</div>
<div class="footer-text">
<p>Don't miss to subscribe to our new feeds, kindly fill the form below.</p>
</div>
<div class="subscribe-form">
<form action="#">
<input type="text" placeholder="Email Address">
<button><i class="fab fa-telegram-plane"></i></button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="copyright-area">
<div class="container">
<div class="row">
<div class="col-xl-6 col-lg-6 text-center text-lg-left">
<div class="copyright-text">
<p>copyright © 2023, All Right Reserved <a href="#">Gaurav Tripathi</a></p>
</div>
</div>
<div class="col-xl-6 col-lg-6 text-right d-none d-lg-block">
<div class="footer-menu">
<ul>
<li><a href="#">home</a></li>
<li><a href="#">terms</a></li>