-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1012 lines (966 loc) · 40.2 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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>MLRIT - CIE</title>
<meta name="description" content="MLRIT CIE leads in creating Hyderabad's pioneering innovation and startup ecosystem pre-dominantly among student community through our initiatives on incubation and mentoring programs " />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="MLRIT CIE leads in creating Hyderabad's pioneering innovation and startup ecosystem pre-dominantly among student community through our initiatives on incubation and mentoring programs " />
<meta name="keywords" content="cie, mlrit, enterpreneor" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<!-- favicon -->
<link rel="shortcut icon" href="images/mlr-cie white.png" type="image/x-icon" />
<link rel="icon" href="images/mlr-cie white.png" type="image/x-icon" />
<!-- google fonts -->
<link
href="http://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,900%7CMerriweather:400,400italic,300,300italic,700,700italic"
rel="stylesheet"
type="text/css"
/>
<!-- Font icons -->
<link rel="stylesheet" href="css/vendor/elegant-font-icon.css" />
<!-- stylesheet -->
<link rel="stylesheet" href="css/vendor/bootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- dark version css -->
<link rel="stylesheet" href="css/style-dark.css" />
<link rel="stylesheet" href="css/custom.css" />
<link rel="stylesheet" href="css/vendor/animate.css" />
<link rel="stylesheet" href="css/vendor/owl.carousel.css" />
<!-- style switcher -->
<link rel="stylesheet" href="css/vendor/style-switcher.css" />
<!-- Custom styles for this template -->
<!-- <link
rel="stylesheet"
type="text/css"
href="css/colors/yellow.css"
title="yellow"
media="screen"
/> -->
<!-- <link
rel="stylesheet"
type="text/css"
href="css/colors/blue.css"
title="blue"
media="screen"
/> -->
<link
rel="stylesheet"
type="text/css"
href="css/colors/blue-2.css"
title="blue-2"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/purple.css"
title="purple"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/green.css"
title="green"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/green-2.css"
title="green-2"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/orange.css"
title="orange"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/red.css"
title="red"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/red-2.css"
title="red-2"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/red-3.css"
title="red-3"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/pink.css"
title="pink"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/pink-2.css"
title="pink-2"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/beige.css"
title="beige"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/midnight.css"
title="midnight"
media="screen"
/>
<link
rel="stylesheet"
type="text/css"
href="css/colors/black.css"
title="black"
media="screen"
/>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> -->
<script
type="text/javascript"
src="js/vendor/jquery-1.11.0.min.js"
></script>
<script type="text/javascript" src="js/vendor/modernizr.custom.js"></script>
<script src="https://kit.fontawesome.com/4dc0251910.js" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script
type="text/javascript"
src="js/vendor/html5-3.6-respond-1.1.0.min.js"
></script>
<![endif]-->
</head>
<body>
<!--<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<div class="move-up">
<a data-scroll href="#home" class="arrow_carrot-2up"></a>
</div>
<button onclick="topFunction()" id="myBtnu" >Top<a class="arrow_carrot-2up"></a></button>-->
<!-- preloader -->
<div id="pre-loader">
<div class="pre-loader-container">
<!--<h2 class="section-title text-center preload-logo wow bounceIn">
<span class="section-title-border"></span>
</h2>-->
<img src="images/mlr-cie white.png" class="nav-logo preload-logo wow bounceIn"/>
<div class="loader wow"></div>
</div>
</div>
<div id="wrapper" class="dark-video dark-pattern-2">
<!-- logo -->
<div class="logo-wrapper">
<!-- <h1 class="logo"> -->
<img
src="images/mlr-cie white.png" class="nav-logo"
alt="MLRCIE"/>
<!-- MLRIT CIE
</h1> -->
</div>
<!-- /logo -->
<!-- navigatin icon -->
<div class="navmenu-open">
<a href="javascript:void(0);" id="trigger-navbar">
<span class="icon_menu"></span>
</a>
</div>
<!-- / navigatin icon -->
<!-- home - video presenation -->
<section id="home" class="video presenation">
<div class="overly-mask"></div>
<div id="bg-video" class="home-background"></div>
<div class="home-text container">
<h3>We are</h3>
<div id="home-text-slider" class="home-carousel home-theme">
<div class="item">
<div class="home-carousel-caption">
<h2>MLRIT CIE</h2>
<hr />
<p>Making Ideas Happen</p>
</div>
</div>
<div class="item">
<div class="home-carousel-caption">
<h2>Thinkers</h2>
<hr />
<!-- <p>A Digital Creative Team</p> -->
</div>
</div>
<div class="item">
<div class="home-carousel-caption">
<h2>Dreamers</h2>
<hr />
<!-- <p>An Innovative Digital Team</p> -->
</div>
</div>
<div class="item">
<div class="home-carousel-caption">
<h2>discoverers </h2>
<hr/>
<!-- <p>We are discoverers of new innovation</p> -->
</div>
</div>
</div>
</div>
<div class="scroll">
<span class="scroll-down"></span>
<span class="scroll-text">Scroll</span>
</div>
</section>
<!-- /home -->
<!-- Main Wrapper -->
<div id="main-wrapper">
<!-- about -->
<section id="about" class="section">
<div class="container">
<div class="row">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>ABOUT</span
>
</h2>
<div
class="section-info col-md-10 col-md-offset-1 text-center wow fadeInDown"
>
<h3>MLRIT <strong>CIE</strong></h3>
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_heart_alt"></i></li>
<li class="hr-line"><span></span></li>
</ul>
<p>
MLRIT-CIE has Hyderabad's pioneering innovation and startup ecosystem, predominantly initiated for the student community. Our club conducts incubation and mentoring programs to nurture budding entrepreneurs.We also organize events like Hackathon, technical workshops, guest talks,awareness programs on entrepreneurship. Center for Innovation and entrepreneurship is the place,
“where technology meets innovation”.
</p>
<!-- <p>
We conduct various pilot programs like Hackathon, technical workshops, guest talks, technical events which help students develop entrepreneurial skills. (Remove to achieve these)
</p> -->
</div>
</div>
</div>
<!-- about-listing -->
</section>
<!-- /about -->
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<!-- Modal content-->
<div class="modal-content" style="background-image: url(./images/patterns/dark/grey_wash_wall.png);" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" >×</span>
</button>
<h4 class="modal-title" style="color:white;">Upcoming Events</h4>
</div>
<div class="modal-body">
<p style="color: white;"><strong>Dig deeper !!! </strong>to know more</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary"><a href="events">See More</a></button>
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<!-- services -->
<section id="facilities" class="section">
<div class="container">
<!-- <div class="row">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>EcoSystem</span
>
</h2>
<div class="section-info col-md-10 col-md-offset-1 text-center wow fadeInDown">
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_adjust-vert"></i></li>
<li class="hr-line"><span></span></li>
</ul>
<p>
<strong> AIM: </strong> To form an ecosystem where students are in authority to take decisions for the welfare of the organization.
</p>
<p>
<strong> VISION: </strong> We intend to create an environment for students where knowledge can be shared from one person to the other.
</p>
<p>
<strong>MISSION:</strong> To promote innovation and
entrepreneurship among students and help them excel in it.
</p>
<p>
<strong> Makerspace: </strong> To form an ecosystem where students are in authority to take decisions for the welfare of the organization.
</p>
</div>
</div> -->
<!-- services-listing -->
<div id="services-listing-wrapper">
<div class="service-list row">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s">Ecosystem</span>
</h2>
<div class="section-info text-center wow fadeInDown">
<br/>
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_adjust-vert"></i></li>
<li class="hr-line"><span></span></li>
</ul>
<br/>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.2s"
>
<a href="javascript:void(0);">
<span class="service-icon fab fa-sketch"></span>
<h3 class="service-title">Maker Space</h3>
<p class="service-category" style="font-size: 15px;">From graphic designing to 3D printing, we have every required technology to mould your imagination into reality. Here, you can witness the innovations made by young engineers of MLRIT to solve the problems of modern society. We aim to channelize the knowledge of students in such a way that success is assured. </p>
</a>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.4s"
>
<a href="javascript:void(0);">
<span class="service-icon fab fa-hackerrank"></span>
<h3 class="service-title">Innovation Hub</h3>
<p class="service-category" style="font-size: 12px;">CIE (Center of innovation and Entrepreneurship) provides a magnificent platform called "INNOVATION HUB" to each and every engineer who is desperate to prove themselves. INNOVATION HUB is known for its "Hackathon's" and "Workshops" where students learn to implement advanced technologies and we also try to create awareness about the importance of technologies. These events escalate the competitive spirit among students.</p>
</a>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-last-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.6s"
>
<a href="javascript:void(0);">
<span class="service-icon"><i style="font-size: 102px;" class="fas fa-user-graduate"></i></span>
<h3 class="service-title">Community Space</h3>
<p class="service-category" style="font-size: 15px;">This is the place where the student council operates. Here we conduct meetings for organizational progress and student welfare. This is the place where students can approach for guidance and suggestions for their innovations. Our technical team helps them with all the necessities.</p>
</a>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-2 doone wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.6s"
>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-2 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.7s"
style="margin: 0 auto"
>
<div class="circle-point"></div>
<a href="javascript:void(0);">
<span class="service-icon icon_mobile"></span>
<h3 class="service-title">Co Working</h3>
<p class="service-category">MLRIT-CIE encourages more networking opportunities. One of the biggest benefits of a co-working space is the opportunity to connect with other individuals. With co-working, MLRIT-CIE has become open-source. This platform will not only improve your existing skills but also help you to connect with big shots.</p>
</a>
</div>
</div>
</div>
</div>
<!-- / services-listing -->
<!-- services-listing -->
<div id="services-listing-wrapper">
<div class="service-list row
<h3 class="mid-hed">
</h3>
<div class="patner-grid">
<div class="patners">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s">PATNERS</span>
</h2>
<div class="section-info col-md-10 col-md-offset-1 text-center wow fadeInDown">
<br/>
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_adjust-vert"></i></li>
<li class="hr-line"><span></span></li>
</ul>
<div class="event-grid1">
<div class="patners">
<img src="./images/patners/partners png/codegyanPNG.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/DSTpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/EDIpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/IICpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/isbPNG.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/MADBLKSpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/MSMEpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/strtupindPNG.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/task png.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/thubpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/TICpng.png" />
</div>
<div class="patners">
<img src="./images/patners/partners png/WADWANIpng.png" />
</div>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="section">
<div class="container">
<div class="row">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>SERVICES</span
>
</h2>
<div class="section-info col-md-10 col-md-offset-1 text-center wow fadeInDown">
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_adjust-vert"></i></li>
<li class="hr-line"><span></span></li>
</ul>
</div>
</div>
<!-- services-listing -->
<div id="services-listing-wrapper">
<div class="service-list row">
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.2s"
>
<a href="javascript:void(0);">
<span class="service-icon fab fa-guilded"></span>
<h3 class="service-title">Mentoring program</h3>
<p class="service-category1">
We provide better mentoring and guidelines to freshman
engineering students in their micro projects. Members of CIE get a chance to guide, motivate, provide technical support and enhance students success rate in their micro projects.
</p>
</a>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.4s"
>
<a href="javascript:void(0);">
<span class="service-icon icon_desktop"></span>
<h3 class="service-title">Makerspace Acceleration</h3>
<p class="service-category1">This platform was set up to emphasize the innovative ideas of the students.
It is equipped with various machines like 3D laser cutting machines, Printers and multimedia workstation.
Under this, we conduct many hackathons, events, capstone projects, robotics, IoT, AR/VR programming and much more. </p>
</a>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.6s"
>
<a href="javascript:void(0);">
<span class="service-icon icon_cart_alt"></span>
<h3 class="service-title">NEN</h3>
<p class="service-category1">MLRIT CIE provides an entrepreneurship course where engineers step into the world of
business. Here, they have a fair number of opportunities to develop their ideas into
ventures. This course is provided by a reputed organization, the ”Wadhwani foundation”,
which lays a path for many desperate engineers who are willing to become successful
entrepreneurs.</p>
</a>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-2 doone wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.6s"
>
</div>
<div
class="col-lg-4 col-md-4 col-sm-6 col-xs-12 service-box service-box-1 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="0.7s"
>
<div class="circle-point"></div>
<a href="javascript:void(0);">
<!-- <span class="service-icon fab fa-gitlab"></span> -->
<img class="service-icon" src="./images/startups/Startup Lab.png" style="height: 50%; object-fit:unset; position:relative; left: 40%; "/>
<h3 class="service-title">Startup lab program</h3>
<p class="service-category1">
The Start-up lab program is another initiative taken by MLRIT CIE for the welfare of the individuals who are looking to set their careers as entrepreneurs. Start-up labs provide them an opportunity to transform their ideas into real-time ventures through which they can gain a handful of experience of this entrepreneurial world under the vigilance of mentors. It also provides guidance, seed-funding as well as co-working space.
</p>
</a>
</div>
</div>
</div>
<!-- / services-listing -->
<!-- services-listing -->
</div>
</section>
<!-- /services -->
<!-- services -->
<section id="services" class="section">
<div class="container">
<div class="row">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>INCUBATOR</span>
</h2>
<div class="section-info col-md-10 col-md-offset-1 text-center wow fadeInDown">
<h3>
<strong> StartUps </strong>
</h3>
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_adjust-vert"></i></li>
<li class="hr-line"><span></span></li>
</ul>
<a href="http://www.techthrill.in/"><img src="./images/startups/Startup Lab.png" style="position: relative;padding: 50px 0px; object-fit:unset; height: auto; width: 200px; margin-top: 23px;"/></a>
<p>To nurture your ideas, MLRIT CIE established a "STARTUP LAB"!!!
It ignites the fire of innovation and to escalate the survival of sprouting start ups. Our Pre-incubation program is tailored for aspiring young entrepreneurs who are driven by the hunger to evolve as successful individuals. We welcome you all to grab this opportunity to establish a prosperous future. You can get access to benefits of CIE such as Hand Holding Mentorship,Technical Prototype Expertise,Experience Real-time Entrepreneurship,Industry Connect,In co-operation as a Start-up Company,Access to CIE's Makerspace,Seed Funding opportunities.
Many more exciting startup tools and resources!!!</p>
<a href="http://www.techthrill.in/"><img src="./images/startups/techthrill-logo.png" style="position: relative;padding: 50px 0px; object-fit:unset; height: auto; width: 250px; background-color: white; margin-top: 23px;"/></a>
<h3>
<br>
<br>
<a href="https://drive.google.com/drive/folders/1psRcum1B_bsXH-G1ZHXIcgusM3tVzkvP">
<strong> Load More ... </strong>
</a>
</h3>
</div>
</div>
</section>
<section id="services" class="section">
<div class="container">
<div class="row">
<h2 class="section-title text-center" style="margin-bottom: 42px;">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>EVENTS</span
>
</h2>
<!-- Button trigger modal -->
</section>
<!-- request pro -->
<section id="request-pro">
<div class="container-fuid">
<div class="row text-center">
<h2 class="request-text">Glimpse of our <span>events</span></h2>
<a
data-scroll=""
href="events"
class="btn btn-white btn-lg transperant-btn"
>Explore</a
>
</div>
</div>
</section>
<!-- / request pro -->
<!-- portfolio -->
<section id="portfolio" class="section">
<div class="container"></div>
<div id="grid-gallery" class="grid-gallery">
<section class="grid-wrap">
<ul class="grid">
<!-- for Masonry column width -->
</ul>
</section>
<!-- /grid-gallery -->
<section class="slideshow">
<ul></ul>
<nav>
<span class="icon nav-prev"></span>
<span class="icon nav-next"></span>
<span class="icon nav-close"></span>
</nav>
<div class="info-keys icon">Navigate</div>
</section>
<!-- / slideshow -->
</div>
<!-- / grid-gallery -->
</section>
<!-- contact -->
<section id="contact" class="row section">
<div id="container">
<div class="row">
<h2 class="section-title text-center">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>Get In Touch</span
>
</h2>
<div
class="section-info col-md-10 col-md-offset-1 text-center wow fadeInDown"
>
<h3>We would love to hear from<strong> you.</strong></h3>
<ul class="hr">
<li class="hr-line"><span></span></li>
<li class="hr-icon"><i class="icon_mail_alt"></i></li>
<li class="hr-line"><span></span></li>
</ul>
<p>
Drop your query here .
</p>
</div>
</div>
<div class="row">
<fieldset
id="contactform"
class="wow bounce"
data-wow-duration="2s"
data-wow-delay="0.5s"
>
<div id="form_result"></div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<input
name="name"
type="text"
id="name"
class="form-control"
placeholder="Full Name"
/>
</div>
</div>
<div class="row">
<div class="col-md-3 col-md-offset-3">
<input
name="email"
type="text"
id="email"
class="form-control"
value=""
placeholder="Valid email ID"
/>
</div>
<div class="col-md-3">
<input
name="phone"
type="text"
id="phone"
class="form-control"
value=""
placeholder="Contact No"
/>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<textarea
name="message"
cols="40"
rows="5"
id="comments"
class="form-control"
placeholder="Your Message"
></textarea>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<button
type="submit"
class="btn btn-white btn-lg"
id="submit"
>
SUBMIT
</button>
</div>
</div>
</fieldset>
<!-- </form> -->
</div>
</div>
</section>
<!-- /contact -->
<!-- google map -->
<section id="google-map" class="row section">
<div style="text-align:center;" >
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d15212.665141439318!2d78.43341621733873!3d17.594836940876444!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bcb8f3a482cdd45%3A0xe6e64fd6f4bb6256!2sMLRIT%20CIE!5e0!3m2!1sen!2sus!4v1606101575748!5m2!1sen!2sus" width="1250" height="400" frameborder="0" style="border:0; margin:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</section>
<!--Google map-->
<!-- team -->
<section id="services" class="section">
<div class="container">
<div class="row">
<h2 class="section-title text-center" style="margin-bottom: 42px;">
<span
class="section-title-border wow pulse"
data-wow-duration="1s"
data-wow-delay="1s"
>Our Team</span
>
</h2>
<!-- Button trigger modal -->
</section>
<!-- request pro -->
<section id="request-pro">
<div class="container-fuid">
<div class="row text-center">
<h2 class="request-text">Wanna meet our <span>team</span>?</h2>
<a
data-scroll=""
href="team"
class="btn btn-white btn-lg transperant-btn"
>SEE YOU THERE</a
>
</div>
</div>
</section>
<!-- / request pro -->
<!-- /team -->
<!-- social -->
<section id="social" class="row">
<div class="soc-item facebook col-lg-3 col-md-3 col-sm-3">
<a data-scroll href="https://www.facebook.com/Mlrit_cie-2337356859881340">
<span class="symbol social_facebook"></span>
<span class="count counter">1600</span>
</a>
</div>
<div class="soc-item twitter col-lg-3 col-md-3 col-sm-3">
<a data-scroll href="https://twitter.com/MlrFor?s=08">
<span class="symbol social_twitter"></span>
<span class="count counter">0007</span>
</a>
</div>
<div class="soc-item instagram col-lg-3 col-md-3 col-sm-3">
<a data-scroll href="https://instagram.com/mlritcie">
<span class="symbol social_instagram"></span>
<span class="count counter">0255</span>
</a>
</div>
<div class="soc-item linkedin col-lg-3 col-md-3 col-sm-3">
<a data-scroll href="https://www.linkedin.com/company/mlrit-cie/">
<span class="symbol social_linkedin"></span>
<span class="count counter">0036</span>
</a>
</div>
</section>
<!-- /social -->
<!-- team -->
<!-- /social -->
</div>
<!-- /container-fluid -->
<!-- menu items -->
<section id="navbar" class="navbar navbar-hugeinc">
<header>
<a href="javascript:void(0);" class="navbar-close">
<span class="icon_close"></span
></a>
<div class="nav-logo">
<h1 class="logo">
<img style="height: 2em;width: auto;" src="images/mlr-cie white.png" alt="logo" />
</h1>
</div>
</header>
<nav>
<ul>
<li>
<a data-scroll href="#home">
<span class="primary">Home</span>
<span class="secondary">We are MLRIT CIE</span>
<div class="heading-sep"></div>
</a>
</li>
<li>
<a data-scroll href="#about">
<span class="primary">About</span>
<span class="secondary">Get to know us</span>
<div class="heading-sep"></div>
</a>
</li>
<li>
<a data-scroll href="#facilities">
<span class="primary">Ecosystem</span>
<span class="secondary">See how you do</span>
<div class="heading-sep"></div>
</a>
</li>
<li>
<a data-scroll href="#services">
<span class="primary">Services</span>
<span class="secondary">Learn how we do</span>
<div class="heading-sep"></div>
</a>
</li>
<li>
<a data-scroll href="team">
<span class="primary">Team</span>
<span class="secondary">People behind CIE</span>
<div class="heading-sep"></div>
</a>
</li>
<li>
<a data-scroll href="https://content-mlritcie.medium.com/entrepreneurship-and-innovation-a-highway-to-success-fad86e380f7f">
<span class="primary">Blog</span>
<span class="secondary">This is our blog</span>
<div class="heading-sep"></div>
</a>
</li>
<li>
<a data-scroll href="#contact">
<span class="primary">Contact</span>
<span class="secondary">Get in to</span>
</a>
</li>
</ul>
</nav>
<!-- footer -->
<footer>
<div class="nav-footer">
<ul class="nav-footer-social-icons">
<li>
<a target="_blank" data-scroll href="#"
><span class="social_twitter"></span
></a>
</li>
<li>
<a target="_blank" data-scroll href="#"
><span class="social_facebook"></span
></a>
</li>
<li>
<a target="_blank" data-scroll href="#"
><span class="social_instagram"></span
></a>
</li>
<li>
<a target="_blank" data-scroll href="#"
><span class="social_linkedin"></span
></a>
</li>
</ul>
<p class="nav-footer-copy">© 2020 / MLRIT - CIE</p>
</div>
</footer>
<!-- / footer -->
</section>
<!-- / menu items -->
<!-- /Style Switcher -->
</div>
<!-- /wrapper -->
<!-- footer -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="move-up">
<a data-scroll href="#home" class="arrow_carrot-2up"></a>
</div>
<div class="footer-logo">
<h3>MLRIT - CIE</h3>
</div>
<div class="footer-text">
Copyright © 2020
<a href="javascript:void(0);">MLRIT - CIE</a>. Made with
<span class="icon_heart_alt"></span>
</div>
</div>
</div>
</footer>
<!-- /footer -->
<!-- Scripts -->
<script type="text/javascript" src="js/vendor/bootstrap.min.js"></script>
<script type="text/javascript" src="js/vendor/classie.js"></script>
<script type="text/javascript" src="js/vendor/respond.js"></script>
<script type="text/javascript" src="js/vendor/jquery.counterup.js"></script>
<script type="text/javascript" src="js/vendor/waypoints.min.js"></script>
<script type="text/javascript" src="js/vendor/smoothscroll.js"></script>
<script
type="text/javascript"
src="js/vendor/jquery.backstretch.min.js"
></script>
<script
type="text/javascript"
src="js/vendor/jquery.backgroundvideo.min.js"
></script>
<script type="text/javascript" src="js/vendor/wow.js"></script>
<script
type="text/javascript"
src="js/vendor/detectmobilebrowser.js"
></script>
<script type="text/javascript" src="js/vendor/owl.carousel.min.js"></script>
<script
type="text/javascript"
src="js/vendor/imagesloaded.pkgd.min.js"
></script>
<script type="text/javascript" src="js/vendor/masonry.pkgd.min.js"></script>
<script type="text/javascript" src="js/vendor/cbpGridGallery.js"></script>
<script type="text/javascript" src="js/vendor/styleswitch.js"></script>
<script
type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAAZnaZBXLqNBRXjd-82km_NO7GUItyKek"
></script>
<script type="text/javascript" src="js/script.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID.