-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1349 lines (1309 loc) · 81.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 lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=ENTER_YOUR_ANALYTICS_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'ENTER_YOUR_ANALYTICS_ID');
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'ENTER_YOUR_TAG_ID');</script>
<!-- End Google Tag Manager -->
<title>Finstreet | India's 1st ever Financial Freedom Coach</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<!-- Not required meta tags but essential for seo and link sharing -->
<meta name="description"
content="If You Have To START ALL OVER FROM ZERO... WHAT WOULD YOU DO FROM DAY 1 TO DAY 30, STEP-BY-STEP?">
<meta name="Keywords"
content="If You Have To START ALL OVER FROM ZERO... WHAT WOULD YOU DO FROM DAY 1 TO DAY 30, STEP-BY-STEP?">
<meta property="og:title" content="Finstreet | India's 1st ever Financial Freedom Coach" />
<meta property="og:url" content="https://cryptonite.finstreet.in/" />
<meta property="og:description"
content="If You Have To START ALL OVER FROM ZERO... WHAT WOULD YOU DO FROM DAY 1 TO DAY 30, STEP-BY-STEP?">
<meta property="og:image" itemprop="image" content="http://cryptonite.finstreet.in/images/cryptonitepost.png" />
<meta property="og:image:secure_url" itemprop="image"
content="http://cryptonite.finstreet.in/images/cryptonitepost.png" />
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="315">
<meta property="og:type" content="website" />
<link rel="icon" href="images/cropped-Fin-270x270.jpg">
<style>
/* HOVER STYLES */
.link {
position: relative;
display: inline-block;
}
.link .tip {
/* visibility: hidden; */
opacity: 1;
color: #fff;
text-align: center;
padding: 5px 0;
position: absolute;
z-index: 1000;
top: -5px;
right: 105%;
transition: 0.5s ease;
overflow: hidden;
margin-right: 20px;
}
/* .link:hover .tip {
visibility: visible;
opacity: 1;
} */
input[type=range]::-webkit-slider-runnable-track {
background: #fff;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background-color: #FF4747;
margin-top: -9px;
width: 25px;
height: 25px;
border-radius: 50%;
border: 2px solid white;
cursor: pointer;
transition: .3s ease-in-out;
}
input[type="range"]::-webkit-slider-thumb:active {
transform: scale(0.5);
}
</style>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=ENTER_YOUR_TAG_ID" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<meta name="can_calculate_taxes" content="false">
<div class="d-none d-lg-block">
<!-- sidenav -->
<!-- <div id="st-2" class=" st-sticky-share-buttons st-left st-toggleable st-has-labels st-show-total ">
<div class="st-total ">
<span class="st-label">1.1k</span>
<span class="st-shares">Shares</span>
</div>
<div class="st-btn st-first" onclick="window.location = 'https://www.facebook.com/sharer.php?display=page&u=https%3A%2F%2Fcryptonite.finstreet.in%2F'" data-network="facebook" target="_blank" style="display: inline-block;">
<img alt="facebook sharing button" src="https://platform-cdn.sharethis.com/img/facebook.svg">
<span class="st-label">475</span>
</div>
<div class="st-btn" onclick="window.location ='https://twitter.com/intent/tweet?text=India%27s%20Biggest%20Cryptocurrency%20Event%20%7C%20Register%20Now&url=https%3A%2F%2Fcryptonite.finstreet.in'" data-network="twitter" style="display: inline-block;">
<img alt="twitter sharing button" src="https://platform-cdn.sharethis.com/img/twitter.svg">
<span class="st-label">178</span>
</div>
<div class="st-btn" onclick="window.location = 'mailto:support@finstreet.in'" data-network="email" style="display: inline-block;">
<img alt="email sharing button" src="https://platform-cdn.sharethis.com/img/email.svg">
<span class="st-label">52</span>
</div>
<div class="st-btn st-last" data-action="share/whatsapp/share" onclick="window.location = 'https://web.whatsapp.com/send?text=If You Have To START ALL OVER FROM ZERO... WHAT WOULD YOU DO FROM DAY 1 TO DAY 30, STEP-BY-STEP? https%3A%2F%2Fcryptonite.finstreet.in'" data-network="whatsapp" style="display: inline-block;">
<img alt="whatsapp sharing button" src="https://platform-cdn.sharethis.com/img/whatsapp.svg">
<span class="st-label">386</span>
</div>
<div class="st-toggle">
<div class="st-left">
<img alt="arrow_left sharing button" src="https://platform-cdn.sharethis.com/img/arrow_left.svg">
</div>
<div class="st-right">
<img alt="arrow_right sharing button" src="https://platform-cdn.sharethis.com/img/arrow_right.svg">
</div>
</div>
</div> -->
<!-- Navigation -->
<div style="padding:20px 0px;outline:none;">
<nav class="navbar navbar-expand-lg navbar-dark static-top">
<div class="container">
<a class="navbar-brand" href="/">
<img src="images/Finstreet logo@2x.png" alt="" width="100" height="44">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto font-roboto-b" style="font-size: 18px;font-weight:bold;">
<li class="nav-item active">
<a class="nav-link" href="/">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="https://finstreet.in/about-me/">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="affiliate">Affiliate</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="https://www.finstreet.in/contact/">Contact</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="user-login">Login</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Page Content -->
<!-- <div class="container-fluid" style="background-color:rgb(17, 29, 42);">
<div class="container" style="padding:10px 0px;">
<div class="col-md-12">
<b class="font-roboto-r" style="display:block;text-align:center;font-size:22px;color:#fff49B;">Registrations for Batch 3.0 Are Open</b>
</div>
</div>
</div> -->
<div class="container-fluid"
style="background-image:url(images/background-pic.png);height:530px;background-size:cover;padding-top:60px;margin-top:-110px;">
<div class="container">
<div class="col-md-12 center-remove"
style="padding-top:80px !important;padding:20px 0px;display:flex;justify-content:center;">
<div class="col-md-5 price_class"
style="margin-right:40px;float:left;width:700px;background-color:#434D6E;box-shadow:0px 10px 6px #00000029;border-radius:10px;z-index: 1000;">
<img src="images/guitar.png" class="target" style="width: 100%;padding:20px 5px;">
<div>
<div class="d-flex justify-content-center">
<p style="font-size:25px;padding-top:5px;margin-bottom:0px;">
<span class="font-montserrat-b price" style="color:#fff;font-size:40px;">₹
00.0 </span>
<span class="font-roboto-m" style="color:#C5C5C5;font-size:20px;"><strike
class="strike"><b>₹ 12,800</b></strike> 97% off </span>
</p>
</div>
<div class="d-flex justify-content-center" style="padding-top:24px;">
<p><img src="images/Mask Group 1-1.png"> <span class="font-roboto-r"
style="color:#fff;padding:5px;vertical-align:bottom;"> 3 days left at this
price!</span></p>
</div>
<div class="d-flex justify-content-center">
<div class="col-md-8 de elBTN elAlign_center elMargin0 ui-droppable de-editable"
id="tmp_button-86350" data-de-type="button" data-de-editing="false"
data-title="button"
style="background: #FF4747 0% 0% no-repeat padding-box;border-radius:10px;padding:10px;box-shadow: 0px 10px 6px #00000029;">
<a href="checkout"
class="elButton elButtonSize1 elButtonColor1 elButtonRounded elButtonPadding2 elBtnVP_10 elButtonCorner3 elButtonFluid elBtnHP_25 elBTN_b_1 elButtonShadowN1 elButtonTxtColor1 mfs_20"
style="color:rgb(255, 255, 255);font-weight:600;font-size:24px;"
rel="noopener noreferrer">
<span class="elButtonMain font-roboto-b">Buy Entry Ticket</span>
<span class="elButtonSub"></span>
</a>
</div>
</div>
<div>
<p class="font-roboto-b"
style="font-size:24px;color:#fff;margin-top:16px;padding-left:19%;">This course
includes</p>
</div>
<div class="d-flex justify-content-center">
<ul class="font-roboto-r" style="font-size:22px;color:#fff;list-style:none;">
<li>
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div> 10 hours on-demand video
</li>
<li>
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div> 184 downloadable resources
</li>
<li>
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div> Full lifetime access
</li>
<li>
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div> Access on mobile and TV
</li>
<li>
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div> Certificate of Completion
</li>
</ul>
</div>
<hr style="border:1px solid #FF4747;">
<div class="d-flex justify-content-center p-4">
<div>
<img src="images/share-icon.png"> <span class="font-roboto-r"
style="font-size:22px;color:#FFF;vertical-align:middle;"> Share</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div
style="margin:20px 0px;height:88px;background:#A8A8A8 0% 0% no-repeat padding-box;opacity:1;">
</div>
<div
style="margin:25px 0px;height:88px;background:#A8A8A8 0% 0% no-repeat padding-box;opacity:1;">
</div>
<div class="font-montserrat-m" style="margin:20px 0px;height:100px;opacity:1;">
<p style="font-size:23px;color:#fff;">Lorem ipsum dolor sit amet, consetetur sadipscing
elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna</p>
</div>
</div>
</div>
</div>
</div>
<!--Content -->
<div class="container-fluid" style="background-color:#242838;">
<div class="container" style="background-color:#2F3549;padding:20px 0px;height:3320px;">
<div class="col-6" style="background-color:#FF4747;float:right;margin-right:38px;box-shadow: 0px 10px 6px #00000029;
border-radius: 10px;">
<p class="font-montserrat-m m-0" style="padding:10px;color:#fff;text-align:center;font-size:36px;">
Key Features</p>
<div>
<div class="justify-content-center row">
<div class="col-1">
<img src="images/previous-track-button.png">
</div>
<div class="col-8 p-1">
<input type="range" class="custom-range" min="0" max="6" step="2" id="customRange3">
</div>
<div class="col-1 p-0 text-center">
<img style="transform:rotate(180deg);" src="images/previous-track-button.png">
</div>
</div>
</div>
<div class="container-fluid p-0 d-flex justify-content-center align-items-center pt-2">
<div class="row p-2">
<div class="col-4 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:22px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:18px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-4 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:22px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:18px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-4 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:22px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:18px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
</div>
</div>
<div class="container-fluid p-0 d-flex justify-content-center align-items-center pt-2 pb-3">
<div class="row p-2">
<div class="col-4 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:22px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:18px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-4 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:22px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:18px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-4 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:22px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:18px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
</div>
</div>
</div>
<div class="col-6 mt-5" style="float:right;margin-right:38px;">
<p class="font-montserrat-m m-0 text-uppercase"
style="padding:10px;color:#fff;text-align:center;font-size:36px;">description</p>
<div class="link">
<p class="font-roboto-r" style="color:#FFF;font-size:18px;">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam
et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est
Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.<br><br> Lorem ipsum dolor
sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores
et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
</p>
<!-- <div class="tip col-10" style="float:left;width:700px;background-color:#434D6E;box-shadow:0px 10px 6px #00000029;border-radius:10px;top:-727px;">
<div class="d-flex justify-content-center pt-5">
<p style="font-size:25px;padding-top:5px;margin-bottom:0px;">
<span class="font-montserrat-b price" style="color:#fff;font-size:40px;">₹ 00.0 </span>
<span class="font-roboto-m" style="color:#C5C5C5;font-size:20px;"><strike class="strike"><b>₹ 12,800</b></strike> 97% off </span>
</p>
</div>
<div class="d-flex justify-content-center" style="padding-top:24px;">
<p><img src="images/Mask Group 1-1.png"> <span class="font-roboto-r" style="color:#fff;padding:5px;vertical-align:bottom;"> 3 days left at this price!</span></p>
</div>
<div class="d-flex justify-content-center">
<div class="col-md-8 de elBTN elAlign_center elMargin0 ui-droppable de-editable" id="tmp_button-86350" data-de-type="button" data-de-editing="false" data-title="button" style="background: #FF4747 0% 0% no-repeat padding-box;border-radius:10px;padding:10px;box-shadow: 0px 10px 6px #00000029;">
<a href="checkout" class="elButton elButtonSize1 elButtonColor1 elButtonRounded elButtonPadding2 elBtnVP_10 elButtonCorner3 elButtonFluid elBtnHP_25 elBTN_b_1 elButtonShadowN1 elButtonTxtColor1 mfs_20" style="color:rgb(255, 255, 255);font-weight:600;font-size:24px;" rel="noopener noreferrer">
<span class="elButtonMain font-roboto-b">Buy Entry Ticket</span>
<span class="elButtonSub"></span>
</a>
</div>
</div>
<div>
<p class="font-roboto-b" style="font-size:24px;color:#fff;margin-top:16px;padding-left:19%;text-align:left;">This course includes</p>
</div>
<div class="d-flex justify-content-center">
<ul class="font-roboto-r" style="font-size:22px;color:#fff;list-style:none; text-align:left;">
<li><div class="" style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;"></div> 10 hours on-demand video </li>
<li><div class="" style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;"></div> 184 downloadable resources </li>
<li><div class="" style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;"></div> Full lifetime access </li>
<li><div class="" style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;"></div> Access on mobile and TV </li>
<li><div class="" style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;"></div> Certificate of Completion</li>
</ul>
</div>
<hr style="border:1px solid #FF4747;">
<div class="d-flex justify-content-center p-4">
<div>
<img src="images/share-icon.png"> <span class="font-roboto-r" style="font-size:22px;color:#FFF;vertical-align:middle;"> Share</span>
</div>
</div>
</div> -->
</div>
</div>
<div class="col-6 mt-5 pb-5"
style="float:right;margin-right:38px;background-image: url(images/person-playing-sun-burst-electric-bass-guitar-in-bokeh-96380.png);background-size:cover;border-radius: 10px;padding: 36px;box-shadow: 0px 10px 6px #00000029;">
<div>
<p class="font-montserrat-m m-0 text-uppercase"
style="padding:10px;color:#fff;text-align:center;font-size: 27px;">How the course is
designed?</p>
<div class="mt-4"
style="background:#FF4747 0% 0% no-repeat padding-box;box-shadow:0px 6px 6px #00000029;border-radius:127px;">
<div class="row" style="padding:10px;">
<div class="col-3">
<div
style="background-color:#fff;border-radius: 120px;border: 1px solid #fff;height: 100px;margin-top: 0px;margin-left: 0px;">
</div>
</div>
<div class="col-8">
<h2 class="font-montserrat-b m-0 pt-1" style="font-size:24px;color:#FFF; ">Title
</h2>
<p class="font-roboto-r m-0 py-2"
style="font-size:20px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed diam nonumy eirmod</p>
</div>
</div>
</div>
<div class="mt-4"
style="background:#FF4747 0% 0% no-repeat padding-box;box-shadow:0px 6px 6px #00000029;border-radius:127px;">
<div class="row" style="padding:10px;">
<div class="col-3">
<div
style="background-color:#fff;border-radius: 120px;border: 1px solid #fff;height: 100px;margin-top: 0px;margin-left: 0px;">
</div>
</div>
<div class="col-8">
<h2 class="font-montserrat-b m-0 pt-1" style="font-size:24px;color:#FFF; ">Title
</h2>
<p class="font-roboto-r m-0 py-2"
style="font-size:20px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed diam nonumy eirmod</p>
</div>
</div>
</div>
<div class="mt-4"
style="background:#FF4747 0% 0% no-repeat padding-box;box-shadow:0px 6px 6px #00000029;border-radius:127px;">
<div class="row" style="padding:10px;">
<div class="col-3">
<div
style="background-color:#fff;border-radius: 120px;border: 1px solid #fff;height: 100px;margin-top: 0px;margin-left: 0px;">
</div>
</div>
<div class="col-8">
<h2 class="font-montserrat-b m-0 pt-1" style="font-size:24px;color:#FFF; ">Title
</h2>
<p class="font-roboto-r m-0 py-2"
style="font-size:20px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed diam nonumy eirmod</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-6 mt-5" style="float:right;margin-right:38px;">
<p class="font-montserrat-m m-0 text-uppercase"
style="padding:10px;color:#fff;text-align:center;font-size:27px;">Why choose this course?</p>
<div class="link">
<p class="font-roboto-r" style="color:#FFF;font-size:18px;">
I've been mentoring a lot of budding musicians regarding how to make money in this industry
and there was not even a single course for Indian musicians which I could recommend.
<br><br>So, I decided to come up with this course which is -
</p>
<div class="row d-flex pt-3">
<div class="col-md-2" style="display:grid;justify-content:center;">
<img src="images/tone.svg" alt="">
</div>
<div class="col-md-8 font-roboto-r color-white" style="padding:0px 10px;font-size: 20px;">
<em>Totally unique course explaining you how to earn through music</em>
</div>
</div>
<div class="row d-flex pt-3">
<div class="col-md-2" style="display:grid;justify-content:center;">
<img src="images/mic.svg" alt="">
</div>
<div class="col-md-8 color-white font-roboto-r pt-3"
style="padding:0px 10px;font-size: 20px;">
<em>Focus towards Indian music industry.</em>
</div>
</div>
<div class="d-flex pt-3 row">
<div class="col-md-2" style="display:grid;justify-content:center;">
<img src="images/music.svg" alt="">
</div>
<div class="col-md-8 font-roboto-r color-white" style="padding:0px 10px;font-size: 20px;">
<em>Detailed insights, experience based course not a textbook one</em>
</div>
</div>
<div class="row d-flex pt-3">
<div class="col-md-2" style="display:grid;justify-content:center;">
<img src="images/mic2.svg" alt="">
</div>
<div class="col-md-8 font-roboto-r color-white" style="padding:0px 10px;font-size: 20px;">
<em>Designed keeping Independent (Indie) artists in my mind as well</em>
</div>
</div>
<div class="row d-flex pt-3">
<div class="col-md-2" style="display:grid;justify-content:center;">
<img src="images/headphone.svg" alt="">
</div>
<div class="col-md-8 font-roboto-r color-white" style="padding:0px 10px;font-size: 20px;">
<em>Legalities like profit distribution, royalties</em>
</div>
</div>
</div>
</div>
<div class="col-6 mt-5 pb-4"
style="float:right;margin-right:38px;background-image: url(images/table-music-power-sound-63703.png);background-size:cover;border-radius:10px;padding:36px;box-shadow: 0px 10px 6px #00000029;">
<div class="link">
<p class="font-montserrat-m m-0 text-uppercase"
style="color:#fff;text-align:center;font-size: 23px;">why learn from Shubham semwal?</p>
<div class="mt-4 color-white" style="padding:10px;">
<div class="d-flex justify-content-center">
<img src="images/22.png">
</div>
<p class="mt-4 font-roboto-r">- I've the extraordinary experience of starting things from
scratch.</p>
<p class="font-roboto-r mt-4">- I've literally learnt everything by myself apart from music
like production, running YouTube channel, video production, editing, digital marketing,
running ads.</p>
<p class="font-roboto-r mt-4">- I'll be sharing my experience not some textbook stuff as
I've been in this industry for more than 10 years.. I've worked with a lot of industry
experts especially the ones who are earning money and I know how they did it as well.
</p>
<p class="font-roboto-r mt-4">- Only a successful artist can tell you how to become
successful. Majority of the times, the instructors who are teaching aren't that
successful or they are teaching just for the sake of teaching.</p>
</div>
</div>
</div>
</div>
</div>
<!-- footer -->
<div class="container-fluid p-0 font-montserrat-m color-white" style="background-color:#242838;">
<div class="container-fluid p-3 text-center" style="background-color:#FF4747;">
<h5 class="mb-0">Have a Question for us? Contact Our 24X7 Customer Support.</h5>
</div>
<div class="d-flex justify-content-center p-4">
<div>
<img src="images/Support.svg" alt="">
</div>
<div class="pl-3 font-montserrat-m pt-4">
<p>support@finstreet.in</p>
<p>+91-8968232722</p>
</div>
</div>
</div>
<div class="container-fluid text-center font-montserrat-m " style="background-color:#434D6E;">
<div class="p-3">
<h5 class="color-white">Copyright © 2019 All Right Reserved. Designed By <a href="">QuadBTech</a></h5>
</div>
</div>
</div>
<!-- mobile view -->
<div class="d-lg-none position-relative">
<!-- header -->
<div class="fixed-top" style="padding: 50px 0px;background-image:url(images/background-pic.png);outline:none;">
<header>
<div class="position-fixed h-100 w-100"
style="opacity: 1; backdrop-filter: blur(8px); z-index: 16; display: none; top: 0px;" id="drawer">
<div class="container h-100 w-100 pr-0">
<div class="row h-100 w-100 mr-0 position-absolute">
<div class="col-2 d-flex justify-content-end pt-5 pl-0" id="cross"
style="padding-right: 15px !important;">
<div id="mobile-cross">
<p class="m-0" style="font-size: 30px;color:#fff;">X</p>
</div>
</div>
<div class="col-10 position-relative"
style="background: #0505055c 0% 0% no-repeat padding-box;">
<div class="position-absolute w-100" style="top:35%;">
<p class="footer-text font-weight-light text-center"
style="font-size: 30px;margin-bottom: 5px;font-family: europhonic;color:#FF4747;"
onclick="window.location = '/'">Home</p>
<p class="footer-text font-weight-light text-center"
style="font-size: 30px;margin-bottom: 5px;font-family: europhonic;color:#fff;"
onclick="window.open('https://www.finstreet.in/about-me/','_blank')">About</p>
<p class="footer-text font-weight-light text-center"
style="font-size: 30px;margin-bottom: 5px;font-family: europhonic;color:#fff;"
onclick="window.open('https://www.finstreet.in/contact/','_blank')">Contact</p>
<p class="footer-text font-weight-light text-center"
style="font-size: 30px;margin-bottom:10px;font-family: europhonic;color:#fff;"
onclick="window.location = 'user-login'">Login</p>
</div>
</div>
</div>
</div>
</div>
<div class="nav-container">
<div id="mobile-navbar">
<div style="position: fixed;right: 20px;margin-top: -26px;z-index:15 !important;"
id="open-drawer">
<hr
style="width: 40px;height: 4px;background-color: white;margin-top: 10px;margin-bottom: 0px;border-radius: 100px;">
<hr
style="width: 30px;height: 4px;background-color: white;margin-top: 10px;margin-bottom: 0px;border-radius: 100px;margin-left: 9px;">
</div>
<div class="d-flex position-fixed align-items-center w-100"
style="z-index: 10;margin-top: -30px;margin-left: 15px;">
<a class="navbar-brand header-text" id="mobile-header-logo-text" href="/">
<img class="logo-header" src="images/Finstreet logo@2x.png" alt="">
</a>
</div>
</div>
</div>
</header>
</div>
<!-- Page Content -->
<!-- <div class="container-fluid" style="background-color:rgb(17, 29, 42);">
<div class="container" style="padding:10px 0px;">
<div class="col-md-12">
<b class="font-roboto-r" style="display:block;text-align:center;font-size:22px;color:#fff49B;">Registrations for Batch 3.0 Are Open</b>
</div>
</div>
</div> -->
<div class="container-fluid"
style="margin-top:100px;background-image:url(images/background-pic.png);height:900px;background-size:cover;">
<div class="container">
<div class="col-md-12"
style="padding-top:80px !important;padding:20px 0px;display:flex;justify-content:center;">
<div class="col-md-12">
<div
style="margin:20px 0px;height:88px;background:#A8A8A8 0% 0% no-repeat padding-box;opacity:1;">
</div>
<div
style="margin:25px 0px;height:88px;background:#A8A8A8 0% 0% no-repeat padding-box;opacity:1;">
</div>
<div class="d-inline font-montserrat-m" style="margin:20px 0px;height:100px;opacity:1;">
<p style="font-size:23px;color:#fff;">Lorem ipsum dolor sit amet, consetetur sadipscing
elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna</p>
</div>
<div class="d-flex justify-content-center">
<p style="font-size:25px;padding-top:5px;margin-bottom:0px;">
<span class="font-montserrat-b price-mobile" style="color:#fff;font-size:40px;">₹ 00.0
</span>
<span class="font-roboto-m" style="color:#C5C5C5;font-size:20px;"><strike
class="strike"><b>₹ 12,800</b></strike> 97% off </span>
</p>
</div>
<div class="d-flex justify-content-center" style="padding-top:24px;">
<p><img src="images/Mask Group 1-1.png"> <span class="font-roboto-r"
style="color:#fff;padding:5px;vertical-align:bottom;"> 3 days left at this
price!</span></p>
</div>
<div class="d-flex justify-content-center">
<div class="col-md-12 de elBTN elAlign_center elMargin0 ui-droppable de-editable"
id="tmp_button-86350" data-de-type="button" data-de-editing="false" data-title="button"
style="background: #FF4747 0% 0% no-repeat padding-box;border-radius:10px;padding:10px;box-shadow: 0px 10px 6px #00000029;">
<a href="checkout"
class="elButton elButtonSize1 elButtonColor1 elButtonRounded elButtonPadding2 elBtnVP_10 elButtonCorner3 elButtonFluid elBtnHP_25 elBTN_b_1 elButtonShadowN1 elButtonTxtColor1 mfs_20"
style="color:rgb(255, 255, 255);font-weight:600;font-size:24px;"
rel="noopener noreferrer">
<span class="elButtonMain font-roboto-b">Buy Entry Ticket</span>
<span class="elButtonSub"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- -->
<div class="container-fluid" style="background-color:#2F3549;">
<div class="container pb-3">
<div class="col-md-12" style="display:flex;justify-content:center;">
<div class="col-md-12"
style="float:left;width:700px;background-color:#434D6E;box-shadow:0px 10px 6px #00000029;">
<img src="images/guitar.png" style="width: 100%;padding: 0 5px 20px 5px;margin-top: -60px;">
<div class="mb-4" style="margin-left:13px;">
<div>
<p class="font-roboto-b"
style="font-size:16px;color:#fff;margin-top:16px;padding-left:2%;">This course
includes</p>
</div>
<div class="d-flex pt-2">
<div style="display:grid;justify-content:center;">
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div>
</div>
<div class="col-md-8 font-roboto-r color-white"
style="padding:0px 10px;font-size: 16px;">
<em style="vertical-align:sub;">10 hours on-demand video</em>
</div>
</div>
<div class="d-flex pt-2">
<div style="display:grid;justify-content:center;">
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div>
</div>
<div class="col-md-8 color-white font-roboto-r"
style="padding:0px 10px;font-size: 16px;">
<em style="vertical-align:sub;">184 downloadable resources</em>
</div>
</div>
<div class="d-flex pt-2">
<div style="display:grid;justify-content:center;">
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div>
</div>
<div class="col-md-8 font-roboto-r color-white"
style="padding:0px 10px;font-size: 16px;">
<em style="vertical-align:sub;">Full lifetime access</em>
</div>
</div>
<div class="d-flex pt-2">
<div style="display:grid;justify-content:center;">
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div>
</div>
<div class="col-md-8 font-roboto-r color-white"
style="padding:0px 10px;font-size: 16px;">
<em style="vertical-align:sub;">Access on mobile and TV</em>
</div>
</div>
<div class="d-flex pt-2">
<div style="display:grid;justify-content:center;">
<div class=""
style="width:28px;border-radius:15px;height:28px;background-color:#6FB2FF;float:left;margin-right:10px;">
</div>
</div>
<div class="col-md-8 font-roboto-r color-white"
style="padding:0px 10px;font-size: 16px;">
<em style="vertical-align:sub;">Certificate of Completion</em>
</div>
</div>
</div>
<div class="d-flex justify-content-center">
<p style="font-size:25px;padding-top:5px;margin-bottom:0px;">
<span class="font-montserrat-b price-mobile" style="color:#fff;font-size:25px;">₹ 00.0
</span>
<span class="font-roboto-m" style="color:#C5C5C5;font-size:15px;"><strike
class="strike"><b>₹ 12,800</b></strike> 97% off </span>
</p>
</div>
<div class="d-flex justify-content-center" style="padding-top:14px;">
<p><img src="images/Mask Group 1-1.png"> <span class="font-roboto-r"
style="color:#fff;padding:5px;vertical-align:bottom;font-size:15px;"> 3 days left at
this price!</span></p>
</div>
<div class="d-flex justify-content-center">
<div class="de elBTN elAlign_center elMargin0 ui-droppable de-editable"
id="tmp_button-86350" data-de-type="button" data-de-editing="false" data-title="button"
style="background: #FF4747 0% 0% no-repeat padding-box;border-radius:10px;padding:10px 15px;box-shadow: 0px 10px 6px #00000029;">
<a href="checkout"
class="elButton elButtonSize1 elButtonColor1 elButtonRounded elButtonPadding2 elBtnVP_10 elButtonCorner3 elButtonFluid elBtnHP_25 elBTN_b_1 elButtonShadowN1 elButtonTxtColor1 mfs_20"
style="color:rgb(255, 255, 255);font-weight:600;font-size:20px;"
rel="noopener noreferrer">
<span class="elButtonMain font-roboto-b">Buy Entry Ticket</span>
<span class="elButtonSub"></span>
</a>
</div>
</div>
<hr style="border:1px solid #FF4747;">
<div class="d-flex justify-content-center p-2">
<div>
<img src="images/share-icon.png"> <span class="font-roboto-r"
style="font-size:16px;color:#FFF;vertical-align:middle;"> Share</span>
</div>
</div>
</div>
</div>
<div class="col-12 mt-4"
style="background-color:#FF4747;box-shadow: 0px 10px 6px #00000029;border-radius: 10px;">
<p class="font-montserrat-m m-0" style="padding:18px;color:#fff;text-align:center;font-size:20px;">
Key Features</p>
<div>
<div class="justify-content-center row">
<div class="col-1" style="margin-right:10px;
">
<img src="images/previous-track-button.png">
</div>
<div class="col-8 p-1">
<input type="range" class="custom-range" min="0" max="5" step="0.5" id="customRange3">
</div>
<div class="col-1 p-0 text-center">
<img style="transform:rotate(180deg);" src="images/previous-track-button.png">
</div>
</div>
</div>
<div class="container-fluid p-0 d-flex justify-content-center align-items-center pt-2">
<div class="row p-2">
<div class="col-6 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:20px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:16px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-6 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:20px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:16px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
</div>
</div>
<div class="container-fluid p-0 d-flex justify-content-center align-items-center pt-2">
<div class="row p-2">
<div class="col-6 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:20px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:16px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-6 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:20px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:16px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
</div>
</div>
<div class="container-fluid p-0 d-flex justify-content-center align-items-center pt-2">
<div class="row p-2">
<div class="col-6 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:20px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:16px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
<div class="col-6 p-0">
<div class="w-100" style="border-radius: 50%;">
<a href="products/designed-by-you">
<picture class="d-flex justify-content-center">
<img style="border-radius:50%;" src="images/22.png" width="122">
</picture>
</a>
</div>
<h2 class="font-montserrat-b m-0 pt-1 text-center" style="font-size:20px;color:#FFF; ">
Title</h2>
<p class="font-roboto-r m-0 py-2 text-center"
style="font-size:16px;color:#FFF;line-height:90%;">Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- -->
<div class="container-fluid" style="background-color:#2F3549;margin-top:-1px;">
<div class="container">
<p class="font-montserrat-m m-0 text-uppercase"
style="padding:10px;color:#fff;text-align:center;font-size:20px;">description</p>
<div class="link">
<p class="font-roboto-r" style="color:#FFF;font-size:16px;text-align:justify;">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt
ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor
sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et
justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem
ipsum dolor sit amet.<br><br> Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
sed
</p>
</div>
</div>
</div>
<!-- -->
<div class="container-fluid" style="background-color:#2F3549;margin-top:-1px;">
<div class="container">
<div class="pb-4"
style="box-shadow: 0px 10px 6px #00000029;background-image: url(images/person-playing-sun-burst-electric-bass-guitar-in-bokeh-96380.png);background-size:cover;border-radius:10px;padding: 0 15px;">
<p class="font-montserrat-m m-0 text-uppercase"
style="padding: 25px 0;color:#fff;text-align:center;font-size: 17px;">How the course is
designed?</p>
<div class="container"
style="background:#FF4747 0% 0% no-repeat padding-box;box-shadow:0px 6px 6px #00000029;border-radius:127px;">
<div class="p-2 row">
<div class="col-3">
<div
style="background-color:#fff;border-radius: 120px;border: 1px solid #fff;height: 80px;width: 80px;margin-top: 2px;margin-left: -14px;">
</div>
</div>
<div class="col-9">
<h2 class="font-montserrat-b m-0 pt-1" style="font-size: 20px;color:#FFF;">Title</h2>
<p class="font-roboto-r m-0 py-2" style="font-size: 14px;color:#FFF;line-height:90%;">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod</p>
</div>
</div>
</div>
<div class="container"
style="background:#FF4747 0% 0% no-repeat padding-box;box-shadow:0px 6px 6px #00000029;border-radius:127px;">
<div class="mt-2 p-2 row">
<div class="col-3">
<div
style="background-color:#fff;border-radius: 120px;border: 1px solid #fff;height: 80px;width: 80px;margin-top: 2px;margin-left: -14px;">
</div>
</div>
<div class="col-9">
<h2 class="font-montserrat-b m-0 pt-1" style="font-size: 20px;color:#FFF;">Title</h2>
<p class="font-roboto-r m-0 py-2" style="font-size: 14px;color:#FFF;line-height:90%;">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod</p>
</div>
</div>
</div>
<div class="container"
style="background:#FF4747 0% 0% no-repeat padding-box;box-shadow:0px 6px 6px #00000029;border-radius:127px;">
<div class="mt-2 p-2 row">
<div class="col-3">