-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1276 lines (1190 loc) · 102 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 data-wf-domain="https://tedxmec.in" data-wf-page="64b4320d9bd69e8f6cf59f72"
data-wf-site="64b4320d9bd69e8f6cf59f6e" data-wf-status="1">
<head>
<meta charset="utf-8" />
<title>TEDxMEC | TED</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta name="description" content=" TEDxMEC stands for the mission of TED - to propagate ideas potent enough to change the mindsets, inspire youth at large and equip them to crave a better living, beneficial for themselves and the society they dwell in. TEDxMEC features engaging talks inspiring people ranging from veteran performers and social reformers to young innovators. " >
<meta name="keywords" content="TEDXMEC, TED, Talks, Themes, Speakers, Technology, Entertainment, Design">
<meta property="og:title" content="TEDxMEC | Ideas worth spreading" >
<meta property="og:description" content="TEDxMEC is a platform for sharing innovative ideas and inspiring talks by thought leaders and experts in various fields. Join us to explore new perspectives and learn about the latest trends and technologies." >
<meta
content="TEDxMEC"
property="twitter:TEDxMEC is a platform for sharing innovative ideas and inspiring talks by thought leaders and experts in various fields. Join us to explore new perspectives and learn about the latest trends and technologies."
>
<meta
content="TEDxMEC"
property="twitter:title"
>
<meta
content="TEDxMEC"
property="twitter:description"
>
<meta property="og:type" content="website" >
<meta content="summary_large_image" name="twitter:card" >
<meta content="width=device-width, initial-scale=1" name="viewport" >
<meta content="TEDxMEC" name="TEDxMEC" >
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="watermark_remove.js"></script>
<script
type="text/javascript">!function (o, c) { var n = c.documentElement, t = " w-mod-"; n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch") }(window, document);</script>
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y33DW10NLD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y33DW10NLD');
</script>
</head>
<body class="body---black">
<script>
function isSafari() {
return /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
}
function hideVideoContainerIfSafariAndSmallScreen() {
if (isSafari() && window.innerWidth < 500) {
var videoContainer = document.getElementById('video-container');
videoContainer.style.display = 'none';
}
}
document.addEventListener('DOMContentLoaded', hideVideoContainerIfSafariAndSmallScreen);
</script>
<div id="video-container">
<video autoplay muted loop id="background-video" class="video-bg">
<source src="../assets/trial3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div style="opacity:0" class="main">
<div class="header">
<div class="navigation">
<div data-animation="default" data-collapse="medium" data-duration="400" data-easing="ease"
data-easing2="ease" role="banner" class="navbar-component w-nav">
<div class="nav-container chinese-black-bg w-container"><a href="#hero-section"
id="w-node-eb63eb28-033e-cf4c-5391-988c110fd773-110fd770" aria-current="page"
class="w-nav-brand w--current"><img src="assets/tedxmeclogo.png" loading="lazy"
data-w-id="eb63eb28-033e-cf4c-5391-988c110fd774" alt="Website Logo"
class="website-brand-img" /></a>
<nav role="navigation" id="w-node-eb63eb28-033e-cf4c-5391-988c110fd775-110fd770"
class="nav-menu---daniel w-nav-menu"><a href="#hero-section" aria-current="page"
class="nav-link body-02---r dark-gray-text hover-text w-nav-link w--current">Home</a><a
href="#about_tedx"
class="nav-link body-02---r dark-gray-text hover-text w-nav-link">About
us</a>
<a href="../team.html" target="_blank"
class="nav-link body-02---r dark-gray-text hover-text w-nav-link">Team</a>
<a
href="sponsor.html#previous_sponsors"
class="nav-link body-02---r dark-gray-text hover-text w-nav-link">Partner with us</a>
<a href="../gallery.html" class="nav-link body-02---r dark-gray-text hover-text w-nav-link">Gallery</a>
<div class="log-infos-inside"><a href="https://www.linkedin.com/company/tedxmec/" target="_blank" class="ri--linkedin-line"></a>
<a target="_blank" href="https://www.instagram.com/tedxmec/" class="custom-link w-inline-block"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64b6761284d27e4bfd8fadb6_Group%20427319612.svg"
loading="lazy" alt="Instagram Logo" class="instagram-logo" /></a><a href="#contact-section"
class="link-block-c w-inline-block">
<div class="nav-try-wrap">
<div class="nav-try-text body-02---m white-text">Contact Now</div><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64b67612c66e41b4809bfba2_Group%20427319613.svg"
loading="lazy" alt="Nav Try Icon" class="nav-try-icon" />
</div>
</a></div>
</nav>
<div id="w-node-eb63eb28-033e-cf4c-5391-988c110fd788-110fd770" class="log-infos">
<a href="https://www.linkedin.com/company/tedxmec/" target="_blank" style="margin-right: 12px;" class="ri--linkedin-line"></a>
<a
href="https://www.instagram.com/tedxmec/" target="_blank"
class="custom-link w-inline-block"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64b6761284d27e4bfd8fadb6_Group%20427319612.svg"
loading="lazy" data-w-id="1b5d3171-4684-9fb2-e6bc-823a642c2aaf" alt="Instagram Logo"
class="instagram-logo" /></a><a href="#contact-section"
class="link-block-c w-inline-block">
<div data-w-id="a3705391-2cf2-4b34-37f8-7b1526a94713" class="nav-try-wrap">
<div class="nav-try-text body-02---m white-text hover-text">Contact Now</div><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64b67612c66e41b4809bfba2_Group%20427319613.svg"
loading="lazy" alt="Nav Try Icon" class="nav-try-icon" />
</div>
</a></div>
<div id="w-node-eb63eb28-033e-cf4c-5391-988c110fd790-110fd770" class="menu-button w-nav-button">
<div class="icon---daniel w-icon-nav-menu"></div>
</div>
</div>
</div>
</div>
<section id="hero-section" class="hero-section">
<div class="custom-container">
<div class="hero-content home-content">
<div data-w-id="05af5032-5ebf-84fc-93db-31054c235a2e"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="hero-avatar-wrap">
<div style="background: none; border: none; "class="hero-avatar-img-wrap">
<!-- <img src="assets/random-speaker.jpg" loading="lazy" alt="Hero Avatar" class="hero-avatar" /> -->
</div>
<!-- <div class="hero-avatar-name gradient-text">TEDxMEC</div> -->
</div>
<div data-w-id="65aed758-9baa-7c2a-ea5c-0e729a4e80f7"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="hero-title-wrap---about">
<h2 class="hero-title---about heading-01 gradient-text"><strong>Uncharted dimensions unlocked.</strong></h2>
</div>
<div data-w-id="6982a6b1-4868-03d6-d7be-770f39b83097"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="hero-text---about body-02---r dark-gray-text">Date: 17 March 2024</div>
<div style="margin-top: -40px;" data-w-id="6982a6b1-4868-03d6-d7be-770f39b83097"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="hero-text---about body-02---r dark-gray-text">Venue: IMA House, Kaloor</div>
<div data-w-id="118e9996-cf46-ce76-b412-b0f6e6a610a6"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="hero-buttos---about"><a href="/contact-us" class="custom-link w-inline-block">
</a><a href="https://docs.google.com/forms/d/e/1FAIpQLScGGNKDoV8YoVf_-eGfji8IoYY0Fnh40a5iJj6jyQxAwvAUsQ/viewform" class="custom-link w-inline-block">
<div data-w-id="ebba60f7-0e44-e2bb-9cf4-20612594b43b" class="button-01-wrap---r">
<div class="button-01---r body-02---r white-text explore-button1">Buy Tickets</div>
</div>
</a></div>
</div>
</div>
</section>
<!--
<div data-w-id="4c8d066c-b030-97c4-12b7-eb55b6b4c2f1"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="moving-info">
<div class="moving-info-container">
<div class="moving-info-content chinese-black-bg">
<div data-w-id="4777e80a-90e3-7daf-f1ec-a68c7fff5b84"
style="-webkit-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="moving-info-list">
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text"><strong>TEDx events
inspire.</strong></div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Ideas worth spreading.</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Diverse speakers share.
</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Local communities engage.
</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">TEDx talks empower.</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Innovation showcased here.
</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Data-driven insights available
at a glance</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Minds expanded exponentially.
</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Ongoing optimization to
maximize every opportunity</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Curiosity ignited
passionately.</div>
</div>
</div>
<div data-w-id="5f56d337-5861-f617-2f78-a2b29a4ba4ce"
style="-webkit-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="moving-info-list">
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Ongoing optimization to
maximize every opportunity</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Instant, automated, awesome
resolutions</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Data-driven insights available
at a glance</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Head-spinning product and
experience design</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Ongoing optimization to
maximize every opportunity</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Instant, automated, awesome
resolutions</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Data-driven insights available
at a glance</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Head-spinning product and
experience design</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Ongoing optimization to
maximize every opportunity</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Instant, automated, awesome
resolutions</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Ijcon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Head-spinning product and
experience design</div>
</div>
<div class="moving-info-item"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bed26f569dd72106680a0e_Group%208.svg"
loading="lazy" alt="Moving Info Icon" class="moving-info-item-icon" />
<div class="moving-info-item-text body-02---m white-text">Data-driven insights available
at a glance</div>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!--
<section class="cube-section">
<img class="theme-image" src="./assets/cube.jpg">
</section>
<section class="cube-text-section">
<div class="cube-text-container">
<div style="padding-bottom: 20px; text-align: left;" class="skill-title heading-02 gradient-text">Our Theme</div>
<div class="cube-text complete-text body-01---m white-text">
Our voyage through existence is an intricate tapestry woven with the threads of philosophical inquiry, personal growth and shared experiences.
At TEDxMEC, we journey on a profound exploration of the multidimensional nature of human existence. Our vision is to build a platform where you can forge connections and build conversations that explore multifaceted humanness. Through fervent words and engagement, we foster a community where philosophical enquiry into the fundamentals of life is celebrated.
</div>
<a href="#" class="custom-link w-inline-block">
<div class="button-01---r body-02---r white-text">Our Theme</div>
</a>
</div>
</section>
-->
<section data-w-id="d4b59be6-fc6f-d92f-adb3-20167319ad8e" class="complete-section">
<div class="custom-container">
<div class="complete-content">
<div class="theme-image-container">
<img style="padding: 100px 40px; width: 970px;" class="theme-image" src="assets/Cube Light.jpg">
</img>
</div>
<div class="complete-text-wrap">
<div class="complete-text body-01---m white-text">Our voyage through existence is an intricate tapestry woven with the threads of philosophical inquiry, personal growth and shared experiences.
At TEDxMEC, we journey on a profound exploration of the multidimensional nature of human existence. Our vision is to build a platform where you can forge connections and build conversations that explore multifaceted humanness. Through fervent words and engagement, we foster a community where philosophical enquiry into the fundamentals of life is celebrated.
</div><a href="#" class="custom-link w-inline-block">
<div class="button-01---r body-02---r white-text">Our Theme</div>
</a>
</div>
</div>
</div>
</section>
<section class="recent-porject">
<div class="custom-container">
<div class="project-content">
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b14"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="project-title-wrap">
<h2 class="project-title heading-02 gradient-text">Meet Our Speakers</h2>
</div>
<div class="project-list">
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b18"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="../project/nisthar.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets/speakers/nishar sait.png" class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">NISTHAR SAIT</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">ACTOR</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b24"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="collection-item-custom w-dyn-item"><a
href="/../project/nisha.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item---n chinese-black-bg move-16px">
<div class="project-thumb-wrap---n"><img loading="lazy"
src="assets/speakers/nisha sarang.png" alt="Project Thumb"
class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">NISHA SARANGH
</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">ACTRESS</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b30"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/nikhil.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets/speakers/nikhil gopal.png"
sizes="(max-width: 767px) 78vw, (max-width: 991px) 39vw, (max-width: 1279px) 26vw, 327.7375183105469px"
class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">NIKHIL GOPALAKRISHNAN
</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">CEO, PENTAD SECURITIES</div>
</div>
</a></div>
</div>
</div>
<div class="container-hidden2">
<div style="padding-bottom: 40px;" data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b3c"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/jilu.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets/speakers/jilu joseph.png" class="project-thumb" />
</div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">JILU JOSEPH</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">CEO, WEBANDCRAFTS</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b54"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/project/advin.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets/speakers/adwin ro.png"
sizes="(max-width: 767px) 78vw, (max-width: 991px) 39vw, (max-width: 1279px) 26vw, 327.7375183105469px"
class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">ADVIN ROY NETTO</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">UX DESIGNER, GOOGLE</div>
</div>
</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="container-hidden" style="align-items: center; display: flex; flex-direction: row; gap: 140px; justify-content: center; flex-wrap: wrap; padding: 17px;">
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b3c"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div style="max-width: 400px;" role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/jilu.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets/speakers/jilu joseph.png" class="project-thumb" />
</div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">JILU JOSEPH</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">CEO, WEBANDCRAFTS</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b54"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div style="max-width: 400px;" role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/project/advin.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets/speakers/adwin ro.png"
sizes="(max-width: 767px) 78vw, (max-width: 991px) 39vw, (max-width: 1279px) 26vw, 327.7375183105469px"
class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">ADVIN ROY NETTO</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">UX DESIGNER, GOOGLE</div>
</div>
</a></div>
</div>
</div>
</div>
<!--
<section class="recent-porject">
<div class="custom-container">
<div class="project-content">
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b14"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="project-title-wrap">
<h2 class="project-title heading-02 gradient-text">Meet Our Speakers</h2>
</div>
<div style="display: flex;
flex-direction: row;
gap: 40px;
row-gap: 80px;
flex-wrap: wrap;
justify-content: center;">
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b18"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/ranveer.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="assets\speakers-trial\aisha.jpg" class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">Bidisha Pandey</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">renowned
playback singer and composer in the Malayalam film industry</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b3c"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/ranveer.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="https://qph.cf2.quoracdn.net/main-qimg-c867028d53b3cc4cd3a8ed7bb12ffb1a-lq" class="project-thumb" />
</div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">Nazriya Nazim</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">renowned
playback singer and composer in the Malayalam film industry</div>
</div>
</a></div>
</div>
</div >
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b30"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/ranveer.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div style="align-items: center; margin-right: -460px; display: flex; flex-direction: row; gap: 10px; flex-wrap: wrap;" class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="https://pbs.twimg.com/profile_images/1268101548426571777/C8Ash5cn_400x400.jpg"
sizes="(max-width: 767px) 78vw, (max-width: 991px) 39vw, (max-width: 1279px) 26vw, 327.7375183105469px"
class="project-thumb" /></div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">Sujith Bhakthan
</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">renowned
playback singer and composer in the Malayalam film industry</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b3c"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/ranveer.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="https://qph.cf2.quoracdn.net/main-qimg-c867028d53b3cc4cd3a8ed7bb12ffb1a-lq" class="project-thumb" />
</div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">Nazriya Nazim</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">renowned
playback singer and composer in the Malayalam film industry</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="e06d7949-cc79-cff1-9ba4-00e7d6dc1b3c"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a href="/../project/ranveer.html" target="_blank"
class="custom-link _w-100 w-inline-block">
<div class="project-item chinese-black-bg move-16px">
<div class="project-thumb-wrap"><img alt="Project Thumb" loading="lazy"
src="https://qph.cf2.quoracdn.net/main-qimg-c867028d53b3cc4cd3a8ed7bb12ffb1a-lq" class="project-thumb" />
</div>
<h3 class="project-item-title sub-heading-02 white-text" id="speakertitle">Nazriya Nazim</h3>
<div class="project-item-subtitle body-02---r dark-gray-text">renowned
playback singer and composer in the Malayalam film industry</div>
</div>
</a></div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<section class="skill-section tr1" id="about_tedx">
<div class="custom-container">
<div class="skill-content">
<div data-w-id="300c25bb-718f-830c-6933-55244a944153"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="skill-title-wrap">
<h2 style="padding-top: 80px;" class="skill-title heading-02 gradient-text">About TEDx</h2>
<!-- <h2 class="themetitle">Metamorphosis</h2> -->
</div>
</div>
<div data-w-id="3b2fb3a8-5b4a-0bbb-4570-6e6b44bf5548"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateYl,(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="sort-info---about">
<div class="menual---about chinese-black-bg">
<div class="menu-heading---about"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bd7d9df1a71b415d3073f9_Group%2035.svg"
loading="lazy" alt="Heading Icon" class="menu-heading-icon---about" />
<h3 class="menu-heading-text---about sub-heading-02 gradient-text" id="hehe"><strong>WHAT IS TEDx</strong></h3>
</div>
<div class="menual-text---about body-02---r dark-gray-text">In the spirit of ideas worth spreading, TED has created a program called TEDx. TEDx is a program of local, self-organized events that bring people together to share a TED-like experience. Our event is called TEDxMEC, where x = independently organized TED event. At our TEDxMEC event, TED Talks video and live speakers will combine to spark deep discussion and connection in a small group.</div>
</div>
</div>
<div data-w-id="3b2fb3a8-5b4a-0bbb-4570-6e6b44bf5548"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateYl,(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="sort-info---about">
<div class="menual---about chinese-black-bg">
<div class="menu-heading---about"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bd7d9df1a71b415d3073f9_Group%2035.svg"
loading="lazy" alt="Heading Icon" class="menu-heading-icon---about" />
<h3 class="menu-heading-text---about sub-heading-02 gradient-text" id="hehe"><strong>x = independently organized event</strong></h3>
</div>
<div class="menual-text---about body-02---r dark-gray-text">TEDxMEC stands for the mission of TED - to propagate ideas potent enough to change the mindsets, inspire youth at large and equip them to crave a better living, beneficial for themselves and the society they dwell in. TEDxMEC features engaging talks inspiring people ranging from veteran performers and social reformers to young innovators. It serves as a stage for promoting fresh thoughts and inspiring innovation. </div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="testimonial-section">
<div data-w-id="8f15b970-6351-7f79-bfa3-c55a1d1d443c"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="testimonial-content">
<div class="custom-container in-testmonial">
<div class="testimonial-title-wrap">
<h2 class="testimonial-title heading-02 gradient-text"><strong>TedxMec Walls(cool stuffs that
happened in tedx)</strong></h2>
</div>
</div>
<div class="testimonial-list-wrap">
<div data-delay="4000" data-animation="slide" class="testimonial-slider w-slider"
data-autoplay="false" data-easing="ease" data-hide-arrows="false" data-disable-swipe="false"
data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="true">
<div class="testimonial-mask testimonial-list w-slider-mask">
<div class="w-slide">
<div class="testimonial-item chinese-black-bg">
<div class="testimonial-body">
<div class="testimonial-ownar-wrap">
<div class="testimonial-ownar-avatar"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53df61bc3b0f8b3677d1_Ellipse%2012.svg"
loading="lazy" alt="Testimonial Owner avatar"
class="owner-avatar---testimonial" />
<div class="testimonial-owner-name body-01---m white-text">Demi Jacobs
</div>
</div>
<div class="testimonial-role-wrap">
<div class="testimonial-owner-role body-02---r dark-gray-text">Floramax
</div>
</div>
</div>
<div class="testimonial-ratings"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dcce0d963e95144d19_Group%2060.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /></div>
<div class="testimonial-text sub-heading-03 white-text">Daniel's
data-driven design has had a profound impact on our software's
usability. Our clients are thrilled with the improvements. </div>
</div>
</div>
</div>
<div class="w-slide">
<div class="testimonial-item chinese-black-bg">
<div class="testimonial-body">
<div class="testimonial-ownar-wrap">
<div class="testimonial-ownar-avatar"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53df61bc3b0f8b3677d1_Ellipse%2012.svg"
loading="lazy" alt="Testimonial Owner avatar"
class="owner-avatar---testimonial" />
<div class="testimonial-owner-name body-01---m white-text">Matthew
Johnson</div>
</div>
<div class="testimonial-role-wrap">
<div class="testimonial-owner-role body-02---r dark-gray-text">Fashion
Designer</div>
</div>
</div>
<div class="testimonial-ratings"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dcce0d963e95144d19_Group%2060.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /></div>
<div class="testimonial-text sub-heading-03 white-text">It has been an absolute
pleasure working with Relume. The team went above and beyond to help us
execute on our vision and always.</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="testimonial-item chinese-black-bg">
<div class="testimonial-body">
<div class="testimonial-ownar-wrap">
<div class="testimonial-ownar-avatar"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53de8d9a87a0c4f77a17_Ellipse%2012%20(2).svg"
loading="lazy" alt="Testimonial Owner avatar"
class="owner-avatar---testimonial" />
<div class="testimonial-owner-name body-01---m white-text">Matthew
Johnson</div>
</div>
<div class="testimonial-role-wrap">
<div class="testimonial-owner-role body-02---r dark-gray-text">Fashion
Designer</div>
</div>
</div>
<div class="testimonial-ratings"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dcce0d963e95144d19_Group%2060.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /></div>
<div class="testimonial-text sub-heading-03 white-text">It has been an absolute
pleasure working with Relume. The team went above and beyond to help us
execute on our vision and always.</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="testimonial-item chinese-black-bg">
<div class="testimonial-body">
<div class="testimonial-ownar-wrap">
<div class="testimonial-ownar-avatar"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53fd46321aa5619b90a8_Ellipse%2010.svg"
loading="lazy" alt="Testimonial Owner avatar"
class="owner-avatar---testimonial" />
<div class="testimonial-owner-name body-01---m white-text">Matthew
Johnson</div>
</div>
<div class="testimonial-role-wrap">
<div class="testimonial-owner-role body-02---r dark-gray-text">Fashion
Designer</div>
</div>
</div>
<div class="testimonial-ratings"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dcce0d963e95144d19_Group%2060.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /></div>
<div class="testimonial-text sub-heading-03 white-text">It has been an absolute
pleasure working with Relume. The team went above and beyond to help us
execute on our vision and always.</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="testimonial-item chinese-black-bg">
<div class="testimonial-body">
<div class="testimonial-ownar-wrap">
<div class="testimonial-ownar-avatar"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53df61bc3b0f8b3677d1_Ellipse%2012.svg"
loading="lazy" alt="Testimonial Owner avatar"
class="owner-avatar---testimonial" />
<div class="testimonial-owner-name body-01---m white-text">Matthew
Johnson</div>
</div>
<div class="testimonial-role-wrap">
<div class="testimonial-owner-role body-02---r dark-gray-text">Fashion
Designer</div>
</div>
</div>
<div class="testimonial-ratings"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dcce0d963e95144d19_Group%2060.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /></div>
<div class="testimonial-text sub-heading-03 white-text">It has been an absolute
pleasure working with Relume. The team went above and beyond to help us
execute on our vision and always.</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="testimonial-item chinese-black-bg">
<div class="testimonial-body">
<div class="testimonial-ownar-wrap">
<div class="testimonial-ownar-avatar"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53de8d9a87a0c4f77a17_Ellipse%2012%20(2).svg"
loading="lazy" alt="Testimonial Owner avatar"
class="owner-avatar---testimonial" />
<div class="testimonial-owner-name body-01---m white-text">Matthew
Johnson</div>
</div>
<div class="testimonial-role-wrap">
<div class="testimonial-owner-role body-02---r dark-gray-text">Fashion
Designer</div>
</div>
</div>
<div class="testimonial-ratings"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd61bc3b0f8b3675f9_Group%2061.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dcce0d963e95144d19_Group%2060.svg"
loading="lazy" alt="Testimonial Rating Icon"
class="testimonial-rating-icon" /></div>
<div class="testimonial-text sub-heading-03 white-text">It has been an absolute
pleasure working with Relume. The team went above and beyond to help us
execute on our vision and always.</div>
</div>
</div>
</div>
</div>
<div class="testimonial-arrow left--arrow w-slider-arrow-left"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53dd38f1f3db88e4d3a4_Group%20427319611%20(1).svg"
loading="lazy" alt="Slider Arrow icon" class="testimonial-arrow-icon" /></div>
<div class="testimonial-arrow w-slider-arrow-right"><img
src="https://assets.website-files.com/64b4320d9bd69e8f6cf59f6e/64bf53def568407726927840_Group%20427319612%20(1).svg"
loading="lazy" alt="Slider Arrow icon" class="testimonial-arrow-icon" /></div>
<div class="testimonial-slide-nav w-slider-nav w-round w-num"></div>
</div>
</div>
</div>
</section> -->
<div class="blog-section---home">
<div class="custom-container">
<div class="blog-content">
<div data-w-id="ead09954-9207-9fab-3660-9037920b5c78"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="blog-title-wrap">
<h2 class="skill-title heading-02 gradient-text">PREVIOUS SPEAKERS
</h2>
</div>
<div class="blog-list">
<div data-w-id="ead09954-9207-9fab-3660-9037920b5c7b"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a
href="#"
class="custom-link w-inline-block">
<div class="blog-item move-16px">
<div class="blog-img-wrap chinese-black-bg"><img loading="lazy"
src="assets\speakers-trial\janakips.jpg" alt="Blog Thumb"
class="blog-img" />
<div class="details">
<div class="author-title">
<h3>JANAKI EASWAR</h3>
</div>
<p>Janaki Easwar is a versatile Indian-Australian singer, songwriter, and YouTube content creator, weaving musical tales that resonate with a global audience.</p>
</div>
</div>
<div class="blog-text body-02---r dark-gray-text">JANAKI EASWAR</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="ead09954-9207-9fab-3660-9037920b5c7b"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a
href="#"
class="custom-link w-inline-block">
<div class="blog-item move-16px">
<div class="blog-img-wrap chinese-black-bg"><img loading="lazy"
src="assets\previous\naveen.jpeg" alt="Blog Thumb"
class="blog-img" />
<div class="details">
<div class="author-title">
<h3>NAVEEN RICHARD</h3>
</div>
<p>Naveen Richard, an Indian-Australian comedian, actor, and content creator, brings laughter to audiences worldwide with his witty humor and engaging online presence.</p>
</div>
</div>
<div class="blog-text body-02---r dark-gray-text">NAVEEN RICHARD</div>
</div>
</a></div>
</div>
</div>
<div data-w-id="ead09954-9207-9fab-3660-9037920b5c7b"
style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item"><a
href="#"
class="custom-link w-inline-block">
<div class="blog-item move-16px">
<div class="blog-img-wrap chinese-black-bg"><img loading="lazy"
src="assets\previous\vishaknair.jpg" alt="Blog Thumb"
class="blog-img" />
<div class="details">
<div class="author-title">
<h3>VISHAK NAIR</h3>
</div>
<p>Vishak Nair, an Indian actor, gained prominence with his debut in the acclaimed 2016 film "Aanandam" and made a Bollywood splash in 2022 with the sports biopic "Shabaash Mithu."</p>
</div>