-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_fest_events.html
1440 lines (1220 loc) · 98.3 KB
/
test_fest_events.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html{scroll-behavior:smooth;}
@font-face{
font-family:vampire;
src:url("Vampire Wars Italic.ttf");
}
@font-face{
font-family:steamy;
src:url("Steamy.otf");
}
@font-face{
font-family:rc;
src:url("R&C-Demo.otf");
}
@font-face{
font-family:charge;
src:url("6809 Chargen.otf");
}
@font-face{
font-family:font1;
src:url("Cyrulik-SharpBold.ttf");
}
@font-face{
font-family:font2;
src:url("Aguante.otf");
}
@font-face{
font-family:kannada;
src:url("Nudi 17 e Regular.ttf");
}
@font-face{
font-family:glitch;
src:url("Demosdcyberglitch-yw6GM.ttf");
}
@font-face{
font-family: font_no;
src: url("WolfalconRegular-RpjW3.ttf");
}
@font-face{
font-family: main_font;
src: url("ARABOLIC.TTF");
}
body{background:black; z-index:-112;}
@media (max-width:480px){
a{text-decoration:none; color:white;}
.options{position:absolute; display:; height:0vw; width:100%; top:23vw; left:0vw; background-color:black; z-index:1000000; overflow:hidden;}
.options_events{position:absolute; font-size:10vw; font-family:font1; left:38vw; top:10vw; letter-spacing:.5vw; opacity:0;}
.options_abt{position:absolute; font-size:10vw; font-family:font1; left:35.8vw; top:23vw; letter-spacing:.5vw; opacity:0;}
.options_gall{position:absolute; font-size:10vw; font-family:font1; left:34vw; top:36vw; letter-spacing:.5vw; opacity:0;}
.options_team{position:absolute; font-size:10vw; font-family:font1; left:37.5vw; top:49vw; letter-spacing:.5vw; opacity:0;}
.options_reg{position:absolute; font-size:10vw; font-family:font1; left:32.5vw; top:62vw; letter-spacing:.5vw; opacity:0;}
.top_div{position:absolute; height:22vw; width:100%; top:0; left:0; background-color:none; background-image:url("stars.png"); background-repeat:no-repeat; background-size:400% 400%; overflow:hidden;}
.top_div_animation{position:absolute; width:100%; height:22vw; top:0vw; left:0vw; background-color: white; animation:1s reveal_top_menu forwards; animation-delay:0.1s;}
.top_div_tittle{position:absolute; height:22vw; width:75%; top:0vw; left:0vw; background-color:none; cursor:default;}
.top_div_tittle_p{opacity:0; font-family:main_font; color:white; font-size:20vw; margin-left:2vw; margin-top:-3.5vw; line-height:; text-shadow:0vw 0vw 2vw white; animation:2s opacity_tittle forwards; animation-delay:0.3s;}
.top_div_vertical_line{position:absolute; height:100%; width:1vw; top:0; left:74vw; background-color:white;}
.top_div_horizontal_line{position:absolute; height:1vw; width:100%; top:22vw; left:0vw; background-color:white;}
.top_div_menu{position:absolute; height:80%; width:20vw; top:2.5vw; right:0.5vw; z-index:10000;}
.top_div_menu_button{position:absolute; height:100%; width:100%; background-color:transparent; border:none;}
.top_div_menu:hover .options{display:block;}
.menu_line_1{position:absolute; height:0.7vw; width:5.5vw; top:6vw; left:1.5vw; background-color:white; animation:0.7s menu_line_reveal forwards; animation-delay:0.1s;}
.menu_line_2{position:absolute; height:0.7vw; width:9.5vw; top:8.6vw; left:1.5vw; background-color:white; animation:0.7s menu_line_reveal forwards; animation-delay:0.17s;}
.menu_line_3{position:absolute; height:0.7vw; width:14vw; top:10.85vw; left:1.5vw; background-color:white; animation:0.7s menu_line_reveal forwards; animation-delay:0.22s;}
.main_1_tech_events{position:absolute; height:140vw; width:100%; left:0vw; top:23vw; background-image:url("stars.png"); background-repeat:no-repeat; background-size:100% 100%; border-bottom:1vw solid white;}
.main_1_tech_events_top_animation_div{position:absolute; height:10vw; width:100%; top:0vw; left:0vw; border-bottom:1vw solid white; background:transparent; overflow:hidden;}
.main_content_1_top_animaiton_div_p_1{position: absolute; color:white; top:-10vw; left:default; font-size:10vw; font-family: font1; animation:5s about_move_p_1 infinite linear;}
.main_content_1_top_animaiton_div_p_2{position: absolute; color:white; top:-10vw; left:-25vw; font-size:10vw; font-family: font1; animation:5s about_move_p_1 infinite linear; animation-delay:1.2s;}
.main_1_tech_event_1_photo_1{position:absolute; height:30vw; width:30vw; top:16vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation:1s rotate_aman forwards; animation-delay:1s; opacity:0;}
.main_1_tech_event_1_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:30.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation-name:rotate_inside, rotate_aman; animation-duration:1.5s, 1s; animation-delay:0s, 2s; animation-iteration-count:infinite, 1; animation-timing-function:linear; animation-fill-mode:forwards, forwards; opacity:0;}
.main_1_tech_event_1_name_div{position:absolute; height:23vw; width:98vw; left:-100vw; top:21vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,69,237,1) 57%, rgba(253,29,99,1) 84%); z-index:1; animation:1.5s reveal_aman forwards; animation-delay:0.2s;}
.main_1_event_1_tech_name_div_p{position:absolute; font-size:12vw; color:white; font-family:steamy; top:-8vw; left:30vw; z-index:-1;}
.main_1_tech_event_1_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none;}
.main_1_tech_event_2_photo_1{position:absolute; height:30vw; width:30vw; top:45vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation:1s rotate_aman forwards; animation-delay:1s; opacity:0;}
.main_1_tech_event_2_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:59.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation-name:rotate_inside, rotate_aman; animation-duration:1.5s, 1s; animation-delay:0s, 2s; animation-iteration-count:infinite, 1; animation-timing-function:linear; animation-fill-mode:forwards, forwards; opacity:0;}
.main_1_tech_event_2_name_div{position:absolute; height:23vw; width:98vw; left:-100vw; top:50vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,147,69,1) 57%, rgba(253,29,29,1) 84%); z-index:1; animation:1.5s reveal_aman forwards; animation-delay:0.3s;}
.main_1_tech_event_2_name_div_p{position:absolute; font-size:11vw; color:white; font-family:steamy; top:-12vw; left:30vw;}
.main_1_tech_event_2_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:10;}
.main_1_tech_event_3_photo_1{position:absolute; height:30vw; width:30vw; top:74vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation:1s rotate_aman forwards; animation-delay:1s; opacity:0;}
.main_1_tech_event_3_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:88.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation-name:rotate_inside, rotate_aman; animation-duration:1.5s, 1s; animation-delay:0s, 2s; animation-iteration-count:infinite, 1; animation-timing-function:linear; animation-fill-mode:forwards, forwards; opacity:0;}
.main_1_tech_event_3_name_div{position:absolute; height:23vw; width:98vw; left:-100vw; top:79vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(119,69,252,1) 57%, rgba(147,29,253,1) 84%); z-index:1; animation:1.5s reveal_aman forwards; animation-delay:0.4s;}
.main_1_tech_event_3_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-6vw; left:28vw; font-weight:;}
.main_1_tech_event_3_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:10;}
.main_1_tech_event_4_photo_1{position:absolute; height:30vw; width:30vw; top:103vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation:1s rotate_aman forwards; animation-delay:1s; opacity:0;}
.main_1_tech_event_4_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:117.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation-name:rotate_inside, rotate_aman; animation-duration:1.5s, 1s; animation-delay:0s, 2s; animation-iteration-count:infinite, 1; animation-timing-function:linear; animation-fill-mode:forwards, forwards; opacity:0;}
.main_1_tech_event_4_name_div{position:absolute; height:23vw; width:98vw; left:-100vw; top:108vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,212,69,1) 57%, rgba(186,253,29,1) 84%); z-index:1; animation:1.5s reveal_aman forwards; animation-delay:0.5s;}
.main_1_tech_event_4_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-12vw; left:32vw; font-weight:;}
.main_1_tech_event_4_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_events{position:absolute; height:230vw; width:100%; left:0vw; top:164vw; background-image:url("stars.png"); background-repeat:no-repeat; background-size:100% 100%; border-bottom:1vw solid white;}
.main_2_fun_events_top_animation_div{position:absolute; height:10vw; width:100%; top:0vw; left:0vw; border-bottom:1vw solid white; background:transparent; overflow:hidden;}
.main_content_2_top_animaiton_div_p_1{position: absolute; color:white; top:-10vw; left:default; font-size:10vw; font-family: font1; animation:5s about_move_p_1 infinite linear;}
.main_content_2_top_animaiton_div_p_2{position: absolute; color:white; top:-10vw; left:-25vw; font-size:10vw; font-family: font1; animation:5s about_move_p_1 infinite linear; animation-delay:0.55s;}
.main_2_fun_event_1_photo_1{position:absolute; height:30vw; width:30vw; top:16vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation:1s rotate_aman forwards; animation-delay:1s; opacity:0;}
.main_2_fun_event_1_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:30.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100; animation-name:rotate_inside, rotate_aman; animation-duration:1.5s, 1s; animation-delay:0s, 2s; animation-iteration-count:infinite, 1; animation-timing-function:linear; animation-fill-mode:forwards, forwards; opacity:0;}
.main_2_fun_event_1_name_div{position:absolute; height:23vw; width:98vw; left:-100vw; top:21vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,69,237,1) 57%, rgba(253,29,99,1) 84%); z-index:1; animation:1.5s reveal_aman forwards; animation-delay:0.6s;}
.main_2_event_1_fun_name_div_p{position:absolute; font-size:11vw; color:white; font-family:steamy; top:-6vw; left:29vw;}
.main_2_tech_event_1_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_event_2_photo_1{position:absolute; height:30vw; width:30vw; top:45vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100;}
.main_2_fun_event_2_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:59.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; animation:1.5s rotate_inside infinite linear; animation-direction:; z-index:100;}
.main_2_fun_event_2_name_div{position:absolute; height:23vw; width:98vw; left:0vw; top:50vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,147,69,1) 57%, rgba(253,29,29,1) 84%); z-index:1;}
.main_2_event_2_fun_name_div_p{position:absolute; font-size:12vw; color:white; font-family:steamy; top:-8vw; left:30vw;}
.main_2_tech_event_2_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_event_3_photo_1{position:absolute; height:30vw; width:30vw; top:74vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100;}
.main_2_fun_event_3_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:88.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; animation:1.5s rotate_inside infinite linear; animation-direction:; z-index:100;}
.main_2_fun_event_3_name_div{position:absolute; height:23vw; width:98vw; left:0vw; top:79vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(119,69,252,1) 57%, rgba(147,29,253,1) 84%); z-index:1;}
.main_2_event_3_fun_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-6vw; left:28vw; font-weight:;}
.main_2_tech_event_3_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_event_4_photo_1{position:absolute; height:30vw; width:30vw; top:103vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100;}
.main_2_fun_event_4_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:117.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; animation:1.5s rotate_inside infinite linear; animation-direction:; z-index:100;}
.main_2_fun_event_4_name_div{position:absolute; height:23vw; width:98vw; left:0vw; top:108vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,212,69,1) 57%, rgba(186,253,29,1) 84%); z-index:1;}
.main_2_event_4_fun_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-12vw; left:32vw; font-weight:;}
.main_2_tech_event_4_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_event_5_photo_1{position:absolute; height:30vw; width:30vw; top:133vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100;}
.main_2_fun_event_5_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:147.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; animation:1.5s rotate_inside infinite linear; animation-direction:; z-index:100;}
.main_2_fun_event_5_name_div{position:absolute; height:23vw; width:98vw; left:0vw; top:138vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(252,69,117,1) 71%, rgba(147,29,253,1) 100%); z-index:1;}
.main_2_event_5_fun_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-9vw; left:32vw; font-weight:; line-height:9vw;}
.main_2_tech_event_5_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_event_6_photo_1{position:absolute; height:30vw; width:30vw; top:163vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100;}
.main_2_fun_event_6_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:177.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; animation:1.5s rotate_inside infinite linear; animation-direction:; z-index:100;}
.main_2_fun_event_6_name_div{position:absolute; height:23vw; width:98vw; left:0vw; top:168vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,0) 0%, rgba(107,69,252,1) 71%, rgba(253,29,239,1) 100%); z-index:1;}
.main_2_event_6_fun_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-4vw; left:32vw; font-weight:; line-height:9vw;}
.main_2_tech_event_6_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_2_fun_event_7_photo_1{position:absolute; height:30vw; width:30vw; top:193vw; left:-1vw; background-image:url("events_1.png"); background-repeat:no-repeat; background-size:100% 100%; z-index:100;}
.main_2_fun_event_7_photo_1_inside{position:absolute; height:3vw; width:3vw; left:9vw; top:207.5vw; background-image:url("inside.png"); background-repeat:no-repeat; background-size:100% 100%; animation:1.5s rotate_inside infinite linear; animation-direction:; z-index:100;}
.main_2_fun_event_7_name_div{position:absolute; height:23vw; width:98vw; left:0vw; top:198vw; border-radius:20vw; background: rgb(131,58,180);
background: linear-gradient(72deg, rgba(131,58,180,0) 0%, rgba(69,252,129,1) 71%, rgba(201,253,29,1) 100%); z-index:1;}
.main_2_event_7_fun_name_div_p{position:absolute; font-size:10.5vw; color:white; font-family:steamy; top:-4vw; left:32vw; font-weight:; line-height:9vw;}
.main_2_tech_event_7_name_div_button{position:absolute; left:0vw; top:0vw; height:100%; width:100%; background-color:transparent; border-radius:20vw; border:none; z-index:100;}
.main_content_3_footer{position:absolute; height:195vw; width:100%; top:394.8vw; left:0vw;background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);}
.main_content_3_footer_top_div{background-color:none; width:100%; height:35vw;}
.main_content_3_footer_top_div_p1{position:absolute; font-size:4.5vw; color:orange; left:27vw; top:5vw; text-align:center; cursor:default; font-weight:100;}
.main_content_3_footer_top_div_p2{position:absolute; font-size:4.5vw; color:orange; left:4vw; top:13vw; text-align:center; cursor:default;}
.main_content_3_footer_top_div_p3{position:absolute; font-size:4.5vw; color:orange; left:20vw; top:23vw; text-align:center; cursor:default;}
.main_content_3_footer_top_div_photo1{position:absolute; height:10vw; width:10vw; top:4vw; left:4vw; background-image:url("dhehs-834x1024-1.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_footer_top_div_photo2{position:absolute; height:10vw; width:10vw; top:4vw; left:86vw; background-image:url("swamiji-5-min-6-1197x1536-1-798x1024.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_footer_links{position:absolute; height:125vw; width:100%; top:28vw; left:0vw; background-color:none;}
.main_content_3_footer_links_follow_heading{position:absolute; font-family:steamy; font-size:10vw; color:white; left:37vw; text-shadow:0vw 0vw 1vw white; cursor:default;}
#main_content_3_footer_links_follow_facebook{position:absolute; font-size:8vw; top:28vw; left:5vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_instagram{position:absolute; font-size:8vw; top:42vw; left:4vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_twitter{position:absolute; font-size:8vw; top:55vw; left:4vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_youtube{position:absolute; font-size:8vw; top:67vw; left:4vw; text-shadow:0vw 0vw 1vw white;}
.main_content_3_footer_links_follow_instagram_text_link_in{position:absolute; top:42vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_instagram:hover{border-left:1vw solid white; color:#ff1c51; text-shadow:none;}
.main_content_3_footer_links_follow_instagram_text_link_in:hover{border-bottom:1vw solid white;}
.main_content_3_footer_links_follow_instagram_text_link_in:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_3_footer_links_follow_twitter_text_link_tw{position:absolute; top:55vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_twitter:hover{border-left:1vw solid white; color:blue; text-shadow:none;}
.main_content_3_footer_links_follow_twitter_text_link_tw:hover{border-bottom:1vw solid white;}
.main_content_3_footer_links_follow_twitter_text_link_tw:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_3_footer_links_follow_facebook_text_link_fb{position:absolute; top:27.5vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_facebook:hover{border-left:1vw solid white; color:#087dea; text-shadow:none;}
.main_content_3_footer_links_follow_facebook_text_link_fb:hover{border-bottom:1vw solid white;}
.main_content_3_footer_links_follow_facebook_text_link_fb:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_3_footer_links_follow_youtube_text_link_yt{position:absolute; top:67vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_3_footer_links_follow_youtube:hover{border-left:1vw solid white; color:red; text-shadow:none;}
.main_content_3_footer_links_follow_youtube_text_link_yt:hover{border-bottom:1vw solid white;}
.main_content_3_footer_links_follow_youtube_text_link_yt:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_3_footer_links_more_heading{position:absolute; font-size:10vw; font-family:steamy; color:white; text-shadow:0vw 0vw 1vw white; top:70vw; left:38vw; cursor:default;}
.main_content_3_footer_links_more_home{position:absolute; top:94vw; left:10vw; font-size:6.5vw; color:white; text-shadow:0vw 0vw 1vw white;}
.main_content_3_footer_links_more_sjcit{position:absolute; top:105vw; left:10vw; font-size:6.5vw; color:white; text-shadow:0vw 0vw 1vw white;}
.main_content_3_footer_links_more_register{position:absolute; top:116vw; left:10vw; font-size:6.5vw; color:white; text-shadow:0vw 0vw 1vw white;}
.main_content_3_footer_bottom_addr_h{position:absolute; font-size:8vw; top:127vw; left:36vw; font-family:steamy; color:white; animation:1s color_change infinite linear; animation-direction:alternate-reverse; cursor:default;}
.main_content_3_footer_bottom_addr_p{position:absolute; font-size:5.5vw; top:143vw; text-align:center; left:10vw; font-family:font1; color:white; animation:1s color_change infinite linear; animation-direction:alternate-reverse; cursor:default;}
.space_quiz_dialogue_box{position:absolute; width:88vw; height:155vw; top:24vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.space_quiz_dialogue_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:20vw; color:black; opacity:0;}
.space_quiz_dialogue_box_photo{position:absolute; height:40vw; width:55vw; top:25vw; left:18vw; background-color:#5400bf; border-radius:5vw; opacity:0;}
.space_quiz_dialogue_box_photo_p1{position:absolute; font-size:8vw; left:3vw; color:black; font-family:vampire;}
.space_quiz_dialogue_box_photo_p2{position:absolute; font-size:8vw; left:30vw; color:white; font-family:vampire;}
.space_quiz_dialogue_box_photo_p3{position:absolute; font-size:5.5vw; top:15vw; left:6.7vw; color:white; font-family:vampire;}
.space_quiz_dialogue_box_photo_p4{position:absolute; font-size:5.5vw; top:15vw; left:35vw; color:black; font-family:vampire;}
.space_quiz_dialogue_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:3vw; color:black; top:62vw; opacity:0;}
.space_quiz_dialogue_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.space_quiz_dialogue_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.space_quiz_dialogue_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.space_quiz_dialogue_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:-1;}
.space_quiz_dialogue_box_close_button{position:absolute; height:100%; width:100%; top:0vw; left:0vw; border:none; border-radius:50%; background:transparent;}
.poster_presentation_dialogue_box{position:absolute; width:88vw; height:155vw; top:24vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.poster_presentation_dialogue_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:3vw; color:black; opacity:0;}
.poster_presentation_dialogue_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("poster_presentation_img.png"); background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.poster_presentation_dialogue_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:10vw; line-height:10vw; color:black; top:66vw; opacity:0;}
.poster_presentation_dialogue_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.poster_presentation_dialogue_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.poster_presentation_dialogue_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.poster_presentation_dialogue_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.poster_presentation_dialogue_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.model_making_dialogue_box{position:absolute; width:88vw; height:155vw; top:24vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.model_making_dialogue_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:12vw; color:black; opacity:0;}
.model_making_dialogue_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("model_making_img.png"); background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.model_making_dialogue_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:10vw; line-height:10vw; color:black; top:66vw; opacity:0;}
.model_making_dialogue_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.model_making_dialogue_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.model_making_dialogue_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.model_making_dialogue_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.model_making_dialogue_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.aerogami_dialogue_box{position:absolute; width:88vw; height:155vw; top:24vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.aerogami_dialogue_box_heading{position:absolute; font-size:8vw; font-family:steamy; left:6vw; top:4vw; color:black; opacity:0;}
.aerogami_dialogue_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("aerogami_img.png"); background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.aerogami_dialogue_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:66vw; opacity:0;}
.aerogami_dialogue_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.aerogami_dialogue_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.aerogami_dialogue_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.aerogami_dialogue_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.aerogami_dialogue_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.carbon_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.carbon_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:15vw; top:4vw; color:black; opacity:0;}
.carbon_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("carbon.jpeg"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.carbon_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:66vw; opacity:0;}
.carbon_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.carbon_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.carbon_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.carbon_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.carbon_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.brick_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.brick_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:20vw; top:2vw; color:black; opacity:0;}
.brick_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("brick_image.png"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.brick_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:66vw; opacity:0;}
.brick_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.brick_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.brick_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.brick_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.brick_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.reach_target_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.reach_target_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:15vw; top:2vw; color:black; opacity:0;}
.reach_target_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("brick_image.png"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.reach_target_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:66vw; opacity:0;}
.reach_target_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.reach_target_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.reach_target_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.reach_target_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.reach_target_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.ball_in_bucket_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.ball_in_bucket_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:13vw; top:2vw; color:black; opacity:0;}
.ball_in_bucket_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("ball_bucket_image.png"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.ball_in_bucket_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:63vw; opacity:0;}
.ball_in_bucket_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.ball_in_bucket_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.ball_in_bucket_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.ball_in_bucket_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.ball_in_bucket_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.kite_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.kite_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:7vw; top:2vw; color:black; opacity:0;}
.kite_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("kite_image.png"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.kite_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:63vw; opacity:0;}
.kite_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.kite_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.kite_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.kite_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.kite_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.coin_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.coin_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:16vw; top:2vw; color:black; opacity:0;}
.coin_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("coin_image.png"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.coin_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:63vw; opacity:0;}
.coin_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.coin_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.coin_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.coin_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.coin_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.eat_jalebi_box{position:absolute; width:88vw; height:155vw; top:210vw; left:-96vw; background-color:white; border-radius:10vw; z-index:100;}
.eat_jalebi_box_heading{position:absolute; font-size:10vw; font-family:steamy; left:23vw; top:2vw; color:black; opacity:0;}
.eat_jalebi_box_photo{position:absolute; height:40vw; width:70vw; top:25vw; left:9vw; background-image:url("jalebi_image.png"); border-radius:7vw; background-size:100% 100%; background-repeat:no-repeat; opacity:0;}
.eat_jalebi_box_discription{position:absolute; font-size:6.5vw; font-family:font1; left:5vw; line-height:10vw; color:black; top:63vw; opacity:0;}
.eat_jalebi_box_register{position:absolute; height:15vw; width:35vw; top:135vw; left:27vw; background-color:#5400bf; border-radius:25vw; opacity:0;}
.eat_jalebi_box_register_p{position:absolute; font-size:8vw; font-family:font1; color:white; top:-5vw; left:5.2vw;}
.eat_jalebi_box_close{position:absolute; height:15vw; width:15vw; top:134vw; left:67vw; background-color:red; border-radius:50%; opacity:0;}
.eat_jalebi_box_close_p{position:absolute; font-size:6vw; font-family:font1; color:white; top:-1.7vw; left:1.9vw; z-index:0;}
.eat_jalebi_box_close_button{position:absolute; height:100%; width:100%; top:0vw; z-index:100; left:0vw; border:none; border-radius:50%; background:transparent;}
.animation_change_page{display:block; position:fixed; height:100%; width:100%; top:0vw; left:0vw; background-color:; z-index:10000000;}
.animation_change_page_inside_top{display:block; position:absolute; height:100%; width:100%; top:0vw; left:0vw; background-color:black; animation-name:page_anm_top, page_anm_top_full; animation-duration:2s,1s; animation-delay:1s, 0s; animation-fill-mode:forwards, forwards;}
.animation_change_page_inside_bottom{display:block; position:absolute; height:15vw; width:100%; bottom:0vw; left:0vw; background-color:black; animation:2s page_anm_bottom forwards; animation-delay:1s;}
.animation_change_page_inside_left{display:block; position:absolute; height:100%; width:15vw; top:0vw; left:0vw; background-color:black; animation:2s page_anm_left forwards; animation-delay:1s;}
.animation_change_page_inside_right{display:block; position:absolute; height:100%; width:15vw; top:0vw; right:0vw; background-color:black; animation:2s page_anm_right forwards; animation-delay:1s;}
@keyframes font{0%{text-shadow: 0vw 0vw 0vw black;} 100%{text-shadow: 0vw 0vw 1vw white;}}
@keyframes reveal_top_menu{from{height:22vw;} to{height:0vw;}}
@keyframes reveal_main_1_head {from{height:55vw;} to{height:0vw;}}
@keyframes scale_head_p{from{scale:5;} to{scale:1;}}
@keyframes opacity_tittle{from{opacity:0; scale:0.8;} to{opacity: 1; scale: 1;}}
@keyframes menu_line_reveal{from{left:1000vw;} to{left:1.5vw;}}
@keyframes menu_box_reveal{from{height:0vw;} to{height:90vw;}}
@keyframes about_move_p_1{from{left:100vw;} to{left:-62vw;}}
@keyframes rotate_inside{from{transform:rotate(0deg);} to{transform:rotate(360deg);}}
@keyframes menu_reveal_home{from{opacity:0; left:0vw;} to{opacity:1; left:38vw;}}
@keyframes menu_reveal_abt{from{opacity:0; left:0vw;} to{opacity:1; left:35.8vw;}}
@keyframes menu_reveal_gall{from{opacity:0; left:0vw;} to{opacity:1; left:34vw;}}
@keyframes menu_reveal_team{from{opacity:0; left:0vw;} to{opacity:1; left:37.5vw;}}
@keyframes menu_reveal_reg{from{opacity:0; left:0vw;} to{opacity:1; left:32.5vw;}}
@keyframes menu_dereveal_events{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_abt{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_gall{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_team{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_reg{from{opacity:1;} to{opacity:0;}}
@keyframes menu_box_dereveal{from{height:90vw;} to{height:0vw;}}
@keyframes menu_box_none{from{display:block;} to{display:none;}}
@keyframes menu_line_1{from{width:5.5vw;} to{width:14vw;}}
@keyframes menu_line_3{from{width:14vw;} to{width:5.5vw;}}
@keyframes menu_line_1_renew{from{width:14vw;} to{width:5.5vw;}}
@keyframes menu_line_3_renew{from{width:5.5vw;} to{width:14vw;}}
@keyframes box_reveal{from{left:-96vw; opacity:0;} to{left:6vw; opacity:1;}}
@keyframes reveal{from{opacity:0;} to{opacity:1;}}
@keyframes reveal_scale{from{transform:scale(0); opacity:0;} to{transform:scale(1); opacity:1;}}
@keyframes fade_out{from{opacity:1;} to{opacity:0;}}
@keyframes fade_out_box{from{opacity:1; left:6vw;} to{opacity:0; left:-96vw;}}
@keyframes btn_anm{0%{letter-spacing:default;} 50%{letter-spacing:1.5vw; left:23vw;} 100%{letter-spacing:default; left:default;}}
@keyframes btn_anm_specific_model_making{0%{letter-spacing:default;} 50%{letter-spacing:1.5vw; left:10vw;} 100%{letter-spacing:default; left:default;}}
@keyframes btn_anm_specific_carbon{0%{letter-spacing:default;} 50%{letter-spacing:1.5vw; left:15vw;} 100%{letter-spacing:default; left:default;}}
@keyframes reveal_aman{from{left:-96vw;} to{left:0vw;}}
@keyframes rotate_aman{from{opacity:0;} to{opacity:1;}}
@keyframes page_anm_top{from{top:0vw;} to{top:-20vw;}}
@keyframes page_anm_bottom{from{bottom:0vw;} to{bottom:-20vw;}}
@keyframes page_anm_left{from{left:0vw;} to{left:-20vw;}}
@keyframes page_anm_right{from{right:0vw;} to{right:-20vw;}}
@keyframes page_anm_top_full{from{height:100%;} to{height:15vw;}}
@keyframes page_anm_top_1{from{top:-15vw;} to{top:0vw;}}
@keyframes page_anm_bottom_1{from{bottom:-15vw;} to{bottom:0vw;}}
@keyframes page_anm_left_1{from{left:-15vw;} to{left:0vw;}}
@keyframes page_anm_right_1{from{right:-15vw;} to{right:0vw;}}
@keyframes page_anm_top_full_1{from{height:15vw;} to{height:100%;}}
}
</style>
</head>
<body style="overflow: scroll;">
<div class="animation_change_page" id="animation_change_page" style="display:;">
<div class="animation_change_page_inside_top" id="animation_change_page_inside_top" style="display:;"></div>
<div class="animation_change_page_inside_bottom" id="animation_change_page_inside_bottom" style="display:;"></div>
<div class="animation_change_page_inside_left" id="animation_change_page_inside_left" style="display:;"></div>
<div class="animation_change_page_inside_right" id="animation_change_page_inside_right" style="display:;"></div>
</div>
<div class="options" id="options" style="height:0vw;">
<a href="index.html" class="options_events" id="events">Home</a>
<a href="index.html#main_content_2_about" class="options_abt" id="about">About</a>
<a href="test_fest_gallery.html" class="options_gall" id="gallery">Gallery</a>
<a href="test_fest_team.html" class="options_team" id="team">Team</a>
<a href="#" class="options_reg" id="register">Register</a>
</div>
<div class="top_div_horizontal_line"></div>
<div class="top_div">
<div class="top_div_animation"></div>
<a href="index.html" id="top_div_tittle"><div class="top_div_tittle"><p class="top_div_tittle_p">VYOMA</p></div></a>
<div class="top_div_vertical_line"></div>
<div class="top_div_menu" id="top_div_menu" it="top">
<button class="top_div_menu_button" onclick="menu()"></button>
<div class="menu_line_1" id="menu_line_1"></div>
<div class="menu_line_2"></div>
<div class="menu_line_3" id="menu_line_3"></div>
</div>
</div>
<div class="main_1_tech_events" id="main_1_tech_events">
<div class="main_1_tech_events_top_animation_div">
<p class="main_content_1_top_animaiton_div_p_1">Technical</p><p class="main_content_1_top_animaiton_div_p_2">Events</p>
</div>
<div class="main_1_tech_event_1_photo_1"></div>
<div class="main_1_tech_event_1_photo_1_inside"></div>
<div class="main_1_tech_event_1_name_div">
<button class="main_1_tech_event_1_name_div_button" onclick="space_quiz()"></button>
<p class="main_1_event_1_tech_name_div_p" id="main_1_event_1_tech_name_div_p">Space Quiz</p>
</div>
<div class="main_1_tech_event_2_photo_1"></div>
<div class="main_1_tech_event_2_photo_1_inside"></div>
<div class="main_1_tech_event_2_name_div">
<button class="main_1_tech_event_2_name_div_button" onclick="poster_presentation()"></button>
<p class="main_1_tech_event_2_name_div_p" id="main_1_tech_event_2_name_div_p">Poster Presentation</p>
</div>
<div class="main_1_tech_event_3_photo_1"></div>
<div class="main_1_tech_event_3_photo_1_inside"></div>
<div class="main_1_tech_event_3_name_div">
<button class="main_1_tech_event_3_name_div_button" onclick="model_making()"></button>
<p class="main_1_tech_event_3_name_div_p" id="main_1_tech_event_3_name_div_p">Model Making</p>
</div>
<div class="main_1_tech_event_4_photo_1"></div>
<div class="main_1_tech_event_4_photo_1_inside"></div>
<div class="main_1_tech_event_4_name_div">
<button class="main_1_tech_event_4_name_div_button" id="main_1_tech_event_4_name_div_button" onclick="aerogami()"></button>
<p class="main_1_tech_event_4_name_div_p" id="main_1_tech_event_4_name_div_p">Aerogami Competetion</p>
</div>
</div>
<div class="main_2_fun_events" id="main_2_fun_events">
<div class="main_2_fun_events_top_animation_div">
<p class="main_content_2_top_animaiton_div_p_1">Fun</p><p class="main_content_2_top_animaiton_div_p_2">Events</p>
</div>
<div class="main_2_fun_event_1_photo_1"></div>
<div class="main_2_fun_event_1_photo_1_inside"></div>
<div class="main_2_fun_event_1_name_div">
<button class="main_2_tech_event_1_name_div_button" onclick="carbon()"></button>
<p class="main_2_event_1_fun_name_div_p" id="main_2_event_1_fun_name_div_p">Carbon Slosh</p>
</div>
<div class="main_2_fun_event_2_photo_1"></div>
<div class="main_2_fun_event_2_photo_1_inside"></div>
<div class="main_2_fun_event_2_name_div">
<button class="main_2_tech_event_2_name_div_button" onclick="brick()"></button>
<p class="main_2_event_2_fun_name_div_p" id="main_2_event_2_fun_name_div_p">Bricks Walk</p>
</div>
<div class="main_2_fun_event_3_photo_1"></div>
<div class="main_2_fun_event_3_photo_1_inside"></div>
<div class="main_2_fun_event_3_name_div">
<button class="main_2_tech_event_3_name_div_button" onclick="reach_target()"></button>
<p class="main_2_event_3_fun_name_div_p" id="main_2_event_3_fun_name_div_p">Reach Target</p>
</div>
<div class="main_2_fun_event_4_photo_1"></div>
<div class="main_2_fun_event_4_photo_1_inside"></div>
<div class="main_2_fun_event_4_name_div">
<button class="main_2_tech_event_4_name_div_button" onclick="ball_in_bucket()"></button>
<p class="main_2_event_4_fun_name_div_p" id="main_2_event_4_fun_name_div_p">Ball in the bucket</p>
</div>
<div class="main_2_fun_event_5_photo_1"></div>
<div class="main_2_fun_event_5_photo_1_inside"></div>
<div class="main_2_fun_event_5_name_div">
<button class="main_2_tech_event_5_name_div_button" onclick="kite()"></button>
<p class="main_2_event_5_fun_name_div_p" id="main_2_event_5_fun_name_div_p">Kite competition</p>
</div>
<div class="main_2_fun_event_6_photo_1"></div>
<div class="main_2_fun_event_6_photo_1_inside"></div>
<div class="main_2_fun_event_6_name_div">
<button class="main_2_tech_event_6_name_div_button" onclick="coin()"></button>
<p class="main_2_event_6_fun_name_div_p" id="main_2_event_6_fun_name_div_p">Coin Minting</p>
</div>
<div class="main_2_fun_event_7_photo_1"></div>
<div class="main_2_fun_event_7_photo_1_inside"></div>
<div class="main_2_fun_event_7_name_div">
<button class="main_2_tech_event_7_name_div_button" onclick="eat_jalebi()"></button>
<p class="main_2_event_7_fun_name_div_p" id="main_2_event_7_fun_name_div_p">Eat Jillebi</p>
</div>
</div>
<!-- Added comments for better understanding... -->
<div class="space_quiz_dialogue_box" id="space_quiz_dialogue_box" style="left:-96vw;">
<p class="space_quiz_dialogue_box_heading" id="space_quiz_dialogue_box_heading">Space Quiz</p>
<div class="space_quiz_dialogue_box_photo" id="space_quiz_dialogue_box_photo"><p class="space_quiz_dialogue_box_photo_p1">space</p><p class="space_quiz_dialogue_box_photo_p2">quiz</p><p class="space_quiz_dialogue_box_photo_p3">SJCIT aero</p><p class="space_quiz_dialogue_box_photo_p4">space</p></div>
<p class="space_quiz_dialogue_box_discription" id="space_quiz_dialogue_box_discription">Space Quiz is organised on the event of VYOMA from Aerospace Department. Space Quiz is a event where there will be a quiz related to the space and science.
The one who scores the maximum points wins the game.</p>
<div class="space_quiz_dialogue_box_register" id="space_quiz_dialogue_box_register"><p class="space_quiz_dialogue_box_register_p">Register</p></div>
<div class="space_quiz_dialogue_box_close" id="space_quiz_dialogue_box_close"><button class="space_quiz_dialogue_box_close_button" onclick="space_quiz_close()"></button><p class="space_quiz_dialogue_box_close_p">Close</p></div>
</div>
<div class="poster_presentation_dialogue_box" id="poster_presentation_dialogue_box" style="left:-96vw;">
<p class="poster_presentation_dialogue_box_heading" id="poster_presentation_dialogue_box_heading">Poster Presenation</p>
<div class="poster_presentation_dialogue_box_photo" id="poster_presentation_dialogue_box_photo"></div>
<p class="poster_presentation_dialogue_box_discription" id="poster_presentation_dialogue_box_discription">Display your poster and be available for viewers.The best poster will be selected by the judges.</p>
<div class="poster_presentation_dialogue_box_register" id="poster_presentation_dialogue_box_register"><p class="poster_presentation_dialogue_box_register_p">Register</p></div>
<div class="poster_presentation_dialogue_box_close" id="poster_presentation_dialogue_box_close"><button class="poster_presentation_dialogue_box_close_button" onclick="poster_presentation_close()"></button>
<p class="poster_presentation_dialogue_box_close_p">Close</p></div>
</div>
<div class="model_making_dialogue_box" id="model_making_dialogue_box" style="left:-96vw;">
<p class="model_making_dialogue_box_heading" id="model_making_dialogue_box_heading">Model Making</p>
<div class="model_making_dialogue_box_photo" id="model_making_dialogue_box_photo"></div>
<p class="model_making_dialogue_box_discription" id="model_making_dialogue_box_discription">Display your Models and be available for viewers.The best Models will be selected by the judges.</p>
<div class="model_making_dialogue_box_register" id="model_making_dialogue_box_register"><p class="model_making_dialogue_box_register_p">Register</p></div>
<div class="model_making_dialogue_box_close" id="model_making_dialogue_box_close"><button class="model_making_dialogue_box_close_button" onclick="model_making_close()"></button>
<p class="model_making_dialogue_box_close_p">Close</p></div>
</div>
<div class="aerogami_dialogue_box" id="aerogami_dialogue_box" style="left:-96vw;">
<p class="aerogami_dialogue_box_heading" id="aerogami_dialogue_box_heading">Aerogami Competition</p>
<div class="aerogami_dialogue_box_photo" id="aerogami_dialogue_box_photo"></div>
<p class="aerogami_dialogue_box_discription" id="aerogami_dialogue_box_discription">Aerogami competitions combine the artistry of origami with the precision of aerodynamics, inviting participants to fold and launch paper airplanes in a creative celebration of flight.
</p>
<div class="aerogami_dialogue_box_register" id="aerogami_dialogue_box_register"><p class="aerogami_dialogue_box_register_p">Register</p></div>
<div class="aerogami_dialogue_box_close" id="aerogami_dialogue_box_close"><button class="aerogami_dialogue_box_close_button" onclick="aerogami_close()"></button>
<p class="aerogami_dialogue_box_close_p">Close</p></div>
</div>
<div class="carbon_box" id="carbon_box" style="left:-96vw;">
<p class="carbon_box_heading" id="carbon_box_heading">Carbon Slosh</p>
<div class="carbon_box_photo" id="carbon_box_photo"></div>
<p class="carbon_box_discription" id="carbon_box_discription">Carbon is a chemical element crucial to life on Earth, forming the basis of organic compounds.</p>
<div class="carbon_box_register" id="carbon_box_register"><p class="carbon_box_register_p">Register</p></div>
<div class="carbon_box_close" id="carbon_box_close"><button class="carbon_box_close_button" onclick="carbon_close()"></button>
<p class="carbon_box_close_p">Close</p></div>
</div>
<div class="brick_box" id="brick_box" style="left:-96vw;">
<p class="brick_box_heading" id="brick_box_heading">Brick Walk</p>
<div class="brick_box_photo" id="brick_box_photo"></div>
<p class="brick_box_discription" id="brick_box_discription">Stepping into the heart of Brick Walk, the community converges on a path of camaraderie, where each brick tells a story of connection and shared history.</p>
<div class="brick_box_register" id="brick_box_register"><p class="brick_box_register_p">Register</p></div>
<div class="brick_box_close" id="brick_box_close"><button class="brick_box_close_button" onclick="brick_close()"></button>
<p class="brick_box_close_p">Close</p></div>
</div>
<div class="reach_target_box" id="reach_target_box" style="left:-96vw;">
<p class="reach_target_box_heading" id="reach_target_box_heading">Reach Target</p>
<div class="reach_target_box_photo" id="reach_target_box_photo"></div>
<p class="reach_target_box_discription" id="reach_target_box_discription">At the 'Reach Target' event in our college fest, students aim high and hit the bullseye of skill and camaraderie, turning aspirations into victorious moments that resonate throughout campus.</p>
<div class="reach_target_box_register" id="reach_target_box_register"><p class="reach_target_box_register_p">Register</p></div>
<div class="reach_target_box_close" id="reach_target_box_close"><button class="reach_target_box_close_button" onclick="reach_target_close()"></button>
<p class="reach_target_box_close_p">Close</p></div>
</div>
<div class="ball_in_bucket_box" id="ball_in_bucket_box" style="left:-96vw;">
<p class="ball_in_bucket_box_heading" id="ball_in_bucket_box_heading">Ball In Bucket</p>
<div class="ball_in_bucket_box_photo" id="ball_in_bucket_box_photo"></div>
<p class="ball_in_bucket_box_discription" id="ball_in_bucket_box_discription">At the 'Reach Target' event in our college fest, students aim high and hit the bullseye of skill and camaraderie, turning aspirations into victorious moments that resonate throughout campus.</p>
<div class="ball_in_bucket_box_register" id="ball_in_bucket_box_register"><p class="ball_in_bucket_box_register_p">Register</p></div>
<div class="ball_in_bucket_box_close" id="ball_in_bucket_box_close"><button class="ball_in_bucket_box_close_button" onclick="ball_in_bucket_close()"></button>
<p class="ball_in_bucket_box_close_p">Close</p></div>
</div>
<div class="kite_box" id="kite_box" style="left:-96vw;">
<p class="kite_box_heading" id="kite_box_heading">Kite Competetion</p>
<div class="kite_box_photo" id="kite_box_photo"></div>
<p class="kite_box_discription" id="kite_box_discription">In the annual kite competition, contestants claim victory by flying visible kites, showcasing their mastery of the unseen aerial artistry.</p>
<div class="kite_box_register" id="kite_box_register"><p class="kite_box_register_p">Register</p></div>
<div class="kite_box_close" id="kite_box_close"><button class="kite_box_close_button" onclick="kite_close()"></button>
<p class="kite_box_close_p">Close</p></div>
</div>
<div class="coin_box" id="coin_box" style="left:-96vw;">
<p class="coin_box_heading" id="coin_box_heading">Coin Minting</p>
<div class="coin_box_photo" id="coin_box_photo"></div>
<p class="coin_box_discription" id="coin_box_discription">At the coin minting event in our college fest, students turn creativity into currency, forging unique tokens of memories that symbolize the wealth of shared experiences on campus.</p>
<div class="coin_box_register" id="coin_box_register"><p class="coin_box_register_p">Register</p></div>
<div class="coin_box_close" id="coin_box_close"><button class="coin_box_close_button" onclick="coin_close()"></button>
<p class="coin_box_close_p">Close</p></div>
</div>
<div class="eat_jalebi_box" id="eat_jalebi_box" style="left:-96vw;">
<p class="eat_jalebi_box_heading" id="eat_jalebi_box_heading">Eat Jalebi</p>
<div class="eat_jalebi_box_photo" id="eat_jalebi_box_photo"></div>
<p class="eat_jalebi_box_discription" id="eat_jalebi_box_discription">At the 'Eat Jalebi' event in our college fest, taste buds embark on a sweet journey as students savor the spirals of joy, turning a simple treat into a symphony of delightful moments.</p>
<div class="eat_jalebi_box_register" id="eat_jalebi_box_register"><p class="eat_jalebi_box_register_p">Register</p></div>
<div class="eat_jalebi_box_close" id="eat_jalebi_box_close"><button class="eat_jalebi_box_close_button" onclick="eat_jalebi_close()"></button>
<p class="eat_jalebi_box_close_p">Close</p></div>
</div>
<div class="main_content_3_footer">
<div class="main_content_3_footer_top_div">
<p class="main_content_3_footer_top_div_p1">||JAI SRI GURUDEV||</p>
<p class="main_content_3_footer_top_div_p2">Sri Adichunchanagiri Shikshana Trust(R.)</p>
<p class="main_content_3_footer_top_div_p3">SJC Institute Of Technology</p>
<div class="main_content_3_footer_top_div_photo1"></div>
<div class="main_content_3_footer_top_div_photo2"></div>
</div>
<div class="main_content_3_footer_links">
<p class="main_content_3_footer_links_follow_heading">Follow</p>
<a class="fa fa-facebook" id="main_content_3_footer_links_follow_facebook"></a>
<a class="fa fa-instagram" id="main_content_3_footer_links_follow_instagram"></a>
<a class="fa fa-twitter" id="main_content_3_footer_links_follow_twitter"></a>
<a class="fa fa-youtube" id="main_content_3_footer_links_follow_youtube"></a>
<a href="#" class="main_content_3_footer_links_follow_facebook_text_link_fb">Facebook</a>
<a href="#" class="main_content_3_footer_links_follow_instagram_text_link_in">Instagram</a>
<a href="#" class="main_content_3_footer_links_follow_twitter_text_link_tw">Twitter</a>
<a href="#" class="main_content_3_footer_links_follow_youtube_text_link_yt">Youtube</a>
<p class="main_content_3_footer_links_more_heading">More</p>
<a href="#top" class="main_content_3_footer_links_more_home">Home</a>
<a href="https://sjcit.ac.in/" class="main_content_3_footer_links_more_sjcit">SJCIT</a>
<a href="#" class="main_content_3_footer_links_more_register">Register</a>
<p class="main_content_3_footer_bottom_addr_h">Address</p>
<p class="main_content_3_footer_bottom_addr_p">SJC Institute of technology<br>Chickballapur,-562101 Karnataka, India</p>
</div>
</div>
<script type="text/javascript">
document.addEventListener('click',function(){var pos=window.scrollY;});
function menu(){
console.log("called");
var a=document.getElementById("options")
var event_s=document.getElementById("events");
var about=document.getElementById("about");
var gall=document.getElementById("gallery");
var team=document.getElementById("team");
var reg=document.getElementById("register");
var line1=document.getElementById("menu_line_1");
var line3=document.getElementById("menu_line_3");
var back_blur=document.getElementById("main_1_tech_events");
var back_blur_2=document.getElementById("main_2_fun_events");
if(a.style.height==="0vw"){
a.style.animation="0.5s menu_box_reveal forwards";
event_s.style.animation="1s menu_reveal_home forwards";
about.style.animation="1s menu_reveal_abt forwards";
about.style.animationDelay="0.2s";
gall.style.animation="1s menu_reveal_gall forwards";
gall.style.animationDelay="0.4s";
team.style.animation="1s menu_reveal_team forwards";
team.style.animationDelay="0.6s";
reg.style.animation="1s menu_reveal_reg forwards";
reg.style.animationDelay="0.8s";
a.style.height="90vw";
line1.style.animation="0.5s menu_line_1 forwards";
line3.style.animation="0.5s menu_line_3 forwards";
back_blur.style.filter="blur(5vw)";
document.body.style.overflow="hidden";
back_blur_2.style.filter="blur(5vw)";
}
else{
event_s.style.animation=".2s menu_dereveal_events forwards";
event_s.style.animationDelay="0s";
about.style.animation="0.2s menu_dereveal_abt forwards";
about.style.animationDelay="0s";
gall.style.animation="0.2s menu_dereveal_gall forwards";
gall.style.animationDelay="0s";
team.style.animation="0.2s menu_dereveal_team forwards";
team.style.animationDelay="0s";
reg.style.animation="0.2s menu_dereveal_reg forwards";
reg.style.animationDelay="0s";
a.style.animation="0.5s menu_box_dereveal forwards";
a.style.height="0vw";
line1.style.animation="0.5s menu_line_1_renew forwards";
line3.style.animation="0.5s menu_line_3_renew forwards";
back_blur.style.filter="blur(0vw)";
document.body.style.overflow="scroll";
back_blur_2.style.filter="blur(0vw)";
}
}
function space_quiz(){
var space_quiz_box=document.getElementById("space_quiz_dialogue_box");
var space_quiz_dialogue_box_heading=document.getElementById("space_quiz_dialogue_box_heading");
var space_quiz_dialogue_box_photo=document.getElementById("space_quiz_dialogue_box_photo");
var space_quiz_dialogue_box_discription=document.getElementById("space_quiz_dialogue_box_discription");
var space_quiz_dialogue_box_register=document.getElementById("space_quiz_dialogue_box_register");
var space_quiz_dialogue_box_close=document.getElementById("space_quiz_dialogue_box_close");
var space_quiz_p=document.getElementById("main_1_event_1_tech_name_div_p");
console.log("calledSpace");
if(space_quiz_box.style.left==="-96vw"){
space_quiz_box.style.animation="1s box_reveal forwards";
space_quiz_dialogue_box_heading.style.animation="0.5s reveal forwards";space_quiz_dialogue_box_heading.style.animationDelay="0.8s";
space_quiz_dialogue_box_photo.style.animation="0.5s reveal forwards";space_quiz_dialogue_box_photo.style.animationDelay="1s";
space_quiz_dialogue_box_discription.style.animation="0.5s reveal forwards";space_quiz_dialogue_box_discription.style.animationDelay="1.2s";
space_quiz_dialogue_box_register.style.animation="0.5s reveal_scale forwards";space_quiz_dialogue_box_register.style.animationDelay="1.2s";
space_quiz_dialogue_box_close.style.animation="0.5s reveal_scale forwards";space_quiz_dialogue_box_close.style.animationDelay="1.4s";
space_quiz_p.style.animation="1s btn_anm";
window.scrollTo({top:0,behavior:"smooth"});
space_quiz_box.style.left="6vw";
console.log(window.scrollY);
setTimeout(function(){if(window.scrollY===0){document.body.style.overflow="hidden"; console.log("reached settimeout");}},700);
}
else{}
}
function space_quiz_close(){
var space_quiz_box=document.getElementById("space_quiz_dialogue_box");
var space_quiz_dialogue_box_heading=document.getElementById("space_quiz_dialogue_box_heading");
var space_quiz_dialogue_box_photo=document.getElementById("space_quiz_dialogue_box_photo");
var space_quiz_dialogue_box_discription=document.getElementById("space_quiz_dialogue_box_discription");
var space_quiz_dialogue_box_register=document.getElementById("space_quiz_dialogue_box_register");
var space_quiz_dialogue_box_close=document.getElementById("space_quiz_dialogue_box_close");
var space_quiz_p=document.getElementById("main_1_event_1_tech_name_div_p");
console.log("calledSpace");
if(space_quiz_box.style.left==="6vw"){
space_quiz_box.style.animation="1s fade_out_box forwards";
space_quiz_dialogue_box_heading.style.animation="1s fade_out forwards";
space_quiz_dialogue_box_photo.style.animation="1s fade_out forwards";
space_quiz_dialogue_box_discription.style.animation="1s fade_out forwards";
space_quiz_dialogue_box_register.style.animation="1s fade_out forwards";
space_quiz_dialogue_box_close.style.animation="1s fade_out forwards";
space_quiz_p.style.animation="none";
space_quiz_box.style.left="-96vw";
document.body.style.overflow="scroll";
}
else{}
}
function poster_presentation(){
var poster_box=document.getElementById("poster_presentation_dialogue_box");
var poster_presentation_dialogue_box_heading=document.getElementById("poster_presentation_dialogue_box_heading");
var poster_presentation_dialogue_box_photo=document.getElementById("poster_presentation_dialogue_box_photo");
var poster_presentation_dialogue_box_discription=document.getElementById("poster_presentation_dialogue_box_discription");
var poster_presentation_dialogue_box_register=document.getElementById("poster_presentation_dialogue_box_register");
var poster_presentation_dialogue_box_close=document.getElementById("poster_presentation_dialogue_box_close");
var poster_presentation_p=document.getElementById("main_1_tech_event_2_name_div_p");
console.log("poster");
if(poster_box.style.left==="-96vw"){
poster_box.style.animation="1s box_reveal forwards";
poster_presentation_dialogue_box_heading.style.animation="0.5s reveal forwards";poster_presentation_dialogue_box_heading.style.animationDelay="0.8s";
poster_presentation_dialogue_box_photo.style.animation="0.5s reveal forwards";poster_presentation_dialogue_box_photo.style.animationDelay="1s";
poster_presentation_dialogue_box_discription.style.animation="0.5s reveal forwards";poster_presentation_dialogue_box_discription.style.animationDelay="1.2s";
poster_presentation_dialogue_box_register.style.animation="0.5s reveal_scale forwards";poster_presentation_dialogue_box_register.style.animationDelay="1.2s";
poster_presentation_dialogue_box_close.style.animation="0.5s reveal_scale forwards";poster_presentation_dialogue_box_close.style.animationDelay="1.4s";
poster_presentation_p.style.animation="1s btn_anm";
window.scrollTo({top:0,behavior:"smooth"});
poster_box.style.left="6vw";
console.log(window.scrollY);
setTimeout(function(){if(window.scrollY===0){document.body.style.overflow="hidden"; console.log("reached settimeout");}},700);
}
else{}
}
function poster_presentation_close(){
var poster_box=document.getElementById("poster_presentation_dialogue_box");
var poster_presentation_dialogue_box_heading=document.getElementById("poster_presentation_dialogue_box_heading");
var poster_presentation_dialogue_box_photo=document.getElementById("poster_presentation_dialogue_box_photo");
var poster_presentation_dialogue_box_discription=document.getElementById("poster_presentation_dialogue_box_discription");
var poster_presentation_dialogue_box_register=document.getElementById("poster_presentation_dialogue_box_register");
var poster_presentation_dialogue_box_close=document.getElementById("poster_presentation_dialogue_box_close");
var poster_presentation_p=document.getElementById("main_1_tech_event_2_name_div_p");
console.log("poster_close");
if(poster_box.style.left==="6vw"){
poster_box.style.animation="1s fade_out_box forwards";
poster_presentation_dialogue_box_heading.style.animation="1s fade_out forwards";
poster_presentation_dialogue_box_photo.style.animation="1s fade_out forwards";
poster_presentation_dialogue_box_discription.style.animation="1s fade_out forwards";
poster_presentation_dialogue_box_register.style.animation="1s fade_out forwards";
poster_presentation_dialogue_box_close.style.animation="1s fade_out forwards";
poster_presentation_p.style.animation="none";
poster_box.style.left="-96vw";
document.body.style.overflow="scroll";
}
else{}
}
function model_making(){
var model_making_box=document.getElementById("model_making_dialogue_box");
var model_making_dialogue_box_heading=document.getElementById("model_making_dialogue_box_heading");
var model_making_dialogue_box_photo=document.getElementById("model_making_dialogue_box_photo");
var model_making_dialogue_box_discription=document.getElementById("model_making_dialogue_box_discription");
var model_making_dialogue_box_register=document.getElementById("model_making_dialogue_box_register");
var model_making_dialogue_box_close=document.getElementById("model_making_dialogue_box_close");
var model_making_p=document.getElementById("main_1_tech_event_3_name_div_p");
console.log("poster");
if(model_making_box.style.left==="-96vw"){
model_making_box.style.animation="1s box_reveal forwards";
model_making_dialogue_box_heading.style.animation="0.5s reveal forwards";model_making_dialogue_box_heading.style.animationDelay="0.8s";
model_making_dialogue_box_photo.style.animation="0.5s reveal forwards";model_making_dialogue_box_photo.style.animationDelay="1s";
model_making_dialogue_box_discription.style.animation="0.5s reveal forwards";model_making_dialogue_box_discription.style.animationDelay="1.2s";
model_making_dialogue_box_register.style.animation="0.5s reveal_scale forwards";model_making_dialogue_box_register.style.animationDelay="1.2s";
model_making_dialogue_box_close.style.animation="0.5s reveal_scale forwards";model_making_dialogue_box_close.style.animationDelay="1.4s";
model_making_p.style.animation="1s btn_anm_specific_model_making";
window.scrollTo({top:0,behavior:"smooth"});
model_making_box.style.left="6vw";
console.log(window.scrollY);
setTimeout(function(){if(window.scrollY===0){document.body.style.overflow="hidden"; console.log("reached settimeout");}},700);
}
else{}
}
function model_making_close(){
var model_making_box=document.getElementById("model_making_dialogue_box");
var model_making_dialogue_box_heading=document.getElementById("model_making_dialogue_box_heading");
var model_making_dialogue_box_photo=document.getElementById("model_making_dialogue_box_photo");
var model_making_dialogue_box_discription=document.getElementById("model_making_dialogue_box_discription");
var model_making_dialogue_box_register=document.getElementById("model_making_dialogue_box_register");
var model_making_dialogue_box_close=document.getElementById("model_making_dialogue_box_close");
var model_making_p=document.getElementById("main_1_tech_event_3_name_div_p");
if(model_making_box.style.left==="6vw"){
model_making_box.style.animation="1s fade_out_box forwards";
model_making_dialogue_box_heading.style.animation="1s fade_out forwards";
model_making_dialogue_box_photo.style.animation="1s fade_out forwards";
model_making_dialogue_box_discription.style.animation="1s fade_out forwards";
model_making_dialogue_box_register.style.animation="1s fade_out forwards";
model_making_dialogue_box_close.style.animation="1s fade_out forwards";
model_making_p.style.animation="none";
model_making_box.style.left="-96vw";
document.body.style.overflow="scroll";
}
else{}
}
function aerogami(){
var aerogami_box=document.getElementById("aerogami_dialogue_box");
var aerogami_dialogue_box_heading=document.getElementById("aerogami_dialogue_box_heading");
var aerogami_dialogue_box_photo=document.getElementById("aerogami_dialogue_box_photo");
var aerogami_dialogue_box_discription=document.getElementById("aerogami_dialogue_box_discription");
var aerogami_dialogue_box_register=document.getElementById("aerogami_dialogue_box_register");
var aerogami_dialogue_box_close=document.getElementById("aerogami_dialogue_box_close");
var aerogami_p=document.getElementById("main_1_tech_event_4_name_div_p");
console.log(window.scrollY);
console.log("poster");
if(aerogami_box.style.left==="-96vw"){
aerogami_box.style.animation="1s box_reveal forwards";
aerogami_dialogue_box_heading.style.animation="0.5s reveal forwards";aerogami_dialogue_box_heading.style.animationDelay="0.8s";
aerogami_dialogue_box_photo.style.animation="0.5s reveal forwards";aerogami_dialogue_box_photo.style.animationDelay="1s";
aerogami_dialogue_box_discription.style.animation="0.5s reveal forwards";aerogami_dialogue_box_discription.style.animationDelay="1.2s";
aerogami_dialogue_box_register.style.animation="0.5s reveal_scale forwards";aerogami_dialogue_box_register.style.animationDelay="1.2s";
aerogami_dialogue_box_close.style.animation="0.5s reveal_scale forwards";aerogami_dialogue_box_close.style.animationDelay="1.4s";
aerogami_p.style.animation="1s btn_anm";
window.scrollTo({top:0,behavior:"smooth"});
aerogami_box.style.left="6vw";
console.log(window.scrollY);
setTimeout(function(){if(window.scrollY===0){document.body.style.overflow="hidden"; console.log("reached settimeout");}},700);
}
}
function aerogami_close(cr){
var aerogami_box=document.getElementById("aerogami_dialogue_box");
var aerogami_dialogue_box_heading=document.getElementById("aerogami_dialogue_box_heading");
var aerogami_dialogue_box_photo=document.getElementById("aerogami_dialogue_box_photo");
var aerogami_dialogue_box_discription=document.getElementById("aerogami_dialogue_box_discription");
var aerogami_dialogue_box_register=document.getElementById("aerogami_dialogue_box_register");
var aerogami_dialogue_box_close=document.getElementById("aerogami_dialogue_box_close");
var aerogami_p=document.getElementById("main_1_tech_event_4_name_div_p");
if(aerogami_box.style.left==="6vw"){
aerogami_box.style.animation="1s fade_out_box forwards";
aerogami_dialogue_box_heading.style.animation="1s fade_out forwards";
aerogami_dialogue_box_photo.style.animation="1s fade_out forwards";
aerogami_dialogue_box_discription.style.animation="1s fade_out forwards";
aerogami_dialogue_box_register.style.animation="1s fade_out forwards";
aerogami_dialogue_box_close.style.animation="1s fade_out forwards";
aerogami_p.style.animation="none";
aerogami_box.style.left="-96vw";
document.body.style.overflow="scroll";
}
}
function carbon(){
var carbon_box=document.getElementById("carbon_box");
var carbon_box_heading=document.getElementById("carbon_box_heading");
var carbon_box_photo=document.getElementById("carbon_box_photo");
var carbon_box_discription=document.getElementById("carbon_box_discription");
var carbon_box_register=document.getElementById("carbon_box_register");
var carbon_box_close=document.getElementById("carbon_box_close");
var carbon_p=document.getElementById("main_2_event_1_fun_name_div_p");
console.log("poster");
if(carbon_box.style.left==="-96vw"){
carbon_box.style.animation="1s box_reveal forwards";
carbon_box_heading.style.animation="0.5s reveal forwards";carbon_box_heading.style.animationDelay="0.8s";
carbon_box_photo.style.animation="0.5s reveal forwards";carbon_box_photo.style.animationDelay="1s";
carbon_box_discription.style.animation="0.5s reveal forwards";carbon_box_discription.style.animationDelay="1.2s";
carbon_box_register.style.animation="0.5s reveal_scale forwards";carbon_box_register.style.animationDelay="1.2s";
carbon_box_close.style.animation="0.5s reveal_scale forwards";carbon_box_close.style.animationDelay="1.4s";
carbon_p.style.animation="1s btn_anm_specific_carbon";
carbon_box.style.left="6vw";
window.scrollTo({top:658,behavior:"smooth"});
console.log(window.scrollY);
setTimeout(function(){if(window.scrollY>500){document.body.style.overflow="hidden"; console.log("reached settimeout");}},700);
}
}
function carbon_close(){
var carbon_box=document.getElementById("carbon_box");
var carbon_box_heading=document.getElementById("carbon_box_heading");
var carbon_box_photo=document.getElementById("carbon_box_photo");
var carbon_box_discription=document.getElementById("carbon_box_discription");
var carbon_box_register=document.getElementById("carbon_box_register");
var carbon_box_close=document.getElementById("carbon_box_close");
var carbon_p=document.getElementById("main_2_event_1_fun_name_div_p");
if(carbon_box.style.left==="6vw"){
carbon_box.style.animation="1s fade_out_box forwards";
carbon_box_heading.style.animation="1s fade_out forwards";
carbon_box_photo.style.animation="1s fade_out forwards";
carbon_box_discription.style.animation="1s fade_out forwards";
carbon_box_register.style.animation="1s fade_out forwards";
carbon_box_close.style.animation="1s fade_out forwards";
carbon_p.style.animation="none";
carbon_box.style.left="-96vw";
document.body.style.overflow="scroll";
}
}
function brick(){
var brick_box=document.getElementById("brick_box");
var brick_box_heading=document.getElementById("brick_box_heading");
var brick_box_photo=document.getElementById("brick_box_photo");
var brick_box_discription=document.getElementById("brick_box_discription");
var brick_box_register=document.getElementById("brick_box_register");
var brick_box_close=document.getElementById("brick_box_close");
var brick_p=document.getElementById("main_2_event_2_fun_name_div_p");
console.log("poster");
if(brick_box.style.left==="-96vw"){
brick_box.style.animation="1s box_reveal forwards";
brick_box_heading.style.animation="0.5s reveal forwards";brick_box_heading.style.animationDelay="0.8s";
brick_box_photo.style.animation="0.5s reveal forwards";brick_box_photo.style.animationDelay="1s";
brick_box_discription.style.animation="0.5s reveal forwards";brick_box_discription.style.animationDelay="1.2s";
brick_box_register.style.animation="0.5s reveal_scale forwards";brick_box_register.style.animationDelay="1.2s";
brick_box_close.style.animation="0.5s reveal_scale forwards";brick_box_close.style.animationDelay="1.4s";
brick_p.style.animation="1s btn_anm_specific_carbon";
brick_box.style.left="6vw";
window.scrollTo({top:658,behavior:"smooth"});
console.log(window.scrollY);
setTimeout(function(){if(window.scrollY>500){document.body.style.overflow="hidden"; console.log("reached settimeout");}},700);
}