-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1123 lines (906 loc) · 41.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Magma India</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon_magma.png" rel="icon">
<link href="img/magma.png" rel="magma-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<style>
.title-word {
animation: color-animation 4s linear infinite;
}
.title-word-1 {
--color-1: #e6ebe4;
--color-2: #e6ebe4;
--color-3: #e6ebe4 ;
}
.title-word-2 {
--color-1: #e6ebe4;
--color-2: #e6ebe4;
--color-3: #e6ebe4;
}
.title-word-3 {
--color-1: #338a10;
--color-2: #df6e12;
--color-3: #e6ebe4;
}
.title-word-4 {
--color-1: #3D8DAE;
--color-2: #DF8453;
--color-3: #E4A9A8;
}
@keyframes color-animation {
0% {color: var(--color-1)}
32% {color: var(--color-1)}
33% {color: var(--color-2)}
65% {color: var(--color-2)}
66% {color: var(--color-3)}
99% {color: var(--color-3)}
100% {color: var(--color-1)}
}
/* Here are just some visual styles. 🖌 */
.text {
display: inline-block;
font-size: 1em;
font-weight: 900;
margin: 0;
line-height: 1;
color: black;
}
.container2 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
animation: changeBackgroundImage 13s infinite;
}
@keyframes changeBackgroundImage {
0% {
background-image: url('img/head.jpg');
}
30% {
background-image: url('img/head2.jpg');
}
60% {
background-image: url('img/head3.jpg');
}
100% {
background-image: url('img/head.jpg');
}
}
.waviy {
position: relative;
}
.waviy span {
position: relative;
display: inline-block;
font-size: 40px;
color: #fff;
text-transform: uppercase;
animation: flip 2s infinite;
animation-delay: calc(.2s * var(--i))
}
@keyframes flip {
0%,80% {
transform: rotateY(360deg)
}
}
.gradient-heading {
font-size: 60px;
letter-spacing: 1px;
text-align: center;
background: -o-linear-gradient(45deg,#df6e12,#e6ebe4,#338a10);
background: linear-gradient(45deg,#df6e12,#e6ebe4,#338a10);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 300% 300%;
-webkit-animation: gradient-text 8s ease infinite;
animation: gradient-text 8s ease infinite;
}
@-webkit-keyframes gradient-text {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes gradient-text {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
</style>
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container-fluid">
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#call-to-action">Contribute</a></li>
<!-- <li><a href="#port">Portfolio</a></li> -->
<li><a href="#testimonials">Organizers</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item container2 active" style="background-image: url('img/head3.jpg');">
<div class="carousel-container">
<div class="carousel-content">
<h2>
<span class="title-word title-word-1">Magma</span>
<span class="title-word title-word-2">5G</span>
<span class="gradient-heading">INDIA</span>
</h2>
<p>Magma India is a community of collaborators coming from diverse professional backgrounds of academia, research and industry who are passionate towards cultivating an environment of open, collaborative and an integrated ecosystem. The objective is to build an unified platform, where open-source projects related to 5G can be evangelized through research & development and education & advocacy.</p>
<a href="https://docs.magmaindia.org/" target="_blank" class="btn-get-started scrollto">GET INVOLVED</a>
</div>
</div>
</div>
<!--<div class="carousel-item" style="background-image: url('img/intro-carousel/2.jpg');">
<div class="carousel-container">
<div class="carousel-content">
<h2>At vero eos et accusamus</h2>
<p>Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut.</p>
<a href="#featured-services" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url('img/intro-carousel/3.jpg');">
<div class="carousel-container">
<div class="carousel-content">
<h2>Temporibus autem quibusdam</h2>
<p>Beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt omnis iste natus error sit voluptatem accusantium.</p>
<a href="#featured-services" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url('img/intro-carousel/4.jpg');">
<div class="carousel-container">
<div class="carousel-content">
<h2>Nam libero tempore</h2>
<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum.</p>
<a href="#featured-services" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item" style="background-image: url('img/intro-carousel/5.jpg');">
<div class="carousel-container">
<div class="carousel-content">
<h2>Magnam aliquam quaerat</h2>
<p>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>
<a href="#featured-services" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#introCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon ion-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>-->
</div>
</div>
</section><!-- #intro -->
<main id="main">
<!--==========================
Featured Services Section
============================
<section id="featured-services">
<div class="container">
<div class="row">
<div class="col-lg-4 box">
<span class="ion-ios-bookmarks-outline">
  Open Source
</span>
</div>
<div class="col-lg-4 box box-bg">
<span class="ion-ios-stopwatch-outline" >
 
<span class="waviy" style="color: #fcfdc0;">
<span style="--i:1">F</span>
<span style="--i:2">L</span>
<span style="--i:3">E</span>
<span style="--i:4">X</span>
<span style="--i:5">I</span>
<span style="--i:6">B</span>
<span style="--i:7">L</span>
<span style="--i:8">E</span>
</span>
</span>
</div>
<div class="col-lg-4 box">
<span class="ion-ios-heart-outline">  Extendable</span>
</div>
</div>
</div>
</section> #featured-services -->
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<header class="section-header">
<h3>About Us</h3>
<p>We are group of opensource contributors from academics, industory promoting various opensource projects related to 5G
</p>
</header>
<div class="row about-cols">
<div class="col-md-4 wow fadeInUp">
<div class="about-col">
<div class="img">
<img src="img/n7.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-speedometer-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Mission</a></h2>
<p>
To build opensource community around 5G ecosystem
</p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col">
<div class="img">
<img src="img/n2.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-list-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Plan</a></h2>
<p>
To enable anyone to build low cost, private, long-range, reliable, and secure 4G LTE and 5G networks.
</p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.2s">
<div class="about-col">
<div class="img">
<img src="img/n8.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-eye-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Vision</a></h2>
<p>
Allowing operators to offer cellular service without vendor lock-in with a modern, open-source core network.
</p>
</div>
</div>
</div>
</div>
</section><!-- #about -->
<!--==========================
Services Section
============================-->
<!-- <section id="services">
<div class="container">
<header class="section-header wow fadeInUp">
<h3>Services</h3>
<p>Laudem latine persequeris id sed, ex fabulas delectus quo. No vel partiendo abhorreant vituperatoribus, ad pro quaestio laboramus. Ei ubique vivendum pro. At ius nisl accusam lorenta zanos paradigno tridexa panatarel.</p>
</header>
<div class="row">
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-analytics-outline"></i></div>
<h4 class="title"><a href="">Lorem Ipsum</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-bookmarks-outline"></i></div>
<h4 class="title"><a href="">Dolor Sitema</a></h4>
<p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat tarad limino ata</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-paper-outline"></i></div>
<h4 class="title"><a href="">Sed ut perspiciatis</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-speedometer-outline"></i></div>
<h4 class="title"><a href="">Magni Dolores</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-barcode-outline"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-people-outline"></i></div>
<h4 class="title"><a href="">Eiusmod Tempor</a></h4>
<p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi</p>
</div>
</div>
</div>
</section> #services -->
<!--==========================
Call To Action Section
============================-->
<section id="call-to-action" class="wow fadeIn">
<div class="container text-center">
<h3>Develop with Magma <p class="text"></p> </h3>
<p> </p>
<a class="cta-btn" target="_blank" href="https://github.com/magmaindia">START CONTRIBUTING</a>
</div>
</section><!-- #call-to-action -->
<!--==========================
Skills Section
============================-->
<!--<section id="skills">
<div class="container">
<header class="section-header">
<h3>Our Skills</h3>
<p>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</p>
</header>
<div class="skills-content">
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
<span class="skill">HTML <i class="val">100%</i></span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
<span class="skill">CSS <i class="val">90%</i></span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
<span class="skill">JavaScript <i class="val">75%</i></span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100">
<span class="skill">Photoshop <i class="val">55%</i></span>
</div>
</div>
</div>
</div>
</section>-->
<!--==========================
Facts Section
============================-->
<!--<section id="facts" class="wow fadeIn">
<div class="container">
<header class="section-header">
<h3>Facts</h3>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque</p>
</header>
<div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">274</span>
<p>Clients</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">421</span>
<p>Projects</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">1,364</span>
<p>Hours Of Support</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">18</span>
<p>Hard Workers</p>
</div>
</div>
<div class="facts-img">
<img src="img/facts-img.png" alt="" class="img-fluid">
</div>
</div>
</section> #facts -->
<!--==========================
Portfolio Section
============================-->
<!--<section id="portfolio" class="section-bg" >
<div class="container">
<header class="section-header">
<h3 class="section-title">Our Portfolio</h3>
</header>
<div class="row">
<div class="col-lg-12">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-app wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/app1.jpg" class="img-fluid" alt="">
<a href="img/portfolio/app1.jpg" data-lightbox="portfolio" data-title="App 1" class="link-preview" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">App 1</a></h4>
<p>App</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/web3.jpg" class="img-fluid" alt="">
<a href="img/portfolio/web3.jpg" class="link-preview" data-lightbox="portfolio" data-title="Web 3" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Web 3</a></h4>
<p>Web</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/app2.jpg" class="img-fluid" alt="">
<a href="img/portfolio/app2.jpg" class="link-preview" data-lightbox="portfolio" data-title="App 2" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">App 2</a></h4>
<p>App</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/card2.jpg" class="img-fluid" alt="">
<a href="img/portfolio/card2.jpg" class="link-preview" data-lightbox="portfolio" data-title="Card 2" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Card 2</a></h4>
<p>Card</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/web2.jpg" class="img-fluid" alt="">
<a href="img/portfolio/web2.jpg" class="link-preview" data-lightbox="portfolio" data-title="Web 2" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Web 2</a></h4>
<p>Web</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/app3.jpg" class="img-fluid" alt="">
<a href="img/portfolio/app3.jpg" class="link-preview" data-lightbox="portfolio" data-title="App 3" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">App 3</a></h4>
<p>App</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card wow fadeInUp">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/card1.jpg" class="img-fluid" alt="">
<a href="img/portfolio/card1.jpg" class="link-preview" data-lightbox="portfolio" data-title="Card 1" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Card 1</a></h4>
<p>Card</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card wow fadeInUp" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/card3.jpg" class="img-fluid" alt="">
<a href="img/portfolio/card3.jpg" class="link-preview" data-lightbox="portfolio" data-title="Card 3" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Card 3</a></h4>
<p>Card</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web wow fadeInUp" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<figure>
<img src="img/portfolio/web1.jpg" class="img-fluid" alt="">
<a href="img/portfolio/web1.jpg" class="link-preview" data-lightbox="portfolio" data-title="Web 1" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</figure>
<div class="portfolio-info">
<h4><a href="#">Web 1</a></h4>
<p>Web</p>
</div>
</div>
</div>
</div>
</div>
</section> #portfolio -->
<!--==========================
Clients Section
============================-->
<!-- <section id="clients" class="wow fadeInUp">
<div class="container">
<header class="section-header">
<h4>Magma India is an open source project supported by</h4>
</header>
<div class="owl-carousel clients-carousel">
<img src="img/clients/m1.png" alt="">
<img src="img/clients/m2.png" alt="">
<img src="img/clients/m3.png" alt="">
<img src="img/clients/m5.png" alt="">
</div>
</div>
</section>#clients -->
<!--==========================
Video Section
============================-->
<section id="port">
<br>
<div class="video">
<header class="section-header">
<h4>Magma End To End Demonstration</h4>
</header>
<iframe
class="video"
width="560"
height="315"
src="https://www.youtube.com/embed/sK_91q1f6NU"
title="Video Player"
frameborder="0"
allowfullscreen
></iframe>
</div>
</section>
<!--==========================
Clients/Sponsor Section
============================-->
<!--testimonials/organizer-->
<section id="testimonials" class="section-bg wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Organizers</h3>
</header>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img src="img/vipin.jpg" class="testimonial-img" alt="">
<h3>Vipin Rathi</h3>
<h4>Organizer</h4>
<p>
<img src="img/quote-sign-left.png" class="quote-sign-left" alt="">
Vipin Rathi is an Assistant Professor of Computer Science at the University of Delhi. He is ChairPerson of Linux Foundation Hyperledger Telecom Special Interest Group. He is Board Director at Open Infra Foundation .
<img src="img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="img/shubham.jpg" class="testimonial-img" alt="">
<h3>Shubham Tatvamasi</h3>
<h4>Organizer</h4>
<p>
<img src="img/quote-sign-left.png" class="quote-sign-left" alt="">
As an AWS Certified Solutions Architect and Certified Kubernetes Administrator (CKA), presently working on the Magma Orchestrator (an Open-source 4G/5G Telecom Core).6 years of experience in Software Development in Open-source and Cloud Platforms (AWS, Google Cloud, IBM Cloud and OpenStack). Extensively using Ansible, Terraform, and Github Actions to deliver end-to-end one-click automation with CI/CD.Actively involved in community-building, organizing Meetups for the official CNCF Delhi group. Furthermore, created the Magma India Meetup group for collaboration and to help developers learn and contribute to the Magma project. Strongly believes in knowledge-sharing and is very much involved in inspiring others to pursue a career in Cloud Native and Telecom.
<img src="img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
</div>
</div>
</section><!-- #testimonials -->
<!--testimonials/member-->
<section id="testimonials" class="section-bg wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Members</h3>
</header>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img src="img/prakash.jpg" class="testimonial-img" alt="">
<h3>Prakash Ramchandran</h3>
<h4> Member <br>
</h4>
<p>
<img src="img/quote-sign-left.png" class="quote-sign-left" alt="">
Prakash has 30+ years of Telco/ICT experience with MSEE from IIT Bombay. He is an active OpenStack participant, and has been a veteran consultant on NFV/SDN in the areas of data center and carrier network operations. The companies he has served for include Micronic Devices, IDM, Microdata Consulants, Intelligent System, Tandem, WinVision, AT&T Mobility, seven.com, coverity.com, AT&T Labs, Futurewei/Huawei Technologies and Dell. He was also part of Valley start-ups and other IT /Internet Data Center ventures in late 90's and early 2000. He brought to table the experience building NFV PoCs using OpenStack eco system .Has been a regular attendee of OpenStack, OPNFV, 3GPP NFV/MEC,IEEE forums over last several years in Bay area as well globally in US, China & India.He was Independent member Board of Directors from 2018-2020 three years and helped transition of OpenStack to OpenInfa and sustained the community efforts in India. He lead the Interop efforts and moved on to Kubernetes as underlay using Kupenstak. He has been promoting Magma for Carrier Access & Core Integration in India.Currently leads emerging OTF as Secretary.
<img src="img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="img/nitin.jpg" class="testimonial-img" alt="">
<h3>Nitin Rajput</h3>
<h4>Member</h4>
<p>
<img src="img/quote-sign-left.png" class="quote-sign-left" alt="">
A Certified Kubernetes Security Specialist and Certified Kubernetes Administrator, serving as Senior Research Engineer in Delhi University focused on 5G and ORAN. Also worked with OpenAirInterface Software Alliance. Have an experience in 5G open-source projects like Magma, Open5GS, Free5GC, OAI, Ueransim, SRSRan etc.
<img src="img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<!-- <div class="testimonial-item">
<img src="img/rohit.png" class="testimonial-img" alt="">
<h3>Rohit Arora</h3>
<h4>Member</h4>
<p>
<img src="img/quote-sign-left.png" class="quote-sign-left" alt="">
Work on end-to-end deployment and automation for all components of Magma 5G Orchestrator, Access Gateway and Federation Gateway.
• Familiar with 4G and 5G simulators such as srsRAN and UERANSIM.
<img src="img/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div> -->
</div>
</div>
</section><!-- #testimonials -->
<!--==========================
Team Section
============================-->
<section id="team">
<div class="container">
<div class="section-header wow fadeInUp">
<h3>Team</h3>
<p>Magma India Team</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/vipin.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>Vipin Rathi</h4>
<span>Organizer</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member">
<img src="img/shubham.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>Shubham Tatvamasi</h4>
<span>Organizer</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member">
<img src="img/nitin.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>Nitin Rajput</h4>
<span>Member</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member">
<img src="img/rohit.png" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>Rohit Arora</h4>
<span>Member</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div> -->
</div>
</section><!-- #team -->
<!--==========================
Contact Section
============================-->
<section id="contact" class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h3>Contact Us</h3>
<p>Let us know if you would like to receive more information about Magma India or if you have questions on how to contribute to the community.</p>
</div>
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>DELHI</address>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-telephone-outline"></i>
<h3>Phone Number</h3>
<p><a href="tel:+91-8077121880">+91 8077121880</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-email">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
<!-- <div class="form">
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage"></div>
<form action="" method="post" role="form" class="contactForm">
<div class="form-row">
<div class="form-group col-md-6">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="form-group col-md-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validation"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>