-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
924 lines (809 loc) · 43.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145895157-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-145895157-1');
</script>
<!-- ========== Meta Tags ========== -->
<meta charset="UTF-8">
<meta name="description" content="TEDxCUSAT - 2019 ">
<meta name="keywords" content="TedX, TedXCUSAT, CUSAT, TED CUSAT, Big event, Cochin, Kochi, Kerala">
<meta name="author" content="TEDxCUSAT, CUSAT">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ========== Title ========== -->
<title> TEDxCUSAT </title>
<!-- ========== Favicon Ico ========== -->
<link rel="icon" type="image/ico" href="icon.png" />
<!-- ========== STYLESHEETS ========== -->
<!-- Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Fonts Icon CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/et-line.css" rel="stylesheet">
<link href="assets/css/ionicons.min.css" rel="stylesheet">
<!-- Carousel CSS -->
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<link href="assets/css/owl.theme.default.min.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body>
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
</div>
<!--header start here -->
<header class="header navbar fixed-top navbar-expand-md">
<div class="container">
<a class="navbar-brand logo" href="#">
<img src="assets/img/logopng.png" alt="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#headernav"
aria-expanded="false" aria-label="Toggle navigation">
<span class="lnr lnr-text-align-right"></span>
</button>
<div class="collapse navbar-collapse flex-sm-row-reverse" id="headernav">
<ul class=" nav navbar-nav menu">
<li class="nav-item">
<a class="nav-link active smooth-goto" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-goto" href="#speakers" class="smooth-goto">Speakers</a> </li>
<li class="nav-item">
<a class="nav-link smooth-goto" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-goto" href="#map">Venue</a>
</li>
<li class="nav-item">
<a class="nav-link " href="partners.html">Partners</a>
</li>
<li class="nav-item">
<a class="nav-link " href="team.html">Team</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link " href="tickets.html">Book now</a>
</li> -->
<li class="nav-item">
<a class="nav-link smooth-goto" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</header>
<!--header end here-->
<!--cover section slider -->
<section class="home-cover">
<div class="cover_slider owl-carousel owl-theme" id="home">
<div class="cover_item" style="background: url('assets/img/bg/slider2.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h2 class="cover-title pb20">
Nothing like <br>anything ever before
</h2>
<!-- <strong class="cover-xl-text">TED<sup class="cover-title-x">x</sup><span class="cover-place">CUSAT</span></strong>
<p class="cover-date"> -->
<!-- 28 SEPTEMBER 2019 , CUSAT KALAMASSERY. -->
<!-- </p> -->
<a href=# class=" btn disabled btn-primary btn-rounded">
SOLD OUT!
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider3.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-right">
<h2 class="cover-title pb20">
<span style="color:#c92216; font-weight: bolder">TED<sup
class="sup_x">x</sup></span><span style="font-weight:bolder">CUSAT </span> :
Flip the script<br> Rewrite the rules
</h2>
<!-- <strong class="cover-xl-text">TEDxCUSAT</strong> -->
<!-- <p class="cover-date">
13 AUGUST 2019 , CUSAT KALAMASSERY.
</p> -->
<a href=# class=" btn disabled btn-primary btn-rounded">
SOLD OUT!
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider4.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h2 class="cover-title">
<span class="misfit"> Misfit? Imperfect? Different?</span><br>
welcome to <span style="color:#c92216; font-weight: bolder">TED<sup
class="sup_x">x</sup></span><span style="font-weight:bolder">CUSAT</span>
</h2>
<!-- <strong class="cover-xl-text">TEDxCUSAT</strong> -->
<!-- <p class="cover-date">
28 SEPTEMBER 2019 , CUSAT KALAMASSERY.
</p> -->
<br>
<a href=# class=" btn disabled btn-primary btn-rounded">
SOLD OUT!
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- cover nav 1 2 3 -->
<!-- <div class="cover_nav">
<ul class="cover_dots">
<li class="active" data="0"><span>-</span></li>
<li data="1"><span>-</span></li>
<li data="2"><span>-</span></li>
</ul>
</div> -->
</section>
<!--cover section slider end -->
<!--about the event -->
<section class="pt100 pb100">
<div class="container" id="about">
<div class="section_title">
<h1 class="seo-hidden-text">What is TEDxCUSAT ?</h1>
<h3 class="title">
What is <span style="color:#c92216;">TED<sup style="font-size:20px;">x</sup></span>CUSAT
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
We present to you the first edition of <span style="color:#c92216;">TED<sup
style="font-size:10px;">x</sup></span>CUSAT with the aim of celebrating the idea of
TED-'Ideas worth spreading' at the Cochin University of Science and Technology campus. This
season will give a platform to people from all walks of life who help inspire and catalyse our
lives into powerful and better versions of ourselves. For some, this event will mean life as
they have yet to experience it and for others, it will mean transcending boundaries. We believe
that genius ideas are generated when different people come together under one roof and these
ideas have the potential to change attitudes, society and ultimately the world. Such stories of
endeavour and experience will urge you to doubt reasons, redefine your definitions and play a
part in progressing forward for the greater good. All set to ignite some sweet rebellions and
ask many big questions, the first ever event of its kind here will create conversations that
matter and spread ideas worth spreading. Are you ready to be radically open about the stuff of
life? We are!
</p>
</div>
</div>
</div> <br>
<br>
<div class="container">
<div class="section_title">
<h1 class="seo-hidden-text">About TEDxCUSAT</h1>
<h3 class="title">
About <span style="color:#c92216;">TED<sup style="font-size:20px;">x</sup></span>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
In the spirit of ideas worth spreading, TEDx is a program of local, self-organized events that
bring people together to share a TED-like experience.
At a TEDx event, TED Talks video and live speakers combine to spark deep discussion and
connection.
These local, self-organized events are branded TEDx, where x = independently organized TED
event. The TED Conference provides general guidance for the TEDx program, but individual TEDx
events are self-organized.</p>
<a
href="https://www.ted.com/about/programs-initiatives/tedx-program"><strong>TEDxProgram</strong></a>
</p>
</div>
</div>
</div>
<br><br>
<!--event countdown -->
<section class="bg-img pt70 pb70" id="countdown">
<div class="overlay_dark"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<h4 class="mb30 text-center color-light">Let’s create some history together. Join us in</h4>
<div class="countdown"></div>
<br>
<h4 class="mb30 text-center color-light">at the Seminar Complex, CUSAT for the
first ever
<span style="color:#c92216;">TED<sup style="font-size:0.7em;">x</sup></span>CUSAT</h4>
</div>
</div>
</div>
</section>
<!--event count down end-->
<br><br><br>
<!-- putting brakers -->
<!-- theme -->
<div class="container">
<div class="section_title">
<h1 class="seo-hidden-text">Theme Un-Quintessential</h1>
<h3 class="title">
THEME
<span class="theme-name">
<span style="color:#c92216;">UN-</span>QUINTESSENTIAL
</span>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
The archetypal, clichéd world of today has become a garden of remembrance for many a fallen
martyr overwhelmed by the enduring idea of perfectionism. The strong alliance to the sense of
being perfect has been so deeply incorporated into civilization, that striking equilibrium is
now considered old-school. Quitting this dangerously inherent cult of being a ‘Quintessential
example’ of everything is a radical change that our present society is in desperate need of. The
truth is, we are all human, we err and we are all flawed, but we cannot, and should not deplore
over every flaw. Our line of thoughts, here at CUSAT are not aligned with considering that
striving for perfection is generic. We do not advocate mediocrity but believe strongly in
setting soaring goals for what we love and passionately following them. By doing this we can
always make sure to have something to work towards since there always is room for improvement.
At the same time, it is just as important to learn to be less harsh on ourselves in the face of
failure when we fall short of the unrealistic ideal, we have in mind. We have to relearn how to
be kind to ourselves, to grow- it is not always easy, often it takes some gruelingly hard work,
immense amounts of effort, and tremendous courage to get outside our comfort zone and grow—but
growth is a critical part of life. If we’re not growing, we’re dying. We believe in celebrating
how "imperfectly perfect" life is, doing away with the age-old passé definition of perfect and
inculcating this notion into our everyday lives. Because we are but human and as someone clearly
remarked-"Screw Perfect"!</p>
</p>
</div>
</div>
</div>
</section>
<!--about the event end -->
<!--speaker section-->
<section class="pb90">
<div class="container" id="speakers">
<div class="section_title mb50">
<h3 class="title">
our speakers
</h3>
</div>
</div>
<div class="overlay" id="overlay" style="display:none;"></div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox1">
<div class="speaker_img">
<img src="assets/img/speakers/mrr.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">Dr M R Rajagopal</h5>
<p class="position">Chairman of Pallium India</p>
</div>
<div class="box" id="box1">
<h1>Dr M R Rajagopal</h1>
<p>
An Indian palliative care physician and founder chairman of Pallium India, a palliative
care non-governmental organisation based in Kerala, he was honoured with the Padma Shri
in 2018 by the Indian Government for his work for the welfare of the common masses. His
tireless efforts to defend the right of patients to live and die with dignity was
recognised and honoured by Human Rights Watch with Alison Des Forges Award for
extraordinary activism.
</p>
</div>
</div>
</div>
</div>
<!---
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox2">
<div class="speaker_img">
<img src="assets/img/speakers/tiffany.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">Tiffany Brar</h5>
<p class="position">Founder of Jyothirgamaya Foundation</p>
</div>
<div class="box" id="box2">
<h1>Tiffany Brar</h1>
<p>
A blind Indian community service worker and founder of the Jyothirgamaya Foundation, a
non-profit organization. She has made it her duty to untiringly work for the blind
community to make a difference in their lives. As a social activist and trainer, she has
endeavoured to create awareness of all kinds of disability and has worked extremely hard
to remove the taboos around disabilities and for acceptance of everyone as one of our
own. She is a pillar of strength for not just the blind, but for every citizen of India.
</p>
</div>
</div>
</div>
</div>
--->
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox3">
<div class="speaker_img">
<img src="assets/img/speakers/trm.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">Teeka Ram Meena</h5>
<p class="position">Chief Electoral Officer, Kerala</p>
</div>
<div class="box" id="box3">
<h1>Teeka Ram Meena</h1>
<p>
Chief Electoral Officer for Kerala. He changed the face of voting in Kerala when massive
number of voters gathered to excercise their democratic rights. He has spearheaded a
number of programs to increase the voter turnout in Kerala including flagging off the
Kerala Express and releasing a song to attract voters. The proactive steps taken by him
has certainly made impact on the public and has greatly popularised the position.
Hailing from a tribal family in Rajasthan, his story of rising to become an inspiration
for the youth is what sets him apart.
</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox4">
<div class="speaker_img">
<img src="assets/img/speakers/sna.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">Sudev Nair</h5>
<p class="position">Kerala State Best Actor, 2015</p>
</div>
<div class="box" id="box4">
<h1>Sudev Nair</h1>
<p>
An Indian film actor who rose to prominence with the Malayalam movie My Life Partner,
that won him the Kerala State Film Award for Best Actor in 2015. His other notable
Malayalam films include Anarkali, Ezra, Abhrahaminte Santhathikal and Athiran. Apart
from acting, he’s also known for his web series Not Fit, which captures the hilarious
adventures of a struggling actor. This very talented actor, with his sheer hardwork has
managed to earn a spot for himself in both the Malayalam and the Hindi industries.
</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox5">
<div class="speaker_img">
<img src="assets/img/speakers/antophlip.jpeg" alt="speaker name">
<div class="info_box">
<h5 class="name">Anto Philip</h5>
<p class="position">CEO and Co-founder of Under 25</p>
</div>
<div class="box" id="box5">
<h1>Anto Philip</h1>
<p>
Co-founder of the U-25 Startup Summit, a community for all U-25 Entrepreneurs around the
world,U-25 Official and founder of The Big Band Theory, India's biggest customised wristbands house.
TBBT has sold 150000 bands within the country and is now working on having an international presence. The U-25 Startup Summit,
a community for doers, entrepreneurs, innovators and more under the age of 25 gives a platform to mind-blowing and un-quintessential
concepts. Anto started building the U-25 empire while he was still in college, after getting tired of his ideas not being taken
seriously because he was "too young". On the path to build the biggest youth culture in the country today, he is the youngest
Un-Quintessential speaker at TEDxCUSAT!
</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox6">
<div class="speaker_img">
<img src="assets/img/speakers/binoay1.jpg" alt="speaker name">
<div class="info_box">
<h5 class="name">Binoay B</h5>
<p class="position"> Vice President Corporate Affairs,Aditya Birla Group</p>
</div>
<div class="box" id="box6">
<h1>Binoay B</h1>
<p>
Vice President, Corporate Affairs at Aditya Birla Group and an accomplished Expat
Business Leader,
Binoay has held Senior Leadership Roles at Global conglomerates in APAC Region.
An affable Digital savvy Management Professional, he played a pivotal role in concept to
execution
of prestigious International/ local events -Axiata Cup, Idea Rocks India & Idea Star
Singer to name a few.
As Circle Marketing Head, he was the driving force in Idea Cellular achieving Market &
Brand Leadership
in Kerala. KMA recognized him with "Manager of the Year Award" in '08. His care for the
society keeps him
engaged with "Heart Care Foundation" Kerala.
</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box" id="speakerbox7">
<div class="speaker_img">
<img src="assets/img/speakers/nithin.jpeg" alt="speaker name">
<div class="info_box">
<h5 class="name">Nitin Vasanth</h5>
<p class="position"> Founder of NeuroTech Labs</p>
</div>
<div class="box" id="box7">
<h1>Nitin Vasanth</h1>
<p>
A passionate innovator and a start-up enthusiast, he made his alma mater, CUSAT,
proud when he was presented the Gandhian Young Technological Innovation Award at the
Rashtrapati
Bhavan for his project- Neuro Buds conceptualised on a brainwave mapping smart earphone,
which detects brain signals. He was one of the top 10 Indians chosen for the Rajeev
Circle Fellowship
and was also invited to the Facebook F8 Developer Conference. An extremely popular name
among techies
in Cochin, he is the founder of NeuroTech Labs and the Chapter lead of Facebook
Developer Circles, Cochin.
This talented alumnus of CUSAT has made it big for himself at a very young age with his
sheer brilliance.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<h4 class="text-center pb40">More to follow.</h4>
<!-- <section class="pb100">
<div class="container">
<div class="section_title mb50">
<h3 class="title">
our speakers
</h3>
</div>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s1.png" alt="speaker name">
<div class="info_box">
<h5 class="name">Patricia Stone</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s2.png" alt="speaker name">
<div class="info_box">
<h5 class="name">James Oliver</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s3.png" alt="speaker name">
<div class="info_box">
<h5 class="name">Carla Banks</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s4.png" alt="speaker name">
<div class="info_box">
<h5 class="name">William Smith</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s5.png" alt="speaker name">
<div class="info_box">
<h5 class="name">Jessica Black</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s6.png" alt="speaker name">
<div class="info_box">
<h5 class="name">Patricia Stone</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s7.png" alt="speaker name">
<div class="info_box">
<h5 class="name">Duncan Stan</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<img src="assets/img/speakers/s8.png" alt="speaker name">
<div class="info_box">
<h5 class="name">Patricia Stone</h5>
<p class="position">CEO Company</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--speaker section end -->
<!--Price section-->
<!-- <section class="pricing py-5">
<div class="container mb-5">
<div class="row">
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Early Bird</h5>
<h6 class="card-price text-center">$30<span class="period"></span></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span> For the fast ones</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>5GB Storage</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Unlimited Public Projects
</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Community Access</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>Unlimited
Private Projects</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>Dedicated
Phone Support</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>Free
Subdomain</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>Monthly
Status Reports</li>
</ul>
<a href="#" class="btn btn-block btn-primary text-uppercase">Purchase</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">CUSAT only</h5>
<h6 class="card-price text-center">$20</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span><strong>5 Users</strong></li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>50GB Storage</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Unlimited Public Projects
</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Community Access</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Unlimited Private Projects
</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Dedicated Phone Support</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Free Subdomain</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>Monthly
Status Reports</li>
</ul>
<a href="#" class="btn btn-block btn-primary text-uppercase">Purchase</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Pro</h5>
<h6 class="card-price text-center">$49</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span><strong>Unlimited
Users</strong></li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>150GB Storage</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Unlimited Public Projects
</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Community Access</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Unlimited Private Projects
</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Dedicated Phone Support</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span><strong>Unlimited</strong>
Free Subdomains</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>Monthly Status Reports</li>
</ul>
<a href="#" class="btn btn-block btn-primary text-uppercase">Purchase</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--price section end -->
<!--Map section-->
<!-- <a target="_blank"
href="https://www.google.co.in/maps/dir/10.0463232,76.3321227/Seminar+Complex,+University+Road,+South+Kalamassery,+Kalamassery,+Ernakulam,+Kerala/@10.044666,76.3266431,17z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x3b080d223eeb1de1:0xce06a9f0d256857a!2m2!1d76.3247875!2d10.0437276"
class="directions">Get Directions</a> -->
<div class="mapouter" id="map">
<div class="gmap_canvas"><iframe width="100%" height="500" id="gmap_canvas"
src="https://maps.google.com/maps?q=Seminar%20complex%20CUSAT&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a
href="https://www.bitgeeks.net/embed-google-map/">bitgeeks</a></div>
<style>
.mapouter {
position: relative;
text-align: right;
height: 500px;
width: 100vw;
}
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 500px;
width: 100vw;
}
</style>
</div>
<!--map section-->
<!--footer start -->
<footer>
<div class="container" id="contact">
<div class="row justify-content-center">
<div class="col-md-4 col-12">
<div class="footer_box">
<div class="footer_header">
<h4 class="footer_title">
social media
</h4>
</div>
<div class="footer_box_body">
<ul class="footer_social">
<li>
<a href="https://www.facebook.com/TEDx-CUSAT-260166758001386/"><i
class="ion-social-facebook"></i></a>
</li>
<li>
<a href="https://www.instagram.com/tedxcusat/"><i
class="ion-social-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
<!--<div id="recent"></div>-->
<div class="col-12 col-md-4">
<div class="footer_box">
<div class="footer_header">
<h4 class="footer_title">
instagram
</h4>
</div>
<div class="footer_box_body">
<ul class="instagram_list">
<li>
<a href="https://www.instagram.com/tedxcusat/">
<img src="assets/img/trm1.jpeg" height="100px" width="100px" alt="instagram">
</a>
</li>
<li>
<a href="https://www.instagram.com/tedxcusat/">
<img src="assets/img/trm2.jpeg" height="100px" width="100px" alt="instagram">
</a>
</li>
<li>
<a href="https://www.instagram.com/tedxcusat/">
<img src="assets/img/trm3.jpeg" height="100px" width="100px" alt="instagram">
</a>
</li>
<li>
<a href="https://www.instagram.com/tedxcusat/">
<img src="assets/img/sd1.jpeg" height="100px" width="100px" alt="instagram">
</a>
</li>
<li>
<a href="https://www.instagram.com/tedxcusat/">
<img src="assets/img/sd2.jpeg" height="100px" width="100px" alt="instagram">
</a>
</li>
<li>
<a href="https://www.instagram.com/tedxcusat/">
<img src="assets/img/sd3.jpeg" height="100px" width="100px" alt="instagram">
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="footer_box">
<div class="footer_header">
<h4 class="footer_title">
Contact us
</h4>
</div>
<div class="footer_box_body">
<ul class="footer_social">
<li style=" display: flex; ">
<a href="mailto: info@tedxcusat.in"><i class="ion-email"></i></a> <span
style="color: white;padding: 6px;">info@tedxcusat.in</span>
</li>
</ul>
</div>
</div>
</div>
<!-- <div class="col-12 col-md-4">
<div class="footer_box">
<div class="footer_header">
<h4 class="footer_title">
Contact us
</h4>
<h6>
<a href="https://www.instagram.com/tedxcusat/"><i
class="ion-social-instagram"></i></a>
<a href="mailto: admin@tedxcusat.in">admin@tedxcusat.in</a>
<br><br>
<a href="mailto: curator@tedxcusat.in">curator@tedxcusat.in</a>
<br><br>
<a href="mailto: partnerships@tedxcusat.in">partnerships@tedxcusat.in</a>
</h6>
</div> -->
<!-- <div class="footer_box_body">
<div class="newsletter_form">
<input type="email" class="form-control" placeholder="message here">
<button class="btn btn-rounded btn-block btn-primary">send</button>
</div>
</div> -->
</div>
</div>
</div>
</div>
</footer>
<div class="copyright_footer">
<div class="container">
<div class="row justify-content-center" style="text-align: center;">
<div class="col-md-6 col-12">
This independent TEDx event is operated under license from TED.
<br>
TEDxCUSAT © 2019
</div>
</div>
</div>
</div>
<!--footer end -->
<!-- jquery -->
<script src="assets/js/jquery.min.js"></script>
<!-- bootstrap -->
<script src="assets/js/popper.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/waypoints.min.js"></script>
<!--slick carousel -->
<script src="assets/js/owl.carousel.min.js"></script>
<!--parallax -->
<script src="assets/js/parallax.min.js"></script>
<!--Counter up -->
<script src="assets/js/jquery.counterup.min.js"></script>
<!--Counter down -->
<script src="assets/js/jquery.countdown.min.js"></script>
<!-- WOW JS -->
<script src="assets/js/wow.min.js"></script>
<!-- Custom js -->
<script src="assets/js/main.js"></script>
<!-- scroll spy -->
<!-- -->
<!--speakers-->
</body>
</html>