forked from ju-makerspace/Carnival2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1649 lines (1372 loc) · 75.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Maker's Carnival - Infinite Oddesy, the annual fest by JU Makerspace is happening from 29th November to 1st December 2023" />
<meta name="keywords" content="Maker Carnival, Techfest, Carnival, Makerspace, Jecrc university, Fest, Tech, Artificial intelligence, Hardware, Event, JU Makerspace" />
<meta name="author" content="" />
<title>Maker's Carnival</title>
<!--favicon-img-->
<link rel="icon" type="image/png" href="images/favicon.png">
<!--favicon-img-->
<!--main css file should not be removed -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link rel="stylesheet" href="gallery_style.css">
<link rel='stylesheet' href='https://raw.githack.com/SochavaAG/example-mycode/master/pens/1_plugins/slick/slick.css'>
<link rel='stylesheet' href='https://raw.githack.com/SochavaAG/example-mycode/master/pens/1_plugins/fancybox-3.1.25/jquery.fancybox.min.css'><link rel="stylesheet" href="./style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js"></script>
</head>
<body >
<!--contains all the div-->
<div id="all" >
<!--mouse follower-->
<div class="cursor"></div>
<!--mouse follower-->
<!--======================= loader =========================== -->
<!-- <div id="loader">
<img>
<span class="color">Maker's </span>Carnival
</div> -->
<!--loader-end -->
<!--link-screen-->
<!-- <div id="breaker">
</div>
<div id="breaker-two">
</div> -->
<!--link-screen-->
<!--Main-Section-->
<!--Navigator-fullscreen-->
<div id="navigation-content">
<div class="logo">
<img src="images/JU-Logo.png" alt="logo">
</div>
<div class="navigation-close">
<span class="close-first"></span>
<span class="close-second"></span>
</div>
<div class="navigation-links">
<a href="index.html" data-text="HOME" id="home-link" >HOME</a>
<a href="#about" data-text="ABOUT" id="about-link" >ABOUT</a>
<a href="#eventsscroll" data-text="EVENTS" >EVENTS</a>
<!-- <a href="#" data-text="SPEAKERS" id="contact-link" >SPEAKERS</a>
<a href="#" data-text="SPONSORS" id="home-link" >SPONSORS</a> -->
<a href="https://linktr.ee/makerscarnival" data-text="REGISTER" id="about-link" > REGISTER </a>
<a href="#pastevent" data-text="PAST EVENTS" >PAST EVENTS </a>
<a href="#footer" data-text="CONTACT" id="contact-link" >CONTACT</a>
</div>
</div>
<!--Navigator-Fullscreen END-->
<!--Home Page-->
<!--Menubar-->
<!-- width = "220px" height = "10px" style = "width: 140px; height:75px; padding-top: 15px;" -->
<div id="navigation-bar" style="position:absolute;">
<div class="nav_logo">
<a href="index.html"> <img class = "nav_logo" src="images/JU-Logo.png" alt="logo"> </a>
</div>
<div id="navigation-bar">
<div class="menubar" >
<span class="first-span"></span>
<span class="second-span"></span>
<span class="third-span"></span>
</div>
</div>
</div>
<!--Menubar End-->
<!--Header-->
<!--======================= home =========================== -->
<div id="homepage" style="margin-right: 0px;">
<div id="particles"></div>
<!--Social Media Links-->
<div class="social-media-links">
<a href="https://www.instagram.com/jumakerspace" target="_blank"><img src="images/instagram(grey).png" style="width: 30px;" class="social-media" alt="instagram-logo"></a>
<a href="https://www.linkedin.com/company/ju-makerspace/" target="_blank"><img src="images/linkedin logo.png" style="width: 30px;" class="social-media" alt="linkedin-logo"></a>
<a href="Mailto:[email protected]" title = "[email protected]"><img src="images/mail(grey).png" alt="email-pic" class="contactpic" style="width: 30px; "></a><!--Your email Id write in place of "#"-->
</div>
<!--Social Media Links end-->
<div class="header-content">
<div class="header-content-box">
<img src="images/mks-logo.png" alt="mks logo" style="width: 300px;">
<div class="offcenter">
<div class="firstline"><span class="color" id="makers-first-line" >MAKER'S </span>CARNIVAL</div>
<div class="secondline">
Infinite Odyssey
<span class="txt-rotate color" data-period="1200"data-rotate='[ "29th Nov. - 1st Dec.","29th Nov. - 1st Dec.","29th Nov. - 1st Dec.","29th Nov. - 1st Dec."]'></span>
<span class="slash">|</span>
</div>
</div>
<a href="https://forms.gle/32uWsqBi6UavbMNo9" target="_blank" style="text-decoration: none; color : white;"> <button class="day-button" id="button1">General Entry Pass</button></a>
<a href="https://linktr.ee/makerscarnival" target="_blank" style="text-decoration: none; color : white; "> <button class="day-button" id="button1">Register</button></a>
<a href="EVENT RULEBOOK.pdf" target="_blank" style="text-decoration: none; color : white; "> <button class="day-button" id="button1">Rulebook</button></a>
<!-- <div class="contact">
<a href="Tel:+91 9358524849"><img src="images/call.png" alt="phone-pic" class="contactpic" style="width: 30px; padding: 0px;"></a>Your telephone number Id write in place of "#"
</div> -->
</div> </div>
<br clear="all">
<!--======================= ABOUT =========================== -->
<!--======================= jecrc about, mks about =========================== -->
<div id="about" class="about-bg-img about-bg-img-change bg-img1" >
<!-- <div style="background-color: hsla(100, 27%, 80%, 0.1)"> -->
<!--about content-->
<div id="about-content">
<div class="about-header reveal-up">
<b> About <span class="color">Us</span></b>
<!-- <span class ="header-caption">Get to Know <span class="color"> us.</span></span> -->
</div>
<div class="about-main">
<div class="about-first-paragraph wow">
<!-- about description -->
<span class="about-first-line">
<span class="reveal-f">About</span>
<span class="color">JECRC</span>
</span>
<br>
<span class="about-second-line reveal-l" style="font-size: 22px;">JECRC University is known for its strong research culture and close industry linkages . The university is driven by the spirit of innovation-led research, which encompasses subject-specific exploration as well as the contexts of the business environment in which students will operate and perform .</span>
</div>
<!-- about picture -->
<div class="about-img reveal-r">
<img src="images/aboutjecrc.jpg" alt="Your Image" style="width: 100%;">
</div>
</div>
<div class="about-main">
<!-- about picture -->
<div class="about-img-error reveal-l">
<img src="images/makerspace.jpg" alt="Your Image">
</div>
<div class="about-first-paragraph wow">
<!-- about description -->
<span class="about-first-line">
<span class="reveal-f">About</span>
<span class="color">Makerspace</span>
</span>
<br>
<span class="about-second-line reveal-r" style="font-size: 22px;">JECRC University's makerspace, known as JU Makerspace, is a vibrant hub for creativity and innovation. Located at JECRC University in Jaipur, it serves as a dynamic platform for makers from all over India to come together and display their talents. One of the standout events hosted by JU Makerspace is the Maker's Carnival, which revolves around the captivating themes of Artificial Intelligence and Space.</span>
</div><div class="about-img2 reveal-r">
<img src="images/makerspace.jpg" alt="Your Image">
</div>
</div>
<style>
.about-img2 {
display: none;
border-radius: 20px;
}
/* Media query for screens with a maximum width of 768px (typical for phones) */
@media (max-width: 768px) {
.about-img-error {
display: none;
}
.about-img2 {
display: block;
width: 334px;
}
.about-img2 img{
padding: 30px;
border-radius: 40px;
}}
</style>
<div class="about-main">
<div class="about-first-paragraph wow">
<!-- about description -->
<span class="about-first-line">
<span class="reveal-f">About</span>
<span class="color">Team</span>
</span>
<br>
<span class="about-second-line reveal-l" style="font-size: 22px;">
The Maker's Carnival at JECRC University's makerspace, JU Makerspace, wouldn't be possible without the dedicated team of makers who organize and bring it to life. Comprising enthusiastic individuals driven by a passion for innovation, this team orchestrates a variety of engaging events and games, including cosmic trail, Robo soccer, and more.</span>
</div>
<!-- about picture -->
<div class="about-img reveal-r">
<img src="images/makerspace members.JPG" alt="Your Image" style="width: 100%;">
</div>
</div>
</div>
</div>
<!--Header End-->
<!--======================= event =========================== -->
<div id="events" class="about-bg-img bg-img3" >
<div> <!-- style="background-color: hsla(126, 17%, 100%, 0.10)*/"> -->
<!--about content-->
<div id="about-content">
<div class="about-header" id="eventsscroll">
Our <span class="color">Events</span>
<br>
<!-- <span class ="header-caption">Get to Know <span class="color"> me.</span></span> -->
<button class="day-button" id="button1" onclick="showEvents1()">Day 1</button>
<button class="day-button" id="button2" onclick="showEvents2()">Day 2</button>
<button class="day-button" id="button3" onclick="showEvents3()">Fun Events</button>
<style>
.day-button {
padding: 10px 20px;
background-color: #c70039;
color: white;
border: none;
cursor: pointer;margin: 0px;}
.day-button:hover {
background-color: #7b0023;
}
</style>
<script>
cur_day = 'day1'
function showEvents1(){
if(cur_day == 'day1'){
null;
} else{
$('#event_' + cur_day).fadeOut(250, function(){
$('#event_day1').fadeIn(250);
cur_day = 'day1';
});
}
}
function showEvents2(){
if(cur_day == 'day2'){
null;
} else{
$('#event_' + cur_day).fadeOut(250, function(){
$('#event_day2').fadeIn(250);
cur_day = 'day2';
});
}
}
function showEvents3(){
if(cur_day == 'day3'){
null;
} else{
$('#event_' + cur_day).fadeOut(250, function(){
$('#event_day3').fadeIn(250);
cur_day = 'day3';
});
}
}
//function showEvents(day) {
// const eventContainers = document.querySelectorAll('.event');
// eventContainers.forEach(container => {
// container.style.display = 'none';
// });
// const eventsToShow = document.querySelectorAll(`.${day}`);
// eventsToShow.forEach(event => {
// event.style.display = 'block';
// });
//}
</script>
<!-- </div>
<div class=""> -->
<!-- <br clear> -->
<div class="program_details_area detials_bg_1 overlay2">
<div class="container" >
<div class="row">
<div class="col-lg-12">
<div class="section_title text-center mb-80 wow fadeInRight" data-wow-duration="1s" data-wow-delay=".3s">
<!-- <h3>Program Details</h3> -->
</div>
</div>
</div>
<div class="row justify-content-center event day1" id="event_day1">
<div class="col-lg-8">
<div class="program_detail_wrap">
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r slide-ter-right">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Inauguration</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">9 AM - 10 AM</h4>
</div>
<div class="thumb wow fadeInUp reveal-r slide-ter-right" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/light.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l slide-ter-left">
<span class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".3s">Maker's Exhibition</span>
<h4 class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".4s">10 AM Onwards</h4>
</div>
<div class="thumb wow fadeInRight reveal-l slide-ter-left" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/gallery2.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Robo Sumo</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">12 PM - 1 PM</h4>
</div>
<div class="thumb wow fadeInUp reveal-r" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/robo_sumo.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Cosmic Trail</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">2 PM - 4 PM</h4>
</div>
<div class="thumb wow fadeInUp reveal-l" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/cosmic trail.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Robo Soccer</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">4 PM Onwards</h4>
</div>
<div class="thumb wow fadeInUp reveal-r" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/robo_soccer.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
</div>
</div>
</div>
<style>
.reveal-f{
position: relative;
opacity: 0;
transition: 1s all ease;
}
.reveal-f.active{
opacity: 1;
}
.reveal-r{
position: relative;
transform: translateX(150px);
opacity: 0;
transition: 1s all ease;
}
.reveal-r.active{
transform: translateX(0);
opacity: 1;
}
.reveal-l{
position: relative;
transform: translateX(-150px);
opacity: 0;
transition: 1s all ease;
}
.reveal-l.active{
transform: translateX(0);
opacity: 1;
}
.reveal-up{
position: relative;
transform: translateY(50px);
opacity: 0;
transition: 1s all ease;
}
.reveal-up.active{
transform: translateY(0);
opacity: 1;
}
.slide-ter-right {
position: relative;
animation: slide-right 2s ease;
}
@keyframes slide-right {
from {
right: -600px;
}
to {
right: 0;
}
}
.slide-ter-left {
position: relative;
animation: slide-left 2s ease;
}
@keyframes slide-left {
from {
left: -600px;
}
to {
left: 0;
}
}
</style>
<script>
function reveal_r() {
var reveals = document.querySelectorAll(".reveal-r");
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = 150;
if (elementTop < windowHeight - elementVisible) {
reveals[i].classList.add("active");
} else {
reveals[i].classList.remove("active");
}
}
}
function reveal_l() {
var reveals = document.querySelectorAll(".reveal-l");
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = 150;
if (elementTop < windowHeight - elementVisible) {
reveals[i].classList.add("active");
} else {
reveals[i].classList.remove("active");
}
}
}
function reveal_up() {
var reveals = document.querySelectorAll(".reveal-up");
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = 150;
if (elementTop < windowHeight - elementVisible) {
reveals[i].classList.add("active");
} else {
reveals[i].classList.remove("active");
}
}
}
function revealf() {
var reveals = document.querySelectorAll(".reveal-f");
for (var i = 0; i < reveals.length; i++) {
var windowHeight = window.innerHeight;
var elementTop = reveals[i].getBoundingClientRect().top;
var elementVisible = 150;
if (elementTop < windowHeight - elementVisible) {
reveals[i].classList.add("active");
} else {
reveals[i].classList.remove("active");
}
}
}
window.addEventListener("scroll", reveal_r);
window.addEventListener("scroll", reveal_l);
window.addEventListener("scroll", reveal_up);
window.addEventListener("scroll", revealf);
</script>
<!-- DAY2 -->
<div class="row justify-content-center event day2" id="event_day2" style="display: none;">
<div class="col-lg-8">
<div class="program_detail_wrap">
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r slide-ter-right">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Maker's Exhibition</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">10 AM Onwards</h4>
</div>
<div class="thumb wow fadeInUp reveal-r slide-ter-right" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/gallery2.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l slide-ter-left">
<span class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".3s">Robo Sumo </span>
<h4 class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".4s">12 PM - 1 PM</h4>
</div>
<div class="thumb wow fadeInRight reveal-l slide-ter-left" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/robo_sumo.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Bomb Defusal</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">2 PM - 4 PM</h4>
</div>
<div class="thumb wow fadeInUp reveal-r" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/bomb defusion.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Capture the Flag</span>
<h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">4 PM - 6 PM</h4>
</div>
<div class="thumb wow fadeInUp reveal-l" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/capture-flag.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
</div>
</div>
</div>
<!-- fun events -->
<div class="row justify-content-center event day3" id="event_day3" style="display: none;">
<div class="col-lg-8">
<div class="program_detail_wrap">
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r slide-ter-right">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Make it Break it</span>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">10 AM Onwards</h4> -->
</div>
<div class="thumb wow fadeInUp reveal-r slide-ter-right" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/make it.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l slide-ter-left">
<span class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".3s">AR-VR Experience </span>
<!-- <h4 class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".4s">12 PM - 1 PM</h4> -->
</div>
<div class="thumb wow fadeInRight reveal-l slide-ter-left" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/ar.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class="wow fadeInRight" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">AI Photobooth</span>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">2 PM - 4 PM</h4> -->
</div>
<div class="thumb wow fadeInUp reveal-r" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/ai-photo.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Smart Mirror Booth</span>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">4 PM - 6 PM</h4> -->
</div>
<div class="thumb wow fadeInUp reveal-l" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/smart-mirror.jpg " alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">3d Printing Stall</span>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">6 PM Onwards</h4> -->
</div>
<div class="thumb wow fadeInUp reveal-r" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/3d.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-l">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Drone Exhibition</span>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">6 PM Onwards</h4> -->
</div>
<div class="thumb wow fadeInUp reveal-l " data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/gallery9.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
<div class="single_propram">
<div class="inner_wrap">
<div class="circle_img"></div>
<div class="porgram_top reveal-r">
<span class=" wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">Jamming Session</span>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">6 PM Onwards</h4> -->
</div>
<div class="thumb wow fadeInUp reveal-r" data-wow-duration="1s" data-wow-delay=".5s">
<img src="images/jamming.jpg" alt="" srcset="" style="width: 80%; box-shadow: 5px 5px 10px black ;">
</div>
<!-- <h4 class=" wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">Mr. Zosoldos</h4> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- REGISTER -->
<!-- <div class="about-bg-img" style="padding-top: 30px;">
<div class="about-header reveal-up">
<b>Event <span class="color">Registration</span></b>
</div>
</div>
<div class="reg about-bg-img">
<div class="slide-container swiper">
<div class="slide-content">
<div class="card-wrapper swiper-wrapper" style="height: 390px;">
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/project(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b>Maker's Exhibition</b></h2>
<p class="description">Explore cutting-edge projects that redefine the future. <br>
Day 1 & Day 2 <br>
Timing - 10am onwards <br>
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSfDYTaB-uBAjRu_hVyMGUWTUoHZZCq_HFbSt3o8MdZNaCy4gQ/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/robo_soccer(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> RoboSoccer </b></h2>
<p class="description">Where robots take the field in electrifying soccer matches. <br>
Day 1 <br>
Timing - 4:00-7:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/u/3/d/e/1FAIpQLScQP9leM_b93pKbrfddkxaD3AWYS3OyPqENs0Q2bE2-0FcA-A/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/cosmic trail(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> Cosmic Trail </b></h2>
<p class="description">Dive into the cosmic realm and solve mysteries with your movie expertise. <br>
Day 1 <br>
Timing - 02:00-4:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSd67ICjaaywy55TwJTF9sEW-M_icgG5g5vXv1rBRZWD33Guzg/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/robo_sumo(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> RoboSumo </b></h2>
<p class="description"> Witness robots battle it out for supremacy. <br>
Day 1 & Day 2 <br>
Timing - 12:00-1:00 pm <br> <br> </p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSeFdUomfkImWwkn7KK0DAD7q71uQeSU4yclUv1Ib7Y-qsXugQ/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/capture-flag(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> Capture the Flag </b></h2>
<p class="description">Unleash your inner warrior and seize victory in the ultimate... <br>
Day 2 <br>
Timing - 04:00-06:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSd4SFaTrjiIrV40fTgn3dFICzxgKdCpkw00weFhU_Ndb-ZQqg/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/bomb defusion.jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> Bomb Defusal </b></h2>
<p class="description">Put your engineering skills to the test as you defuse the bomb... <br>
Day 2 <br>
Timing - 2:00-4:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLScFleGN_t7rutGzhwv5cT_TfXPppQl_AWDat4qsSPOeSgSLSA/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
</div>
</div>
<div class="swiper-button-next swiper-navBtn"></div>
<div class="swiper-button-prev swiper-navBtn"></div>
<div class="swiper-pagination"></div>
</div>
</div> -->
<!--======================= speakers =========================== -->
<div id="about" class="about-bg-img about-bg-img-change bg-img1">
<!--about content-->
<div style="padding-top: 30px;">
<div class="about-header reveal-up">
<b>Event <span class="color">Registration</span></b>
<!-- <span class ="header-caption">Get to Know <span class="color"> us.</span></span> -->
</div>
</div>
<div class="reg">
<div class="slide-container swiper">
<div class="slide-content">
<div class="card-wrapper swiper-wrapper" style="height: 390px;">
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/project(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b>Maker's Exhibition</b></h2>
<p class="description">Explore cutting-edge projects that redefine the future. <br>
Day 1 & Day 2 <br>
Timing - 10am onwards <br>
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSfDYTaB-uBAjRu_hVyMGUWTUoHZZCq_HFbSt3o8MdZNaCy4gQ/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/robo_soccer(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> RoboSoccer </b></h2>
<p class="description">Where robots take the field in electrifying soccer matches. <br>
Day 1 <br>
Timing - 4:00-7:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/u/3/d/e/1FAIpQLScQP9leM_b93pKbrfddkxaD3AWYS3OyPqENs0Q2bE2-0FcA-A/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/cosmic trail(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> Cosmic Trail </b></h2>
<p class="description">Dive into the cosmic realm and solve mysteries with your movie expertise. <br>
Day 1 <br>
Timing - 02:00-4:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSd67ICjaaywy55TwJTF9sEW-M_icgG5g5vXv1rBRZWD33Guzg/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/robo_sumo(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> RoboSumo </b></h2>
<p class="description"> Witness robots battle it out for supremacy. <br>
Day 1 & Day 2 <br>
Timing - 12:00-1:00 pm <br> <br> </p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSeFdUomfkImWwkn7KK0DAD7q71uQeSU4yclUv1Ib7Y-qsXugQ/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/capture-flag(square).jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> Capture the Flag </b></h2>
<p class="description">Unleash your inner warrior and seize victory in the ultimate... <br>
Day 2 <br>
Timing - 04:00-06:00 pm
</p>
</div>
<div style="display: flex; justify-content: center; align-items: end;">
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSd4SFaTrjiIrV40fTgn3dFICzxgKdCpkw00weFhU_Ndb-ZQqg/viewform" target="_blank"><button class="button">Register</button></a>
</div>
</div>
<div class="card swiper-slide">
<div class="image-content">
<span class="overlay"></span>
<div class="card-image">
<img src="images/bomb defusion.jpg" alt="" class="card-img">
</div>
</div>
<div class="card-content">
<h2 class="name"> <b> Bomb Defusal </b></h2>
<p class="description">Put your engineering skills to the test as you defuse the bomb... <br>
Day 2 <br>