-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathteam.php
990 lines (792 loc) · 48.8 KB
/
team.php
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
<?php
include("./backend/user/functions/init.php");
$loggedIn = logged_in();
$celestaid=""; $access_token="";
if(logged_in()){
$celestaid = $_SESSION['celestaid'];
$access_token=$_SESSION['access_token'];
}
?>
<!DOCTYPE html>
<html lang="en" class="is-loading">
<meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="google-site-verification" content="CFwZqO_hmY2DPIR13xESIkBHT2_aBi8DzFyv306yz8Q" />
<link rel="apple-touch-icon" sizes="57x57" href="assets/meta-icons/apple-icon-57x57.html">
<link rel="apple-touch-icon" sizes="60x60" href="assets/meta-icons/apple-icon-60x60.html">
<link rel="apple-touch-icon" sizes="72x72" href="assets/meta-icons/apple-icon-72x72.html">
<link rel="apple-touch-icon" sizes="76x76" href="assets/meta-icons/apple-icon-76x76.html">
<link rel="apple-touch-icon" sizes="114x114" href="assets/meta-icons/apple-icon-114x114.html">
<link rel="apple-touch-icon" sizes="120x120" href="assets/meta-icons/apple-icon-120x120.html">
<link rel="apple-touch-icon" sizes="144x144" href="assets/meta-icons/apple-icon-144x144.html">
<link rel="apple-touch-icon" sizes="152x152" href="assets/meta-icons/apple-icon-152x152.html">
<link rel="apple-touch-icon" sizes="180x180" href="assets/meta-icons/apple-icon-180x180.html">
<link rel="icon" type="image/png" sizes="32x32" href="assets/meta-icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/meta-icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/meta-icons/favicon-16x16.png">
<meta name="application-name" content="McBride" />
<meta name="msapplication-square70x70logo" content="msapplication-square70x70logo.html" />
<meta name="msapplication-square150x150logo" content="msapplication-square150x150logo.html" />
<meta name="msapplication-square310x310logo" content="msapplication-square310x310logo.html" />
<meta name="msapplication-TileColor" content="#0b202b" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151382188-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-151382188-1');
</script>
<title>Celesta'19</title>
<meta name='description'
content='We are a passionate group of creative professionals who work across conceptional design, interior design, and architectural design.' />
<link rel='canonical' href='sponsors.php' />
<meta property='og:locale' content='en_us' />
<!-- / Sprout SEO Craft CMS plugin -->
<link rel="preload" href="assets/fonts/Neutraface2Text-Book.html" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="assets/fonts/Neutraface2Text-Demi.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="assets/fonts/Neutraface2Text-Light.html" as="font" type="font/woff2" crossorigin="">
<style>
.nav_more_links{
color:grey;
font-size:15px;
}
@font-face {
font-family: "Neutraface Book";
src: url('assets/fonts/Neutraface2Text-Book.html') format('woff2'),
url('assets/fonts/Neutraface2Text-Book-2.html') format('woff');
}
@font-face {
font-family: "Neutraface Demi";
src: url('assets/fonts/Neutraface2Text-Demi.woff2') format('woff2'),
url('assets/fonts/Neutraface2Text-Demi.html') format('woff');
}
@font-face {
font-family: "Neutraface Light";
src: url('assets/fonts/Neutraface2Text-Light.html') format('woff2'),
url('assets/fonts/Neutraface2Text-Light-2.html') format('woff');
}
</style>
<link rel="stylesheet" href="_compiled/app.css">
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css"> -->
</head>
<body>
<a class="sr" href="#barba-wrapper">Skip to Main Content</a>
<header class="site--header js-header">
<div href="#" class="menu-btn js-menu-btn o-media__icon no-barba">
<span class="icon x is--inactive"></span>
<span class="tx--caption">Menu</span>
</div>
<span class="logo-wrapper js-logo">
<a href="index.html" class="c-logo">
<svg class="c-logo__svg" width="48" height="41" viewBox="0 0 48 41" fill="none"
xmlns="http://www.w3.org/2000/svg"></svg>
<img src="logo.png" style="width: 100px; position: relative; transform: translateY(-3px)">
<div class="c-logo__txt">
<span>A </span><span>Stellar Trek</span>
</div>
</a>
<div class="loading-content">
<p>Get TechXited</p>
</div>
</span>
<a href="./events.php" class="projects-btn o-media__icon tx--gray-light">
<span class="tx--caption">Events</span>
<svg class="icon icon-projects" width="19" height="18" fill="none">
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(0 6)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(16 6)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(8 8)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(8)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(3 15)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(13 15)" />
</svg> </a>
</header>
<div class="site-nav js-nav">
<div class="nav-container">
<nav class="main-nav">
<ul>
<li>
<a class="main-nav__link tx--title-3 first" href="./" title="Home">Home</a>
</li>
<?php if(!$loggedIn) { ?>
<li>
<a class="main-nav__link tx--title-3" href="./backend/user/register.php" target="_blank" title="Register">Register</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="./backend/user/login.php" target="_blank" title="Login">Login</a>
</li>
<?php } else { ?>
<li>
<a class="main-nav__link tx--title-3" href="./backend/user/profile.php" target="_blank" title="Profile">Profile</a>
</li>
<?php } ?>
<li>
<a class="main-nav__link tx--title-3" href="./ca/ca.php" target="_blank" title="Gallery">Campus
Ambassador</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="events.php" title="Events">Events</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="sponsors.php" target="_blank" title="Our Sponsors">Our Sponsors</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="gallery/gallery.php" target="_blank"
title="Gallery">Gallery</a>
</li>
<li>
<a class="main-nav__link tx--title-3 active" href="team.php" title="Our Team">Our Team</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="connect.php" title="Contact Us">Contact Us</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="stepstoreg.php" title="Steps to Register">Steps to Register</a>
</li>
<!-- <li>
<a class="main-nav__link tx--title-3" href="careers.html" title="Careers">Careers</a>
</li> -->
</ul>
</nav>
<nav class="more-nav">
<span class="more-nav__label tx--callout nav_more_links">MORE</span>
<ul class="more-nav__list">
<span>
<li>
<a class="no-barba tx--caption first" href="https://www.facebook.com/CelestaIITP/" title="Facebook"
target="_blank">Facebook</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://twitter.com/celesta_iitp" title="Twitter"
target="_blank">Twitter</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://www.instagram.com/celestaiitp_official/" title="Instagram"
target="_blank">Instagram</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://www.youtube.com/channel/UCd8RpmJktBOwqT4OehcCjjg" title="Youtube"
target="_blank">Youtube</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://www.linkedin.com/in/celesta-iit-patna-3722b6166/" title="Linkedin"
target="_blank">Linkedin</a>
</li>
</span>
<span>
<li>
<a class="main-nav__link" href="developers.php" title="Developers">Core Developers</a>
</li>
<li>
<a class="main-nav__link" href="https://play.google.com/store/apps/details?id=in.org.celesta.iitp" title="Celesta App">Download Celesta App</a>
</li>
<li>
<a class="main-nav__link" href="app_privacy_policy.html" target="_blank" title="Celesta App">Celesta App's Privacy Policy</a>
</li>
<li>
<a class="main-nav__link" href="./assets/images/locations/busroutes.jpeg" target="_blank" title="Bus Routes">Bus Routes</a>
</li>
<!-- <li>
<a class="no-barba tx--caption" href="#" title="Site Credits" target="_blank">Link</a>
</li> -->
</span>
</ul>
</nav>
</div>
</div>
<main id="barba-wrapper" class="main">
<div class="barba-container" data-namespace="prismFaded" data-prismstroke="true">
<!-- font awesome link for hot reload -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css">
<ul class="viewport-links">
<!-- <li class="left ">
<a href="./backend/user/register.php" target="_blank" title="Register" class="tx--caption">Register</a>
</li> -->
<li class="right ">
<a href="connect.php" title="Contact Us" class="tx--caption">Contact Us</a>
</li>
</ul>
<section id="company" class="company-section js-company">
<p class="company-intro__text">The Core Team</p>
<br><br><br><br><br>
<div class="team grid company-wrap">
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/rakshit.jpeg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Rakshit Maheshwari</h3>
<span class="position">Fest Co-ordinator</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Rakshit Maheshwari is the Overall Fest Coordinator of Celesta 2019. Currently
he
studies Civil and Environmental Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/rakshitm123"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9939512017" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="content-block grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<p class="label tx--aqua-bright tx--callout">The Celesta Family</p>
<h5 class="title">"Our team works with the utmost sincerity to promote technical knowhow and
awareness in the region of Bihar."</h5>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/roushan.jpg" alt="" class="poly-3">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Roushan Kumar</h3>
<span class="position">Coordinator - Marketing and Sponsorship</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Roushan Kumar is the Coordinator for Marketing And Sponsorship, Celesta 2019.
Currently he
studies Mechanical Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://celesta.org.in/"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9610098566" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/priyansh.jpg" alt="" class="poly-2">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Priyansh Singh Rao</h3>
<span class="position">Coordinator - Media and Public Relations</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Priyansh Singh Rao is the Coordinator for Media and Public Relations, Celesta
2019. Currently he
studies Chemical and Biochemical Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/priyansh.rao.56"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8058501770" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/aman.jpeg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Aman Deep</h3>
<span class="position">Coordinator - Media and Public Relations</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Aman Deep is the Coordinator for Media and Public Relations, Celesta 2019.
Currently he
studies Mechanical Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/adeep02"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9931059201" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/piyush.jpeg" alt="" class="poly-3">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Piyush Tiwary</h3>
<span class="position">Coordinator - Events and Operations</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Piyush Tiwary is the Coordinator for Events and Operations, Celesta 2019.
Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/31aqua"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9834943057" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/mohit.jpeg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Mohit Kishore</h3>
<span class="position">Coordinator - Events and Operations</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Mohit Kishore is the Coordinator for Events and Operations, Celesta 2019.
Currently he
studies Computer Science and Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/originalmk7"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9570566557" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="https://scontent.fdel29-1.fna.fbcdn.net/v/t1.0-9/69758453_2552516934793272_3271425749835317248_n.jpg?_nc_cat=109&_nc_oc=AQnE4zhpSKkWSW2zjG3C_GUUAIU9Y5-B8jzGcZmjQE0zfYnmkMgDHQJTh0AGY2dXo-U&_nc_ht=scontent.fdel29-1.fna&oh=4f726557b38417d05c6c7081a60be20b&oe=5E1FE2E4" alt="" class="poly-3">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Vatsal Singhal</h3>
<span class="position">Coordinator - Development Team</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Vatsal Singhal is the Coordinator for Development Team, Celesta 2019.
Currently he
studies Computer Science and Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/vatsalsinghal1"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8585992062" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="https://scontent.fdel29-1.fna.fbcdn.net/v/t1.0-9/37335348_650818578607839_8746314299707752448_n.jpg?_nc_cat=107&_nc_oc=AQmcimtnnXX-F7K7miDUT3su-mitM4turv_vJ6gN9CjzKwnxPaY_LCPMCXrNeuKRYpI&_nc_ht=scontent.fdel29-1.fna&oh=11eed26a251897a9d588c4fa298f3dd5&oe=5DF31CC4" alt="" class="poly-2">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Deepanjan Datta</h3>
<span class="position">Coordinator - Development Team</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Deepanjan Datta is the Coordinator for Development Team, Celesta 2019.
Currently he
studies Computer Science and Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/deepanjan05"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:6290689355" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/srikar.jpeg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">P.V.S.G Krishna Srikar</h3>
<span class="position">Coordinator - Creatives And Design</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>P.V.S.G Krishna Srikar is the Coordinator for Creatives and Design, Celesta 2019.
Currently he
studies Chemical and Biochemical Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/urstruly.srikar11"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9666663764" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/shubham.jpeg" alt="" class="poly-3">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Shubham Mondal</h3>
<span class="position">Coordinator - Creatives And Design</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Shubham Mondal is the Coordinator for Creatives and Design, Celesta 2019.
Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/subham.mondal.7547031"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8967654843" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/raghu.jpeg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Raghu Vamsi</h3>
<span class="position">Coordinator - Creatives And Design</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Raghu Vamsi is the Coordinator for Creatives and Design, Celesta 2019.
Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://celesta.org.in/"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9939512017" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/prateek.jpg" alt="" class="poly-2">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Prateek Rai</h3>
<span class="position">Coordinator - Management And Planning</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Prateek Rai is the Coordinator for Management and Planning, Celesta 2019.
Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/people/Prateek-Rai/100019405147477"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:7222998383" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/yashwanth.jpg" alt="" class="poly-3">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Yashwanth Chowdhary</h3>
<span class="position">Coordinator - Management And Planning</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Yashwanth Chowdhary is the Coordinator for Management and Planning, Celesta
2019. Currently he
studies Chemical and Biochemical Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/yaswanthchowdary.muppalla.7"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:9182994302" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/ramakrishna.jpeg" alt="" class="poly-2">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Rama Krishna Rapelly</h3>
<span class="position">Coordinator - Management And Planning</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Rama Krishna Rapelly is the Coordinator for Management and Planning, Celesta
2019. Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/ramakrishna.rapelly"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8985265942" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/pranshu.jpeg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Pranshu Chandani</h3>
<span class="position">Coordinator - Hospitality</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Pranshu Chandani is the Coordinator for Hospitality, Celesta 2019. Currently
he
studies Chemical and Biochemical Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://celesta.org.in/"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8791838088" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/nikhil.jpg" alt="" class="poly-1">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Nikhil Bommera</h3>
<span class="position">Coordinator - Hospitality</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>
Nikhil Bommera is the Coordinator for Hospitality, Celesta 2019. Currently
he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/nikhil.bommera.520"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:7396326865" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/manoj.jpeg" alt="" class="poly-2">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Manoj Kumar</h3>
<span class="position">Coordinator - Registrations And Security</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Manoj Kumar is the Coordinator for Registrations and Security, Celesta 2019.
Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/people/Manoj-Kumar/100007306956302"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8328864643" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/team/aditya.jpg" alt="" class="poly-3">
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Aditya Ranjan</h3>
<span class="position">Coordinator - Registrations And Security</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>Aditya Ranjan is the Coordinator for Registrations and Security, Celesta
2019. Currently he
studies Electrical and Electronics Engineering in his 3rd year in IIT Patna.
</p>
<h1>
<a href="https://www.facebook.com/adityaranjan04"
style="color: #fff; margin-right: 10px"><i
class="fab fa-facebook-square"></i></a>
<a href="tel:8271572990" style="color: #fff"><i
class="fas fa-phone"></i></a>
</h1>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</main>
<div class="site-bg js-site-bg">
<svg class="site-bg__base" width="391" height="443" viewBox="0 0 391 443" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path id="base-1"
d="M263.271 0L38.182 14.4553L0.126221 74.5177L72.5441 122.478L17.699 193.746L57.9998 333.87L160.632 389.621L256.219 354.099L272.113 290.899L339.158 269.833L374.08 218.399L383.034 97.0412L263.271 0Z"
fill="#061923" />
</svg>
<svg class="site-bg__prism" width="520" height="520" viewBox="0 0 520 520" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g class="site-bg__prism-paths" fill="url(#prism-gradient)" stroke="url(#prism-stroke)">
<path opacity="0.1"
d="M514.866 109.292L438.382 14.8205L350.185 0.444092L288.748 14.7573L211.834 21.9358L127.705 19.2287L60.4896 58.5935L0.649414 171.596L6.45021 361.159L84.8981 469.475L180.303 502.738L312.331 475.688L385.241 432.514L449.25 354.119L494.213 260.279L521.272 162.775L514.866 109.292Z" />
<path opacity="0.2"
d="M455.868 255.512L464.687 152.614L448.838 96.1473L391.329 38.7099L197.838 37.3079L95.7332 54.7909L4.70752 210.801L27.3383 362.114C27.3383 362.114 109.838 457.628 107.337 456.479H296.338L434.338 314.114L455.868 255.512Z" />
<path opacity="0.3"
d="M402.586 295.972L409.891 151.972L366.586 83.9716L250.086 61.4716L123.586 61.4716L22.5864 193.972L77.0864 412.972L244.586 439.972L402.586 314.972V295.972Z" />
<path opacity="0.4"
d="M360.932 328.762L358.099 147.269L249.38 91.3844L153.889 77.351L37.5862 176.972L55.9904 384.147L195.667 422.738L348.275 345.182L360.932 328.762Z" />
<path opacity="0.5"
d="M323.95 304.021L304.092 148.712L206.901 110.288L125.052 106.567L43.7476 195.102L72.3455 378.019L193.851 398.916L323.95 314.972V304.021Z" />
<path opacity="0.6"
d="M297.338 299.114L279.613 165.114L185.392 131.765L116.586 127.101L49.8015 205.165L76.8651 369.824L179.267 390.602L279.613 321.005L297.338 299.114Z" />
<path
d="M271.338 263.472L246.113 168.411L174.338 138.972L118.586 144.972L66.0864 201.972L96.0864 346.472L174.338 373.472L271.338 306.972V263.472Z" />
</g>
<defs>
<linearGradient id="prism-gradient" x1="521.272" y1="167" x2="15" y2="378"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3850CF" />
<stop offset="1" stop-color="#00FFEE" />
</linearGradient>
<linearGradient id="prism-stroke" x1="521.272" y1="167" x2="15" y2="378" gradientUnits="userSpaceOnUse">
<stop stop-color="#3850CF" />
<stop offset="1" stop-color="#00FFEE" />
</linearGradient>
</defs>
</svg>
</div>
<script src="_compiled/vendor.js" async></script>
<script src="_compiled/app.js" async></script>
</body>
<!-- Mirrored from mcbridedesign.com/company by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 20 Aug 2019 12:01:22 GMT -->
</html>