-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1009 lines (903 loc) · 56.6 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="TEDxSJEC is a platform that brings together curious, creative, and progressive thinkers from St. Joseph Engineering College to have a conversation about this year's theme: Ember. Featuring a dynamic group of speakers from diverse backgrounds and experiences who aim to impart inspiration and intellectual acceleration to young adults, enabling them to rekindle the dying fire and open up a world of opportunity by taking these students on a thought-provoking journey.">
<title>TEDx SJEC</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="shortcut icon" href="./favicon-32x32.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@450;600;800;900&display=swap" rel="stylesheet">
</head>
<body>
<div id="myModal" class="modal">
<span class="close cursor" onclick="closeModal()" style="top: 10%;">×</span>
<div class="modal-content">
<div class="mySlides">
<div class="numbertext">1 / 46</div>
<img src="./assets/2020/1.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">3 / 46</div>
<img src="./assets/2020/3.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">4 / 46</div>
<img src="./assets/2020/4.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">5 / 46</div>
<img src="./assets/2020/5.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">6 / 46</div>
<img src="./assets/2020/6.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">7 / 46</div>
<img src="./assets/2020/7.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">8 / 46</div>
<img src="./assets/2020/8.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">9 / 46</div>
<img src="./assets/2020/9.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">10 / 46</div>
<img src="./assets/2020/10.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">11 / 46</div>
<img src="./assets/2020/11.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">12 / 46</div>
<img src="./assets/2020/12.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">13 / 46</div>
<img src="./assets/2020/13.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">14 / 46</div>
<img src="./assets/2020/14.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">15 / 46</div>
<img src="./assets/2020/15.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">16 / 46</div>
<img src="./assets/2020/16.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">17 / 46</div>
<img src="./assets/2020/17.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">18 / 46</div>
<img src="./assets/2020/18.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">19 / 46</div>
<img src="./assets/2020/19.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">20 / 46</div>
<img src="./assets/2020/20.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">21 / 46</div>
<img src="./assets/2020/21.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">22 / 46</div>
<img src="./assets/2020/22.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">23 / 46</div>
<img src="./assets/2020/23.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">24 / 46</div>
<img src="./assets/2020/24.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">25 / 46</div>
<img src="./assets/2020/25.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">26 / 46</div>
<img src="./assets/2020/26.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">27 / 46</div>
<img src="./assets/2020/27.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">28 / 46</div>
<img src="./assets/2020/28.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">29 / 46</div>
<img src="./assets/2020/29.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">30 / 46</div>
<img src="./assets/2020/30.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">31 / 46</div>
<img src="./assets/2020/31.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">32 / 46</div>
<img src="./assets/2020/32.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">33 / 46</div>
<img src="./assets/2020/33.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">34 / 46</div>
<img src="./assets/2020/34.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">35 / 46</div>
<img src="./assets/2020/35.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">36 / 46</div>
<img src="./assets/2020/36.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">37 / 46</div>
<img src="./assets/2020/37.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">38 / 46</div>
<img src="./assets/2020/38.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">39 / 46</div>
<img src="./assets/2020/39.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">40 / 46</div>
<img src="./assets/2020/40.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">41 / 46</div>
<img src="./assets/2020/41.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">42 / 46</div>
<img src="./assets/2020/42.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">43 / 46</div>
<img src="./assets/2020/43.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">44 / 46</div>
<img src="./assets/2020/44.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">45 / 46</div>
<img src="./assets/2020/45.JPG" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">46 / 46</div>
<img src="./assets/2020/46.JPG" style="width:100%">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
</div>
<header>
<nav class="navbar navbar-expand-lg navbar-light nav_bg fixed-top"
style="box-shadow: 0 10px 15px -2px rgba(0,0,0,.2) !important;">
<div class="container-fluid">
<a class="navbar-brand" href="#" aria-label="TEDxSJEC"><span class="nav-ted">
<img src="https://ik.imagekit.io/shanwill/TEDxSJEC_5IkodtClZ.png?ik-sdk-version=javascript-1.4.3&updatedAt=1650900050580"
alt="" width="160px">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="container-fluid">
<ul class="navbar-nav me-auto mb-2 mb-lg-0"
style="float: right;justify-content: space-evenly;display: flex;">
<li class="nav-item ">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="#speakers">Speakers and Performers</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="#past">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">Meet the team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<button type="button" class="btn btn-outline-danger"
onclick="location.href='https://register.tedxsjec.in';">Register Now</button>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!-- Home Section -->
<section class="home" id="home">
<div id="particles-js">
<div class="container" id="home-land">
<div class="row">
<div class="col-md">
<div class="row">
<h1>EM<span style="color: rgb(215, 7, 7);">B</span>ER</h1>
</div>
<div class="row">
<h3>June 11 <sup>th</sup></h3>
</div>
<div class="row">
<h4>2022</h4>
</div>
</div>
<div class="col-md">
<img src="https://ik.imagekit.io/shanwill/1_uLqc8zpPE.png?ik-sdk-version=javascript-1.4.3&updatedAt=1650900052840"
class="vector1" width="60%" alt="">
<img src="https://ik.imagekit.io/shanwill/2_Dh3Jiopbz.png?ik-sdk-version=javascript-1.4.3&updatedAt=1650900052602"
class="vector2" width="60%" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about" id="about">
<div class="container-fluid">
<div class="col">
<div class="row">
<h1>About</h1>
</div>
<div class="dash"></div>
<div class="container-fluid pt-5">
<div class="row" style="display: flex;flex-wrap: nowrap;">
<div class="col-6 col-sm-3" style="width: 60%;" id="about-wrap">
<p>TEDxSJEC is a platform that brings together curious, creative, and progressive thinkers
from St. Joseph
Engineering
College to have a conversation about this year's theme: Ember.
Featuring a dynamic group of speakers from diverse backgrounds and experiences who aim
to impart inspiration
and
intellectual acceleration to young adults, enabling them to rekindle the dying fire and
open up a world of
opportunity
by taking these students on a thought-provoking journey.</p>
</div>
<div class="col-6 col-sm-3"
style="display: flex;justify-content: center;align-items: flex-start;margin-left: 140px;"
id="logo-theme">
<div class="container-fluid "
style="display: flex;justify-content: center;align-items: center;width: 100%;height: 45vh;background: #f3f3f3;box-shadow: 20px 20px 60px #b4b2b2, -20px -20px 60px #ffffff;border-radius: 50%;">
<center>
<img src="https://ik.imagekit.io/shanwill/ember_logo.png?ik-sdk-version=javascript-1.4.3&updatedAt=1650900399495 "
width="70%" style="position: relative;" class="pb-5">
</center>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Speakers and Performers Section -->
<section class="speakers" id="speakers">
<div class="container-fluid">
<div class="col">
<div class="row">
<h1>Speakers</h1>
</div>
<div class="dash-speakers"></div>
<div class="container-fluid py-5" id="speaker-box">
<div class="container">
<div class="row active-with-click">
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Mr Zeeshan Ramlan</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Director & Head HR - CoinSwitch
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/zeeshan_UPGTebgid.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627375221">
</div>
<div class="mc-description">
Mr. Zeeshan Ramlan is the current head of HR at Coinswitch Kuber and a global HR Leader with 14 Years of experience in the fields of HR Business Partner, Employee Relations, Diversity & Inclusion, Engagement, and Talent Acquisition. He has been an integral part of Intuit India’s Journey to becoming India’s No.1 Company. In his time at Infosys, he led change management programs and helped business leaders create an engaged and productive workforce. In 2018, he was honored with the Global Top 100 Diversity and Inclusion Leader Award by the World HRD Congress. He is also a Certified Diversity and Inclusion Professional. He has always been passionate about social work and founded The Ramlan Foundation which has changed the lives of thousands in the past 7 years.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Mr Nitin Vas</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Founder of PaperSeed
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/nitin_sRIn5gt82.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627373653">
</div>
<div class="mc-description">
Mr. Nitin Vas proudly refers to his team at Paper Seed CO as social entrepreneurs, as their primary stride is towards contributing to the local economy and they ensure environmental safety on their path. He started the Paper Seed Co in 2017 invigorated by the Gandhian philosophy of the swadeshi economic paradigm, which preaches local production and consumption. They began by creating seed papers and later created seed pencils, pens, and even toys made from paper pulp. Almost every product at paper seed is handcrafted and made from recycled materials and with minimal exposure to chemicals. Arguably their most notable product, the Seed Masks were launched in March of 2021 to overwhelmingly positive response. He had the opportunity to impact society and make it a better place, and he took the initiative to do so.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Ms Neha Harish</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Architect | Asia's Young Designer Awardee
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/neha_1BHwyglF0.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627373309">
</div>
<div class="mc-description">
Neha Harish, a Bengaluru-based architect, was selected as Young Sustainable Designer 2020 of Asia in a transnational competition. Her architecture portfolio demonstrates both her enthusiasm for the field and the principles she gained while studying. Her presentation, Requiem for Tolerance, which links architecture, homelessness, and memory to demonstrate tolerance as a solution to the loss of identity experienced by displaced migrants during times of civil war, economic upheaval, and international wars, was named Best Sustainable Design among 13 finalists from across Asia at Nippon Paint's Asia Young Designer Award. Her work has been recognised for its significance at the intersections of architecture, displacement, and living memory.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Dr. K. K. Sarma</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Elephant Man of Asia | Padma Shri Awardee
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/Dr_K.K._nmTj0l2fe.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627373055">
</div>
<div class="mc-description">
Elephants are abundant in India and Dr. K.K. Sarma is one of those responsible for ensuring that this species lives and thrives gracefully in our country's north-eastern region. For ten years, an admired veterinarian known as the "Elephant Man of Asia'' worked without a weekend off, rehabilitating 600 elephants each year. Making a vital contribution to Asian elephant conservation, his passion for these animals, combined with his adventurous personality, drives him to aid every elephant, regardless of location. He was the first individual in Assam to use tranquiliser darts to quiet elephants, saving their lives as well as the lives of humans in adjacent villages. Given the opportunity to repair and restore, he was able to have a significant impact on society.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Dr. Chhavi Dawar</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Child rights activist | Social educator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/chhavi_2_7o3rFyRVr.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627376526">
</div>
<div class="mc-description">
Chhavi Dawar, a 30-year-old child rights activist and a social educator from Hyderabad is on a mission to ensure no child goes through the trauma of child sexual abuse. "Break the silence" is an initiative started by Ms. Dawar conducts sessions that aim to encourage victims and their families to speak out and denounce and has so far conducted more than 150 sessions. Being a victim of child abuse herself, Ms. Dawar has used the experience and trauma she went through to be a personal safety educator. She had done a course with TULIR, a non-profit organisation that works on the prevention and healing of child sexual abuse in India. With the help of TULIR, Ms. Dawar has trained nearly 2000 teachers and parents regarding child sexual abuse and what they can do about it. "Childhood should be safe" is what Ms. Dawar believes in and she continues to fulfill the goals of her initiative.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Ms Shivangi Sharma</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Travel Content Creator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/shivangi_K2amGWiska.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627374020">
</div>
<div class="mc-description">
Shivangi Sharma who goes by her social tag "The Vagabond Lawyer" is a jack of many trades. This Chandigarh-born lawyer finds solace in exploring new places, soaking in their cultures, and telling tales to more than 77 thousand followers through her digital media presence. Shivangi has mastered the art of balancing not one but two full-time careers juggling between an ardent practicing lawyer and a travel enthusiast. India being an uncharted territory for solo female travelers, she has not only covered 200+ cities globally but has empowered her social community by providing cheap and safe travel routes. Today, this brand that Shivangi created for herself stands tall and is reached out by the government for collaborations. Her story speaks of the courage one owns in taking small steps to enlighten the ember within themselves.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Dr. Kamini A. Rao</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Physician| Padma Shri Awardee
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/kamini_12BHoNBUX.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627373091">
</div>
<div class="mc-description">
Dr. Kamini A. Rao is a pioneer in the field of assisted reproduction, just as Mozart is in classical music. She received the Padma Shri award for her excellent clinical and scientific career in reproductive medicine, with a focus on reproductive endocrinology, and ovarian physiology. She specializes in gynecology and obstetrics, as well as infertility therapy. She believes in self-reflection, family orientation as well as setting aside time for yourself and loves spending time with the youth. Her areas of special interest include assisted laser hatching, high-risk pregnancies, in vitro fertilization (IVF), intrauterine insemination (IUI), intracytoplasmic sperm injection (ICSI), and in vitro fertilization - embryo transfer (IVF-ET). Regardless of her hectic schedule, Dr. Kamini is usually seen with her family.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Mr Sirish Govardhan</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Social Worker | NSS National Awardee
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Speakers/Sirish_1_5rb8h_atD.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653627374429">
</div>
<div class="mc-description">
Mr. Sirish Govardhan hails from Bengaluru, a diverse and inclusive city filled with opportunities. He is a passionate traveller and an engineering graduate, and is currently working as an Executive Assistant to the second-youngest Member of the Parliament in the 17th Lok Sabha. He believes that every positive change can create a big ripple in the society’s framework. He has been involved in social service for the past six years. His engagement and services in the National Service Scheme (NSS) led him to be being honored with the NSS National Award (2019-20) by the President of India, Shri Ram Nath Kovind and the State NSS Award (2019-20). Sirish is also an entrepreneur, a long-distance cyclist, and a people person. In his free time, you will find him catching up on some much-needed sleep.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="row ">
<h1>Performers</h1>
</div>
<div class="dash-performers"></div>
<div class="container py-4">
<div class="row active-with-click">
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Ms Remona Evette Pereira</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Bharatanatyam artiste
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Performers/Remona_Vox4_DNlb.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653494761270">
</div>
<div class="mc-description">
Remona Evette Pereira is a dance prodigy who was quoted to have achievements beyond her age by the Prime Minister of India. This Falnir native is the recipient of Pradhan Mantri Rashtriya Bal Puraskar 2022 along with 105 accolades for her art form at the national, state, and district levels. Remona was in the grind from an early age of three, having mastered the classical art of Bharatanatyam against all odds, she now aims to teach this art to underprivileged children. This young dancer considers herself as a channel to spread the color and richness of our culture across the world.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>V Minor</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Cross-Genre Musicians
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Performers/vminor__1__rTGw4kPAy.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653984188531">
</div>
<div class="mc-description">
V Minor is a band that blends Indian and Western music styles using instruments like the harmonium and tabla to reproduce classic western tunes. This six-piece band typically performs English and Bollywood music, giving familiar songs a desi touch. Girls Like You (by Maroon 5) and Radioactive (by Imagine Dragons), two of their most successful versions, were recognised by both bands on Twitter. They have gone on to perform at the Google conference in Macau representing India and have toured Singapore. This boy band compromises of Sidharth SKP (Harmonium), Zubin Imtiaz (Guitar/Percussion), Fidal (Piano/Vocals), Pranav Ramachandran (Violin), and Nithin Ramachandran (Pianist) and together they hope to keep innovating, experimenting, and spreading joy via their music.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Ms Anu Karagada</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Content Creator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Performers/anu_WmAmyn6lB.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653494761295">
</div>
<div class="mc-description">
We come from a time when we were hemmed in by our surroundings, with the only source of entertainment being the digital world. Anu Karagada, an Instagram content creator located in Bangalore, hails from this sector. She creates relatable sketches that depict one's day-to-day life as an Indian in a comedic manner. Her work as a video creator has a positive impact not only on those around her, but also on people all over the world.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<article class="material-card Red">
<h2>
<span>Ms Ranjitha Yellur</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Yakshagana Artiste
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" alt=""
src="https://ik.imagekit.io/shanwill/Performers/Ranjitha_M2DKeFZeE.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1653494761790">
</div>
<div class="mc-description">
Ranjitha Yellur is a multifaceted individual, who has excelled in arts, sports, and academics. She is a Yakshagana artiste, Carnatic singer, athlete, and a debater. She hails from a family of artists and is trained in Yakshagana by her father and Yakshagana Guru, Shri Ramachandra Yellur. She is also a trained Carnatic Singer having passed Junior grade exam in Shastriya Sangeetha with distinction and Completed senior grade exam in 2019. Ranjitha was trained in Carnatic singing by Shri Krishnaraj Nandalike. She is a recipient of many laurels at regional and national levels. Ranjitha is the recipient of the DK Rajyotsava award for Yakshagana. She has had the honour of performing Yakshagana in the Rashtrapathi Bhavan - New Delhi. Ranjitha was recognized by the DK Kannada Sahithya Academy and Kalkura Prathishtana’s Prathibha Award and was also entitled as “Kalarathna '' by the Bramhakumari’s Ishwareeya University. Ranitha was awarded the Yakshakalaradhana, Yaksha Prathibha, and Kuriya Prathishtana Vimshathi award for excellence in Yakshagana.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
</article>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Past Editions Section -->
<section class="past" id="past">
<div class="container-fluid">
<div class="col">
<div class="row ">
<h1>Past Edition</h1>
</div>
<div class="dash-team"></div>
<div class="container-fluid pt-5">
<div class="row">
<div class="col-md">
<video
src="https://ik.imagekit.io/shanwill/aftermovie_8o28_dM5x.mp4?ik-sdk-version=javascript-1.4.3&updatedAt=1650900060482"
poster="https://ik.imagekit.io/shanwill/thumbnail_uUsbBUwTN.png?ik-sdk-version=javascript-1.4.3&updatedAt=1650900024629"
width="800px" controls preload="auto"></video>
</div>
<div class="col-md">
<div class="container-fluid" id="past-images" onclick="openModal();currentSlide(1)">
<h2>Image Gallery</h2>
</div>
<div class="row pt-4">
<div class="col">
<a href="https://www.youtube.com/watch?v=8liVbJrdGi0&list=PLsRNoUx8w3rPMEpEe6C4ZtB4U-aApf9vU"
target="_blank">
<div class="container-fluid" id="past-talks">
<h2>Watch Talks </h2>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="team pt-5" id="team">
<div class="container-fluid pt-5">
<div class="col">
<div class="row">
<h1>Meet the team</h1>
</div>
<div class="dash-team"></div>
<div class="container-fluid pt-5 justify-content-center">
<div class="row">
<div class="col-6 col-sm-2">
<!-- Speaker container -->
<div class="speaker-container py-2">
<div class="team-img"
style="display: flex;align-items: center;justify-content: center;">
<img src="https://ik.imagekit.io/shanwill/Janice_uQn6cC81A.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1654230235396"
alt="" width="70%">
</div>
<div class="speaker-info pt-2 " style="text-align: center;">
<h3>Janice Mendes</h3>
<h6>Licensee and Organizer</h4>
</div>
</div>
<!-- End Speaker Container -->
</div>
<div class="col-6 col-sm-2">
<!-- Speaker container -->
<div class="speaker-container py-2">
<div class="team-img"
style="display: flex;align-items: center;justify-content: center;">
<img src="https://ik.imagekit.io/shanwill/Sarah_zL5Fje975.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1654230234844"
alt="" width="70%">
</div>
<div class="speaker-info pt-2" style="text-align: center;">
<h3>Sarah Augustian</h3>
<h6>Co-organizer</h4>
</div>
</div>
<!-- End Speaker Container -->
</div>
<div class="col-6 col-sm-2">
<!-- Speaker container -->
<div class="speaker-container py-2">
<div class="team-img"
style="display: flex;align-items: center;justify-content: center;">
<img src="https://ik.imagekit.io/shanwill/kevin_f7aJK_695_.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1654230235589"
alt="" width="70%" ">
</div>
<div class=" speaker-info pt-2" style="text-align: center;">
<h3>Kevin Pinto</h3>
<h6>Design Head</h4>
</div>
</div>
<!-- End Speaker Container -->
</div>
<div class="col-6 col-sm-2 justify-content-center">
<!-- Speaker container -->
<div class="speaker-container py-2">
<div class="team-img"
style="display: flex;align-items: center;justify-content: center;">
<img src="https://ik.imagekit.io/shanwill/Lizina_EnDtRZw6TM.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1654230235908"
alt="" width="70%">
</div>
<div class="speaker-info pt-2" style="text-align: center;">
<h3>Lizina Crasto</h3>
<h6>Curation Head</h4>
</div>
</div>
<!-- End Speaker Container -->
</div>
<div class="col-6 col-sm-2">
<!-- Speaker container -->
<div class="speaker-container py-2">
<div class="team-img"
style="display: flex;align-items: center;justify-content: center;">
<img src="https://ik.imagekit.io/shanwill/Neil_6G98taFim.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1654230236211"
alt="" width="70%">
</div>
<div class="speaker-info pt-2" style="text-align: center;">
<h3>Neil Lasrado</h3>
<h6>Creative Head</h4>
</div>
</div>
<!-- End Speaker Container -->
</div>
<div class="col-6 col-sm-2">
<!-- Speaker container -->
<div class="speaker-container py-2">
<div class="team-img"
style="display: flex;align-items: center;justify-content: center;">
<img src="https://ik.imagekit.io/shanwill/shanwill_jQEs4rLM8.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1654230235220"
alt="" width="70%">
</div>
<div class="speaker-info pt-2" style="text-align: center;">
<h3>Shanwill Pinto</h3>
<h6>Website Head</h4>
</div>
</div>
<!-- End Speaker Container -->
</div>
</div>
<!-- <div class="row pt-5">
</div> -->
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container-fluid">
<div class="col">
<div class="row">
<h1>Contact</h1>
</div>
<div class="dash-contact"></div>
<div class="col-md py-3">
<img src="https://ik.imagekit.io/shanwill/TEDxSJEC_5IkodtClZ.png?ik-sdk-version=javascript-1.4.3&updatedAt=1650900050580"
alt="" width="20%">
<h6 class="py-4" style="font-size: 20px;">Thank you for your interest in TEDx SJEC. To get in touch
with us regarding sponsorships and other queries, drop an
email to: <a href="mailto:[email protected]" style="color: red;">[email protected]</a> </h6>
</div>
<div class="container-fluid py-2">
<div class="row">
<div class="col-md">
<div class="container-fluid">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3888.9520360835395!2d74.89648861525045!3d12.910804319701683!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ba359dfac132663%3A0xa7bf228838232d32!2sSt%20Joseph%20Engineering%20College!5e0!3m2!1sen!2sin!4v1649410154956!5m2!1sen!2sin"
width="100%" height="350vh" style="border:5px solid black;border-radius: 20px;"
allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade">
</iframe title="">
</div>
</div>
<div class="col-md">
<div class="row">
<div class="col-md">
<h3>Address</h3>
<p>St. Joseph Engineering College,<br>
Vamanjoor,Mangalore - 575028<br>
Karnataka, India<br>
</p>
</div>
<div class="col-md">
<h3>Contact</h3>
<p>Dr. Binu K G : <a href="tel:+91-9739866947"
style="color: red;">+91-9739866947</a> <br>
</p>
</div>
</div>
<div class="row ">
<div class="col">
<h3 style="font-weight: 600 !important;">Spread the word !</h3>
<button class="bubbly-button"
onclick="window.open('https://www.instagram.com/accounts/login/?next=/tedxsjec/')">Instagram</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="page-footer font-small black">
<!-- Copyright -->
<div class="footer-copyright text-center py-3" style="color: white;background-color: black;padding: 0px 10px;">
Copyright ©2022 All Rights Reserved | Built with ❤️ by <span style="color: white;"> TEDx SJEC & <a
href="https://github.com/DELTA-SJEC" target="_blank" style="color: white;">DELTA SJEC</a> </span> |
This Independent TEDx Event Is Operated
Under License From TED
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<script src="./assets/js/particles.js"></script>
<script src="./assets/js/app.js"></script>
<script>
function openModal() {
document.getElementById("myModal").style.display = "block";
}
function closeModal() {
document.getElementById("myModal").style.display = "none";
}
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("demo");
var captionText = document.getElementById("caption");
if (n > slides.length) { slideIndex = 1 }
if (n < 1) { slideIndex = slides.length }
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
// dots[slideIndex - 1].className += " active";
// captionText.innerHTML = dots[slideIndex - 1].alt;
}
var animateButton = function (e) {
e.preventDefault;
//reset animation
e.target.classList.remove('animate');
e.target.classList.add('animate');
setTimeout(function () {
e.target.classList.remove('animate');
}, 700);
};
var bubblyButtons = document.getElementsByClassName("bubbly-button");
for (var i = 0; i < bubblyButtons.length; i++) {
bubblyButtons[i].addEventListener('click', animateButton, false);
}
$(function () {
$('.material-card > .mc-btn-action').click(function () {
var card = $(this).parent('.material-card');
var icon = $(this).children('i');
icon.addClass('fa-spin-fast');
if (card.hasClass('mc-active')) {
card.removeClass('mc-active');
window.setTimeout(function () {
icon
.removeClass('fa-arrow-left')
.removeClass('fa-spin-fast')
.addClass('fa-bars');
}, 800);
} else {
card.addClass('mc-active');
window.setTimeout(function () {
icon
.removeClass('fa-bars')
.removeClass('fa-spin-fast')
.addClass('fa-arrow-left');