forked from shameelsadaka/tedxmace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
932 lines (736 loc) · 42.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
<!DOCTYPE html>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>TEDxMACE</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.jpg" type="image/x-icon">
<link rel="icon" href="favicon.jpg" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=K2D" rel="stylesheet">
</head>
<body id="top">
<div id="wavybg-wrapper" class="home-parallax">
<canvas>Your browser does not support HTML5 canvas.</canvas>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo.png" alt="Homepage">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3>Navigation</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#theme" title="theme">Theme</a></li>
<li><a class="smoothscroll" href="#speakers" title="speakers">Previous Speakers</a></li>
<li><a class="smoothscroll" href="#youthspeaker" title="youthspeaker">Youth Speaker Hunt</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact Us</a></li>
</ul>
<p>This independently organized TEDx event is operated under license of TEDx</p>
<ul class="header-nav__social">
<li>
<a href="https://www.facebook.com/tedxmace/"><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="https://www.twitter.com/TEDxMACE"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/tedxmace"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section">
<div class="overlay"></div>
<!-- <div class="shadow-overlay"></div> -->
<div class="home-content">
<div class="row home-content__main">
<h3>Welcome to TEDxMACE</h3>
<h1>
Inspired yet unusual, it's a space for<br/>
strong and impactful stories, off beat thoughts<br>
connecting you to what's real<br>
while taking you to far far away.
</h1>
<div class="home-content__buttons">
<a href="#about" class="smoothscroll btn btn--stroke">
More About Us
</a>
<a href="#contact" class="smoothscroll btn btn--stroke">
Contact Us
</a>
</div>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
<div class="home-content__line"></div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://www.facebook.com/tedxmace/"><i class="fa fa-facebook" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://www.twitter.com/TEDxMACE"><i class="fa fa-twitter" aria-hidden="true"></i><span>Twiiter</span></a>
</li>
<li>
<a href="https://www.instagram.com/tedxmace"><i class="fa fa-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">Hello There</h3>
<h1 class="display-1 display-1--light">We Are TEDxMACE</h1>
</div>
</div> <!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full">
<p>
Carefully picked out, thoroughly thought out, and once elegantly sequenced, words, have a way of resonating with your soul. They could inspire, rejuvenate or leave you in quiet introspection. Here, at TEDxMACE (a full-day conference), we bring you hand-picked stories of unconventionally extraordinary individuals who will showcase to you a world for not just what it is, but, for what it could be. It's our third attempt in stimulating interesting conversations in little communities; our journey into the future in the company of those making it.
</p>
</div>
</div> <!-- end about-desc -->
<div class="about__line"></div>
</section> <!-- end s-about -->
<section id="theme" class="s-theme">
<div class="row narrow has-bottom-sep section-intro add-bottom text-center">
<div class="col-twelve tab-full">
<h1 class="display-2">EDGE OF CHAOS<sup>THEME</sup></h1>
<p class="lead">Too much order and change ceases. Too much chaos and organisation recedes. Somewhere in between thrives the sublimity of reality, celebrating a wonderful mix of stability and evanescence. It is a vibrant existence where nothing really locks into space, yet never really dissolves into turbulence, either. It is complex, intricate, spontaneous, dynamic, adaptive and very much alive. </p>
</div>
</div>
<div class="row">
<div class="col-six tab-full">
<h3>About <span style="color:#ff2b06">TED</span></h3>
<p class="drop-cap">A story like no other deserves a narrator like no other. TED is a non-profit global community envisioning the tagline 'ideas worth spreading' through a series of talks spanning 18 minutes -- short, powerful conversations developing narratives on diverse topics sprawling Technology, Entertainment, Design, and pretty much everything that's beyond and under the sun. Annually hosted twice, the narratives by leading changemakers, thinkers and doers are recorded and later made available for free. The roster of speakers
</p>
</div>
<div class="col-six tab-full">
<h3>About <span style="color:#ff2b06">TED<sup>x</sup></span></h3>
<p class="drop-cap">
TEDx talks are conversations that aims at developing a local narrative while maintaining the underlying vision of TED. While TED takes more of a global approach, TEDx is a space that celebrates local voices. It's been the force that has taken TED across the planet and seeded all of these communities. Licensed from TED, it offers a wholesome experience to its speakers and attendees, a global stage for local dialogues. These conversations are recorded and later made available for free in TEDx handles.
</p>
</div>
</div>
</section>
<!-- speakers
================================================== -->
<section id='speakers' class="s-speakers">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2">Previous Speakers</h1>
</div>
</div> <!-- end section-header -->
<div class="row speakers-list block-1-4 block-tab-full">
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/anusha_mp.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Anusha MP</span>
<!--span class="speaker-title">Youth Speaker Hunt</span-->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/arya_murali.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Arya Murali</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/bistriti_poddar.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Bistriti Poddar</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/dr._divya_s_iyer.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Dr. Divya S Iyer</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/fathima_hakkim.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Fathima Hakkim</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/harish_sivakumar.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Harish Sivaramakrishnan</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/jacob_thomas.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Jacob Thomas</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/james_joseph.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">James Joseph</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/nikhil_j_menon.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Nikhil J Menon</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/santosh_avannavar.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Santosh Avannavar</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/sijo_kuruvila.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Sijo Kuruvila</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/t-p-sreenivasan.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">T-P-Sreenivasan</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/uma_subramaniam.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Uma Subramaniam</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
<div class="col-block speaker-item" data-aos="fade-up">
<span class="speaker-box">
<span class="speaker-pic"><img src="images/speakers/vinay_menon.jpg"/></span>
<span class="speaker-name-box">
<span class="speaker-name">Vinay Menon</span>
<!-- <span class="speaker-title">Sub Title</span> -->
</span>
</span>
</div>
</div> <!-- end speakers-list -->
</section> <!-- end s-speakers -->
<!-- speakers
================================================== -->
<section id='youthspeaker' class="s-youthspeaker">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<br>
<h1 class="display-1--light">Youth Speaker Hunt</h1>
</div>
</div> <!-- end section-header -->
<div class="row">
<div class="col-five tab-full">
<img src="images/ysh.jpg" style="width: 100%;margin-bottom: 40px;">
</div>
<div class="col-seven tab-full">
<h3 class="subhead">This one's for you</h3><br/>
<ul style="margin-bottom: 20px;">
<li>If you're a student from a school or college.</li>
<li>If you've a goosebump sort of story, or wicked cool ideas that inspire enduring curiosity and genuine wonder</li>
<li>If you're a social butterfly when it comes to captivating a crowd</li>
</ul>
<p>
It'll be cool for you to also remember that our preferred medium for the talk is either English or Malayalam.
</p>
<h3 class="subhead">Hey, this is how our TEDxMACE YSH happens:</h3><br/>
<ol>
<li> You send us an abstract, within 150 words about the idea(s) you're excited to present.</li>
<li> We'd love for you to articulate your idea(s) in coherence with our <br> theme: 'Edge of Chaos'.</li>
<li> When we're really into your idea(s), we'll send in an e-mail intimation.</li>
<li> After that, you could tell us more, more and more about it through a brisk, sweet 5-minute video.</li>
<li> We could also have a telephonic conversation to get know you better.</li>
<li> When all that's done and good, we hope to see you later at TEDxMACE 2019, with a glee on our faces, glowingly welcoming you on board.</li>
</ol>
</div>
<div class="home-ysh__buttons">
<a href="ysh.html" target="_blank" class="btn">
Apply Here
</a>
</div>
</div>
</section> <!-- end s-speakers -->
<!-- works
================================================== -->
<section id='works' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2 display-2--light">Previous Talks</h1>
</div>
</div> <!-- end section-header -->
</div> <!-- end intro-wrap -->
<div class="row works-content">
<div class="col-full masonry-wrap">
<div class="masonry">
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="https://youtu.be/jl7DqkKIzp4" target="_blank" class="thumb-link" title="It's okay to masturbate -- sex lessons to unlearn " data-size="566x566">
<img src="images/portfolio/talk1.jpg"
srcset="images/portfolio/talk1.jpg 1x, images/portfolio/talk1.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Uma Subramaniam
</h3>
<p class="item-folio__cat">
Founder & Co-Director of Aarambh India
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="https://youtu.be/IWOp2RgYYtg" target="_blank" class="thumb-link" title="He in she; she in he: gender that I didn't know!" data-size="1050x700">
<img src="images/portfolio/talk2.jpg"
srcset="images/portfolio/talk2.jpg 1x, images/portfolio/talk2.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Santhosh Avannavar
</h3>
<p class="item-folio__cat">
Chief Commercial Officer at QtPi Robotics
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="https://youtu.be/qoFpZX9HBhU" target="_blank" class="thumb-link" title="Inside my galaxy of flying whales and humming jellyfishes" data-size="1050x700">
<img src="images/portfolio/talk3.jpg"
srcset="images/portfolio/talk3.jpg 1x, images/portfolio/talk3.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Fathima Hakkim
</h3>
<p class="item-folio__cat">
Artist & Architect
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="https://youtu.be/Shohs7K2YpI" target="_blank" class="thumb-link" title="How corruption affects climate change?" data-size="1050x700">
<img src="images/portfolio/talk4.jpg"
srcset="images/portfolio/talk4.jpg 1x, images/portfolio/talk4.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Dr. Jacob Thomas
</h3>
<p class="item-folio__cat">
Former Vigilance & Anti-corruption Bureau Director
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="https://youtu.be/EpCUmJM89fk" target="_blank" class="thumb-link" title="Why can't boys and girls sit together?" data-size="1050x700">
<img src="images/portfolio/talk5.jpg"
srcset="images/portfolio/talk5.jpg 1x, images/portfolio/talk5.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Vinay Menon
</h3>
<p class="item-folio__cat">
Comedian
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="https://youtu.be/RogXfEF09jo" target="_blank" class="thumb-link" title="Song of life: finding your rhythm" data-size="1050x700">
<img src="images/portfolio/talk6.jpg"
srcset="images/portfolio/talk6.jpg 1x, images/portfolio/talk6.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Harish Sivaramakrishnan
</h3>
<p class="item-folio__cat">
Playback Singer
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
</div> <!-- end masonry -->
</div> <!-- end col-full -->
</div> <!-- end works-content -->
</section> <!-- end s-works -->
<!-- clients
================================================== -->
<section id="clients" class="s-clients" style="display: none;">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Clients</h3>
<h1 class="display-2">TEDxMACE has been honored to
partner up with these clients</h1>
</div>
</div> <!-- end section-header -->
<div class="row clients-outer" data-aos="fade-up">
<div class="col-full">
<div class="clients">
<a href="#0" title="" class="clients__slide"><img src="images/clients/apple.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/atom.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/blackberry.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/dropbox.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/envato.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/firefox.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/joomla.png" /></a>
<a href="#0" title="" class="clients__slide"><img src="images/clients/magento.png" /></a>
</div> <!-- end clients -->
</div> <!-- end col-full -->
</div> <!-- end clients-outer -->
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<p>Qui ipsam temporibus quisquam vel. Maiores eos cumque distinctio nam accusantium ipsum.
Laudantium quia consequatur molestias delectus culpa facere hic dolores aperiam. Accusantium quos qui praesentium corpori.
Excepturi nam cupiditate culpa doloremque deleniti repellat.</p>
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Tim Cook</span>
<span class="testimonials__pos">CEO, Apple</span>
</div>
</div>
<div class="testimonials__slide">
<p>Excepturi nam cupiditate culpa doloremque deleniti repellat. Veniam quos repellat voluptas animi adipisci.
Nisi eaque consequatur. Quasi voluptas eius distinctio. Atque eos maxime. Qui ipsam temporibus quisquam vel.</p>
<img src="images/avatars/user-05.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Sundar Pichai</span>
<span class="testimonials__pos">CEO, Google</span>
</div>
</div>
<div class="testimonials__slide">
<p>Repellat dignissimos libero. Qui sed at corrupti expedita voluptas odit. Nihil ea quia nesciunt. Ducimus aut sed ipsam.
Autem eaque officia cum exercitationem sunt voluptatum accusamus. Quasi voluptas eius distinctio.</p>
<img src="images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Satya Nadella</span>
<span class="testimonials__pos">CEO, Microsoft</span>
</div>
</div>
</div><!-- end testimonials -->
</div> <!-- end col-full -->
</div> <!-- end client-testimonials -->
</section> <!-- end s-clients -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="overlay"></div>
<div class="contact__line"></div>
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Contact Us</h3>
<h1 class="display-2 display-2--light">Come say hi!</h1>
</div>
</div>
<div class="row contact-content" style="background: #121212;" data-aos="fade-up">
<div class="contact-primary" style="display: none;">
<h3 class="h6">Send Us A Message</h3>
<form name="contactForm" id="contactForm" method="post" action="" novalidate="novalidate">
<fieldset>
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Your Name" value="" minlength="2" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Your Email" value="" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="" class="full-width">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="Your Message" rows="10" cols="50" required="" aria-required="true" class="full-width"></textarea>
</div>
<div class="form-field">
<button class="full-width btn--primary">Submit</button>
<div class="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</fieldset>
</form>
<!-- contact-warning -->
<div class="message-warning">
Something went wrong. Please try again.
</div>
<!-- contact-success -->
<div class="message-success">
Your message was sent, thank you!<br>
</div>
</div> <!-- end contact-primary -->
<div class="contact-secondary" style="width: 100%">
<div class="contact-info">
<h3 class="h6" data-editclass="hide-on-fullwidth">Contact Info</h3>
<div class="block-1-3 block-tab-full">
<div class="cinfo col-block" data-aos="fade-up">
<h5>Where to Find Us</h5>
<p>
<a href="https://goo.gl/maps/SdgrT8z2seq" target="_blank">Mar Athanasius College of Engineering Kothamangalam<br/> Ernakulam, Kerala.</a>
</p>
</div>
<div class="cinfo col-block" data-aos="fade-up">
<h5>Email Us At</h5>
<p>
<a href="mailto:tedxmace@gmail.com">tedxmace@gmail.com</a>
</p>
</div>
<div class="cinfo col-block" data-aos="fade-up">
<h5>Call Us At</h5>
<p>
<a href="tel:+91 8157 970 107">Jefin Joseph: (+91) 8157 970 107</a><br>
<a href="tel:+91 9061 713 922">Christo Joby: (+91) 9061 713 922</a><br>
</p>
</div>
</div>
<center>
<ul class="contact-social">
<li>
<a href="https://www.facebook.com/tedxmace/"><i class="fa fa-facebook" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.twitter.com/TEDxMACE"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.instagram.com/tedxmace"><i class="fa fa-instagram" aria-hidden="true"></i></a>
</li>
</ul> <!-- end contact-social -->
</center>
</div> <!-- end contact-info -->
</div> <!-- end contact-secondary -->
</div> <!-- end contact-content -->
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<div class="row footer-main">
<div class="col-six tab-full left footer-desc">
<div class="footer-logo"></div>
TEDxMACE is a full-day conference, licensed from TED, and independently organized by a sputtering student community at Mar Athanasius College of Engineering, Kothamangalam, Kerala.
</div>
<div class="col-six tab-full right footer-subscribe" >
<h4>Get in Touch</h4>
<p>
Phone : +91 8157 970 107, +91 9061 713 922<br/>
Email : tedxmace@gmail.com
</p>
<div class="subscribe-form" style="display: none;">
<form id="mc-form" class="group" novalidate="true">
<input type="email" value="" name="EMAIL" class="email" id="mc-email" placeholder="Email Address" required="">
<input type="submit" name="subscribe" value="Subscribe">
<label for="mc-email" class="subscribe-message"></label>
</form>
</div>
</div>
</div> <!-- end footer-main -->
<div class="row footer-bottom">
<div class="col-twelve">
<div class="copyright">
<span>Copyright © TEDxMACE 2018-2019. All Rights Reserved.</span><br/>
<span style="font-size: 11px;color: #444444;position: relative;top: 50px;">Developed by : <a href="https://www.shameelsadaka.github.io" target="_blank" style="color: #666666;">Shameel Kadannamanna</a></span>
</div>
<div class="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-arrow-up" aria-hidden="true"></i></a>
</div>
</div>
</div> <!-- end footer-bottom -->
</footer> <!-- end footer -->
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div> <!-- end photoSwipe background -->
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader">
<div class="line-scale-pulse-out">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="js/waterpipe.js"></script>
<script>
</script>
</body>
</html>