-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
900 lines (752 loc) · 36.8 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
<!doctype html>
<html lang="en">
<head>
<title>project Brixep</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<style type="text/css">
.bs-example{
margin: px;
}
</style>
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<div id="overlayer"></div>
<div class="site-wrap">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
</div>
<header >
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top" style="border-bottom: #2DB1FE 2px solid;">
<a class="navbar-brand text-primary" href="#" >Brixep</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav" style="display: flex !important; justify-content: flex-end;">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#home-section">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-section">About Us </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services-section">Incubation </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonials-section">Content </a>
</li>
<li>
<button class="subscribe button2" type="button" style="position: relative; background-color: #2DB1FE; border: 2px solid #2DB1FE ; width: 150px; margin-top: 10px; color: white;">Contact Now</button>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</header>
<div style="border-top: 5px solid #2DB1FE; margin-top: -20px;">
<div style="width: 99vw; " align="center">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" align="center">
<div class="item active">
<img src="images/Main Image.png" alt="Image" style="width:100%; height: auto;">
<div class="b top-left" style="color: white">
<p><h1 class="top-left" style="font-size: 4vw">Breathable Ecosystem to foster BriXepreneurs
</h1></p>
</div>
<div class="center-left">
<a class="button btn-block" href="images/Main Image.png">KNOW MORE</a>
</div>
</div>
<div class="item">
<img src="images/image2.png" alt="Image" style="width:100%;height: auto;">
<div class="b top-left" style="color: white">
<p><h1 class="top-left" style="font-size: 4vw">Communities of BriXep Ecosystem
</h1></p>
</div>
<div class="center-left">
<a class="button btn-block" href="images/office.jpg">DISCOVER COMMUNITIES</a>
</div>
</div>
<div class="item">
<img src="images/Image 3.png" alt="Image" style="width:100%; height: auto;">
<div class="b top-left dark_blue">
<p> <h1 class="top-left" style="font-size: 4vw">A self-sustainable ecosystem
</h1>
</p>
</div>
<div class="center-left">
<a class="button btn-block" href="images/Image 3.png">JOIN STAKEHOLDER COMMUNITIY</a>
</div>
</div>
<div class="item">
<img src="images/Image 4.png" alt="Image" style="width:100%; height: auto;">
<div class="b top-left" style="color: white">
<p><h1 class="top-left" style="font-size: 4vw">Established Human Capital
</h1></p>
</div>
<div class="center-left">
<a class="button btn-block" href="images/Image 4.png">APPLY FOR TRAINING!</a>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev" >
<span class="glyphicon glyphicon-chevron-left" ></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!--BLOG AND ARTICLE-->
<div class="row" style="margin-top: 3vw ;" >
<div class="col-md-6">
<div class="row Blog_Article1">
<div class="col-md-4">
<img class="Blog_img" src="images/blog.svg" >
</div>
<div class="col-md-8">
<h2 class="Blog_h2">BLOG</h2>
<p class="Blog_p">How BriXep identifies the unregulated small-scale resource suppliers and ensure prosperity.</p>
<a class="Blog_a" href="images/blog.svg">Read blog-></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row Blog_Article2">
<div class="col-md-4">
<img class="Blog_img" src="images/article.svg">
</div>
<div class="col-md-8" >
<h2 class="Blog_h2">NEWS</h2>
<p class="Blog_p">BriXep establishes partnership with AWS Activate to provide world class startup support to the ventures at its ecosystem.</p>
<a class="Blog_a" href="images/article.svg">Read news-></a>
</div>
</div>
</div>
</div>
<!--END OF BLOG AND ARTICLE-->
<!--Startup-->
<!-- <h1 class="dark_blue" align="center" style="font-size: 4vw">Venture Development programs</h1>
<br>
<div>
<div class="row" style="justify-content: space-between;">
<section style="padding: 10px">
<p class="p1">Human Capital Training</p>
<img src="images/bulb.jpg" height="100" width="100" align="left">
<div style="width: 250px;">
BriXep Ecosystem identifies unregulated and independent entrepreneurs across India and transform them into established human capital through 6 months of intense training & education on viable concepts.
</div>
</section>
<section style="padding: 10px" >
<p class="p1">BriXep Incubation Program</p>
<img src="images/rocket.jpg" height="100" width="120" align="left">
<br>
<div style="width: 250px;">
BriXep Ecosystem identifies unregulated and independent entrepreneurs across India and transform them into established human capital through 6 months of intense training & education on viable concepts.
</div>
</section>
<section style="padding: 10px">
<p class="p1">BriXep Pre Accelerator Program</p>
<img src="images/society_infrastructure.jpg" height="100" width="100" align="left">
<br>
<div style="width: 250px;">
BriXep Ecosystem identifies unregulated and independent entrepreneurs across India and transform them into established human capital through 6 months of intense training & education on viable concepts.
</div>
</section>
<section style="padding: 10px">
<p class="p1">BriXep Accelerator Program</p>
<img src="images/technical.jpg" height="100" width="100" align="left">
<div style="width: 250px;">
The sustainability department of BriXep offers 12 months of acceleration services to expand the venture globally and put major emphasis on vertical & horizontal integration/expansion.
</div>
</section>
</div>
</div> -->
<!--Our partners -->
<br>
<br>
<div class="large-view">
<h1 align="center" style="font-size: 4vw">Venture Development Program</h1>
<div class="row" style="margin-left: 150px">
<section class="grid-item1" style="margin-right: 100px">
<img src="images/bulb.jpg" height="auto" width="150" align="center" style="margin-left: 20px;">
<p class="p1" style="color: black">Idea Validation</p>
<div align="center" style="color: #2DB1FE; width: 200px; font-size: 1vw"> BriXep Ecosystem identifies unregulated and independent entrepreneurs across India and transform them into established human capital through 6 months of intense training & education on viable concepts.</div>
</section>
<section class="grid-item1" style="margin-right: 100px; ">
<img src="images/rocket.jpg" height="auto" width="150" align="center" style="margin-left: 20px;">
<p class="p1" style="color: black">Startup Incubation</p>
<div align="center" style="color: #2DB1FE; width: 200px; font-size: 1vw">Post establishing human capital, The development department of BriXep provides 6 months of Incubation support to establish & foster the startup ventures.</div>
</section>
<section class="grid-item1" style="margin-right: 100px; ">
<img src="images/society_infrastructure.jpg" height="auto" width="150" align="center" style="margin-left: 30px;">
<p class="p1" style="color: black">Society Infrastructure</p>
<div align="center" style="color: #2DB1FE; width: 250px; font-size: 1vw">The Pre-Accelerator program put emphasis on pivoting the product based on pilot testing report received by the development department. Growth department undertakes to provide 12 months of pre acceleration services to ensure the best quality end product. </div>
</section>
<section class="grid-item1" style="margin-right: 100px; ">
<img src="images/technical.jpg" height="auto" width="150" align="center" style="margin-left: 20px;">
<p class="p1" style="color: black">Technical Assistance</p>
<div align="center" style="color: #2DB1FE; width: 200px; font-size: 1vw">The sustainability department of BriXep offers 12 months of acceleration services to expand the venture globally and put major emphasis on vertical & horizontal integration/expansion. </div>
</section>
</div>
</div>
<div class="mobile-view">
<h1 align="center" style="font-size: 25pt">Venture Development Program</h1>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators"style="background-color:#2DB1FE;" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="grid-container44">
<section class="grid-item5" style="padding-bottom: 30px;">
<img src="images/bulb.jpg" height="auto" width="150" align="center" class="displayed">
<p class="p3">Idea Validation</p>
<p class="p2" align="center"> BriXep Ecosystem identifies unregulated and independent entrepreneurs across India and transform them into established human capital through 6 months of intense training & education on viable concepts.</p>
</section>
</div></div>
<br>
<div class="carousel-item">
<div class="grid-container44">
<section class="grid-item5" style="padding-bottom: 30px" >
<img src="images/rocket.jpg" height="100" align="center" class="displayed">
<p class="p3">Startup Incubation</p>
<p class="p2" align="center">Post establishing human capital, The development department of BriXep provides 6 months of Incubation support to establish & foster the startup ventures.</p></section></div></div>
<br>
<div class="carousel-item">
<div class="grid-container44">
<section class="grid-item5" style="padding-bottom: 30px">
<img src="images/society_infrastructure.jpg" height="100" align="center" class="displayed">
<p class="p3">Society Infrastructure</p>
<p class="p2" align="center">he Pre-Accelerator program put emphasis on pivoting the product based on pilot testing report received by the development department. Growth department undertakes to provide 12 months of pre acceleration services to ensure the best quality end product.</p></section></div></div>
<br>
<div class="carousel-item">
<div class="grid-container44">
<section class="grid-item5" style="padding-bottom: 30px">
<img src="images/rocket.jpg" height="100" align="center" class="displayed">
<p class="p3">Technical Assistance</p>
<p class="p2" align="center">The sustainability department of BriXep offers 12 months of acceleration services to expand the venture globally and put major emphasis on vertical & horizontal integration/expansion.</p></section></div></div></div></div></div>
<br>
<br>
<br>
<h1 align="center" class="desktopview" style="font-size: 4vw">Our Partners</h1>
<br>
<div id="carouselExampleIndicators" class="carousel slide desktopview" data-ride="carousel">
<ol class="carousel-indicators" style="bottom: -30px !important;">
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators"style="background-color:#2DB1FE;" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="grid-container4">
<section class="grid-item4 col-md-6">
<img src="images/Activate-Logo_color-whiteBG.70067d566208a605fd954136449ebf3de3639ea7.png" height="100" width="100" class="displayed">
<p class="p3">AWS</p>
<p class="p2" style="margin-right: 30px;">AWS activate provides up-to $6000 worth of benefits & priority solutions support to all the startups at BriXep Ecosystem.</p>
<br>
</section>
<section class="grid-item4 col-md-6">
<img src="images/PAYU LOGO_GRADIENT_CMYK.png" height="100" class="displayed">
<p class="p3">PayU</p>
<p class="p2" style="margin-left: 30px;">Pay U provides waiver on transaction fee up-to a limited milestone and provide major support on entrepreneurship.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container4">
<section class="grid-item4 col-sm-6">
<img src="images/ACM.png" height="100" class="displayed">
<p class="p3">UPES ACM & ACM-W</p>
<p class="p2" style="margin-right: 30px;">UPES ACM & ACM-W offers the best & affordable IT and tech solutions to the startups at BriXep.</p>
<br>
</section>
<section class="grid-item4 col-sm-6">
<img src="images/exotel.png" height="100" class="displayed">
<p class="p3">Exotel</p>
<p class="p2" style="margin-left: 30px;">Exotel provides up to INR 4000 worth of free credits to all the startups at BriXep Ecosystem.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container4">
<section class="grid-item4 col-sm-6" >
<img src="images/brandlogo.png" width="200" height="100" class="displayed">
<p class="p3">Vakilsearch</p>
<p class="p2" style="margin-right: 30px;">Vakilsearch provides up to 50% discount on all its services to the startups looking for legal support.</p>
<br>
</section>
<section class="grid-item4 col-sm-6">
<img src="images/razorpay-logo.png" width="200" height="100" class="displayed">
<p class="p3">Razor pay </p>
<p class="p2" style="margin-left: 30px;">Razor pay offers waiver on transaction fee for a limited milestone & major support in other startup resources.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container4">
<section class="grid-item4" >
<img src="images/lawyered.png" height="100" class="displayed">
<p class="p3">Lawyered</p>
<p class="p2">Lawyered offers flat 20% discount on the professional fee on all services to the startups at BriXep.</p>
<br>
</section>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon"aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!--for mobile view-->
<div id="mobilehdn">
<h1 align="center" class="mobileview" style="font-size: 4vw">Our Partners</h1>
<br>
<div id="carouselExampleIndicators" class="carousel slide mobileview" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators"style="background-color:#2DB1FE;" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="4"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="5"></li>
<li data-target="#carouselExampleIndicators" style="background-color:#2DB1FE;"data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="grid-container5">
<section class="grid-item5">
<img src="images/Activate-Logo_color-whiteBG.70067d566208a605fd954136449ebf3de3639ea7.png" height="100" width="100" class="displayed">
<p class="p3">AWS</p>
<p class="p2">AWS activate provides up-to $6000 worth of benefits & priority solutions support to all the startups at BriXep Ecosystem.</p>
<br>
</section>
<section class="grid-item5">
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container5">
<section class="grid-item5" >
<img src="images/PAYU LOGO_GRADIENT_CMYK.png" height="100" class="displayed">
<p class="p3">PayU</p>
<p class="p2">Pay U provides waiver on transaction fee up-to a limited milestone and provide major support on entrepreneurship.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container5">
<section class="grid-item5" >
<img src="images/ACM.png" height="100" class="displayed">
<p class="p3">UPES ACM & ACM-W</p>
<p class="p2">UPES ACM & ACM-W offers the best & affordable IT and tech solutions to the startups at BriXep.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container5">
<section class="grid-item5" >
<img src="images/exotel.png" height="100" class="displayed">
<p class="p3">Exotel</p>
<p class="p2">Exotel provides up to INR 4000 worth of free credits to all the startups at BriXep Ecosystem.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container5">
<section class="grid-item5" >
<img src="images/brandlogo.png" height="100" class="displayed">
<p class="p3">Vakilsearch</p>
<p class="p2">Vakilsearch provides up to 50% discount on all its services to the startups looking for legal support.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container5">
<section class="grid-item5" >
<img src="images/razorpay-logo.png" height="100" class="displayed">
<p class="p3">Razor pay </p>
<p class="p2">Razor pay offers waiver on transaction fee for a limited milestone & major support in other startup resources.</p>
<br>
</section>
</div>
</div>
<div class="carousel-item">
<div class="grid-container5">
<section class="grid-item5" >
<img src="images/lawyered.png" height="100" class="displayed">
<p class="p3">Lawyered</p>
<p class="p2">Lawyered offers flat 20% discount on the professional fee on all services to the startups at BriXep.</p>
<br>
</section>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon"aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!--Our Offering-->
<br>
<h1 align="center" class="desktopview" style="font-size: 4vw">Our Offering</h1>
<div class="bd-example">
<div id="carouselExampleCaptions" class="carousel slide desktopview" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" style="background-color: #2DB1FE;" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" style="background-color: #2DB1FE;" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/Image 1.gif" style="width: 600px">
<div id="" >
<h2>Human Capital training</h2>
<div class="light_blue" style="font-size: 1vw">
BriXep assures to foster and deploy the established human capital by providing viable concept skill training and education post identification through offline & online platforms.
<br>
<a href="images/office.jpg">Learn more-></a>
</div>
</div>
</div>
<div class="col-md-6">
<img src="images/Image 2.gif" style="width: 600px;">
<div id="">
<h2 >Stakeholder support</h2>
<div class="light_blue" style="font-size: 1vw">
BriXep Ecosystem ensures to prosper the stakeholders by regulating them into an established community and prospering them with regular demand of resources from Human capital.
<br>
<a href="images/office.jpg">Learn more-></a>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
</section>
</div>
<div class="carousel-item">
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/Image 3.gif" style="width: 600px">
<div id="">
<h2>Venture Development</h2>
<div class="light_blue" style="font-size: 1vw">
BriXep establishes a centralized support system between human capital and stakeholder community for the development of sustainable ventures
<br>
<a href="images/office.jpg">Learn more-></a>
</div>
</div>
</div>
<div class="col-md-6">
<img src="images/Image 4.gif" style="width: 600px; height: 320px;">
<div id="">
<h2>Human resource deployment</h2>
<div class="light_blue" style="font-size: 1vw">
Crible Human resources, a nonprofit initiative of BriXep Ecosystem, undertakes to connect the job-oriented workforce with BriXep established startups for absolute benefit of ecosystem.
<br>
<a href="images/office.jpg">Learn more-></a>
<br>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
</section>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!--mobile view of our offering-->
<div id="mobilehdn">
<h1 align="center" class="mobileview" style="font-size: 4vw">Our Offering</h1>
<div class="bd-example">
<div id="carouselExampleCaptions" class="carousel slide mobileview" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" style="background-color: #2DB1FE;" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" style="background-color: #2DB1FE;" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" style="background-color: #2DB1FE;" data-slide-to="2"></li>
<li data-target="#carouselExampleCaptions" style="background-color: #2DB1FE;" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/Image 1.gif" height="100" class="displayed">
<div id="" >
<h2>Human Capital training</h2>
<div class="light_blue" style="font-size: 1vw">
BriXep assures to foster and deploy the established human capital by providing viable concept skill training and education post identification through offline & online platforms.
<br>
<a href="images/office.jpg">Learn more-></a>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
</section>
</div>
<div class="carousel-item">
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/Image 2.gif" height="100" class="displayed">
<div id="">
<h2 >Stakeholder support</h2>
<div class="light_blue" style="font-size: 1vw">
BriXep Ecosystem ensures to prosper the stakeholders by regulating them into an established community and prospering them with regular demand of resources from Human capital.
<br>
<a href="images/office.jpg">Learn more-></a>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
</section>
</div>
<div class="carousel-item">
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/Image 3.gif" height="100" class="displayed">
<div id="">
<h2>Venture Development</h2>
<div class="light_blue" style="font-size: 1vw">
BriXep establishes a centralized support system between human capital and stakeholder community for the development of sustainable ventures
<br>
<a href="images/office.jpg">Learn more-></a>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
</section>
</div>
<div class="carousel-item">
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/Image 4.gif" height="100" class="displayed">
<div id="">
<h2>Human resource deployment</h2>
<div class="light_blue" style="font-size: 1vw">
Crible Human resources, a nonprofit initiative of BriXep Ecosystem, undertakes to connect the job-oriented workforce with BriXep established startups for absolute benefit of ecosystem.
<br>
<a href="images/office.jpg">Learn more-></a>
<br>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
</section>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!--SHUBHANKAR SHARMA-->
<div class="card text-white " style="border: none;">
<img class="card-img bgimg" src="images/picimage3.jpg" alt="Card image">
<div class="row card-img-overlay contain h-100">
<div class="col-md-6 cdh1 my-auto">
<h1 style="color: black;">
Strengthening & <br>Facilitating Ecosystem<br> with BiXep curated<br> resources
</h1>
</div>
<div class="col-md-6 my-auto">
<p class="cdpara">
We strive to promote entrepreneurship among all the sectors of Indian economy and empower the young generation with BriXep curated resources. Please listen to the BriXep podcast to get productive insights about the developments of Indian startup ecosystem. Subscribe to our youtube channel to witness the best founders of India providing years of experience.
</p>
<p class="but1">Listen to Podcasts</p>
<p class="but1">Read Blogs</p>
</div>
</div>
</div>
<!---->
<div class="row cont h-100">
<div class="col-md-7 my-auto">
<p class="headin">Join Our Community</p>
<p class="head_cont">
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>
</div>
<div class="col-md-4 my-auto">
<form class="Login">
<input class="box1" type="text" name="" placeholder="Name"><br>
<input class="box1" type="text" name="" placeholder="Email"><br>
<button class="join" type="button">Join</button>
</form>
</div>
</div>
<!--END SHUBHANKAR SHARMA-->
<!-- <section>
<article class="py-5">
<div class="container">
<div class="row" style="justify-content: center; align-items: center;">
<div class="col-xs-6 col-md-4">
<h2 style="justify-content: center; align-items: center;">
Stay Connected
</h2>
<p style="color: #006284; justify-content: center; align-items: center;">Join our mailing list to stay informed on our latest news, events and insights.</p>
</div>
<div class= "col-xs-6 col-md-4"style="color: #006284; border: 2px; width: 20px;">
<input type="text" class="form-control" id="email" autocomplete="off" placeholder="Email">
</div>
<div class= "col-xs-6 col-md-4" style="color: #006284;">
<button class="subscribe button2" type="button" style="background-color: #2DB1FE; border: 10px solid #2DB1FE ;">Subscribe</button>
</div>
</div>
</div>
</article>
</section> -->
<hr class=".col-xs-6 mx-auto pt-0.9" style="background-color: #2DB1FE; width: 85%; margin: 0px !important; ">
<section class="h-100">
<br>
<div class="container" style="margin: 0xp !important; padding: 0px !important;">
<div class="row align-items-center" style="margin: 0xp !important; padding: 0px !important;">
<div class= "col-md-6 socialicon" style="color: grey;">
<h style="justify-content: center; align-items: center;">
Terms of Use | Privacy Policy | Cookies
</h>
</div>
<div class="col-md-3 socialicon col-md-offset-3">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</section>
<section>
<div class="container" style="padding-top: 20px; padding-left: 0px !important; padding-right: 0px !important;">
<div class="row" style="justify-content: center; align-items: center;">
<div style="color: grey;">
<h>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur . Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</h>
</div>
</div>
</div>
</section>
<hr class=".col-xs-6 mx-auto pt-0.9">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.fancybox.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>