-
Notifications
You must be signed in to change notification settings - Fork 0
/
effi2.html
954 lines (916 loc) · 40.2 KB
/
effi2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Efficycle 2.0 | IITG RACING</title>
<link rel="shortcut icon" href="./public/img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./public/css/tailwind.css">
<link rel="stylesheet" href="./public/css/cursor.css">
<link rel="stylesheet" href="./public/css/hamburger.css">
<link rel="stylesheet" href="./public/css/scrollbar.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/nebula-hollow" rel="stylesheet">
<script>
function ShowAndHide() {
var x = document.getElementById("SectionName");
if (x.style.display == "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
<style>
* {
scroll-behavior: smooth;
}
::selection {
background-color: #BE1E2D;
color: white;
}
::-moz-selection {
background-color: #BE1E2D;
color: white;
}
@media screen and (min-width: 1025px) {
.clip-cars {
-webkit-clip-path: polygon(0% 0%, 100% 0%, 69% 100%, 0% 100%);
clip-path: polygon(0% 0%, 100% 0%, 69% 100%, 0% 100%);
}
.clip-members {
-webkit-clip-path: polygon(31% 0, 100% 0%, 100% 100%, 0% 100%);
clip-path: polygon(31% 0, 100% 0%, 100% 100%, 0% 100%);
}
}
.customunderline:hover {
text-underline-offset: 6px;
font-weight: 500;
}
.customnavi:hover {
letter-spacing: 0.23em;
font-weight: 800;
font-size: 18px;
}
#btn1,
#btn2,
#btn3,
#btn4 {
display: none;
}
#btn1:checked+label>svg {
transform: rotate(-180deg);
transition-duration: 1s;
}
#btn2:checked+label>svg {
transform: rotate(-180deg);
transition-duration: 1s;
}
#btn3:checked+label>svg {
transform: rotate(-180deg);
transition-duration: 1s;
}
#btn4:checked+label>svg {
transform: rotate(-180deg);
transition-duration: 1s;
}
.carousel-open:checked+.carousel-item {
position: static;
opacity: 100;
}
.carousel-item {
-webkit-transition: opacity 0.6s ease-out;
transition: opacity 0.6s ease-out;
}
#carousel-1:checked~.control-1,
#carousel-2:checked~.control-2,
#carousel-3:checked~.control-3 {
display: block;
}
.carousel-indicators {
list-style: none;
margin: 0;
padding: 0;
position: absolute;
bottom: 2%;
left: 0;
right: 0;
text-align: center;
z-index: 10;
}
#carousel-1:checked~.control-1~.carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked~.control-2~.carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked~.control-3~.carousel-indicators li:nth-child(3) .carousel-bullet {
color: #b02b2b;
}
#topBtn {
background-color: #BE1E2D;
}
#topBtn:hover{
opacity: 0.9;
}
</style>
</head>
<body>
<div class="cursor hidden lg:block"></div>
<div class="cursor-follower hidden lg:block"></div>
<button onclick="reachTop()"
class="text-white px-1 py-1 rounded-full focus:outline-none fixed z-50 bottom-10 right-10 hidden"
id="topBtn">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M14.707 12.707a1 1 0 01-1.414 0L10 9.414l-3.293 3.293a1 1 0 01-1.414-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 010 1.414z"
clip-rule="evenodd" />
</svg>
</button>
<nav
class="bg-black text-white hidden lg:block fixed w-screen z-50"
style="font-family: nebula; overflow-y: hidden"
>
<div class="grid grid-cols-3">
<div class="col-span-2">
<ul class="list-none font-normal">
<li class="float-left pl-0 lg:pl-9">
<a href="index.html"
><img
src="./public/img/iitgracing.png"
alt="IITG RACING"
id="logo"
/></a>
</li>
<li
class="
float-left
pl-0
lg:pl-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="carshover"
style="margin-left: -5px"
>
<a href="ourcars.html">CARS</a>
</li>
<li
class="
float-left
pl-0
lg:pl-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="competitionshover"
style="margin-left: -5px"
>
<a href="competitions.html">COMPETITIONS</a>
</li>
<li
class="
float-left
pl-0
lg:pl-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="newshover"
>
<a href="news.html" style="margin-left: -5px">NEWS</a>
</li>
<li
class="
float-left
pl-0
lg:pl-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="teamhover"
style="margin-left: -5px"
>
TEAM
</li>
<li
class="
float-left
pl-0
lg:pl-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="newshover"
>
<a href="event.html" style="margin-left: -5px">EVENTS</a>
</li>
</ul>
</div>
<div class="ml-auto">
<ul class="list-none font-normal">
<li
class="
float-left
pr-0
lg:pr-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="sponsorshover"
style="margin-left: 0px"
>
<a href="sponsors.html">SPONSORS</a>
</li>
<li
class="
float-left
pr-0
lg:pr-10
tracking-widest
py-8
hover:underline
customunderline
text-md
xl:text-lg
"
id="contacthover"
style="margin-left: -5px"
>
<a href="contact.html">CONTACT US</a>
</li>
</ul>
</div>
</div>
<div
class="grid grid-rows-2 hidden"
id="carsMenu"
style="padding-bottom: 0px"
>
<div>
<ul class="list-none pl-40">
<li class="float-left pl-10 w-auto">
<ul class="list-none pl-4">
<li class="customnavi py-2" id="formulaHover">
FORMULA STUDENT
</li>
<li class="customnavi py-2" id="effiHover">EFFICYCLE</li>
<li class="customnavi py-2" id="bajaHover">BAJA</li>
<li class="customnavi py-2" id="conceptHover">CONCEPT</li>
</ul>
</li>
<li class="float-left pl-36">
<ul class="list-none hidden pl-9" id="formulaOptions">
<li class="customnavi py-2" id="originHover">
<a href="origin.html">ORIGIN</a>
</li>
<li class="customnavi py-2" id="tachyon1Hover">
<a href="tachyon1.html">TACHYON 1.0</a>
</li>
<li class="customnavi py-2" id="tachyon2Hover">
<a href="tachyon2.html">TACHYON 2.0</a>
</li>
<li class="customnavi py-2" id="tachyon3Hover">
<a href="tachyon3.html">TACHYON 3.0</a>
</li>
</ul>
<ul class="list-none hidden pl-9" id="effiOptions">
<li class="customnavi py-2" id="effi1Hover">
<a href="effi1.html">EFFICYCLE 1.0</a>
</li>
<li class="customnavi py-2" id="effi2Hover">
<a href="effi2.html">EFFICYCLE 2.0</a>
</li>
<li class="customnavi py-2" id="effi3Hover">
<a href="effi3.html">EFFICYCLE 3.0</a>
</li>
<li class="customnavi py-2" id="effi4Hover">
<a href="effi4.html">EFFICYCLE 4.0</a>
</li>
</ul>
<ul class="list-none pl-9 hidden" id="bajaOptions">
<li class="customnavi py-2" id="srijanHover">
<a href="baja.html">SRIJAN</a>
</li>
</ul>
<ul class="list-none pl-9 hidden" id="conceptOptions">
<li class="customnavi py-2" id="conceptAHover">
<a href="conceptA.html">CONCEPT A</a>
</li>
<li class="customnavi py-2" id="visionfHover">
<a href="visionf.html">VISION F</a>
</li>
</ul>
</li>
<li class="h-40">
<a href="origin.html">
<center>
<img src="./public/img/Navpics/Origin.png" alt="ORIGIN"
class="h- xl:h-72 z-10 absolute hidden xl:right-14" id="originCar" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="tachyon1.html">
<center>
<img src="./public/img/Navpics/Tachyon 1.0.png" alt="TACHYON1.0"
class="h-44 xl:right-14 xl:h-80 z-10 absolute hidden" id="tachyon1Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="tachyon2.html">
<center>
<img src="./public/img/Navpics/Tachyon 2.0.png" alt="TACHYON2.0"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="tachyon2Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="tachyon3.html">
<center>
<img src="./public/img/Navpics/tachyon3.png" alt="TACHYON3.0"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="tachyon3Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="effi1.html">
<center>
<img src="./public/img/Navpics/Effi 1.png" alt="EFFICYCLE1.0"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="effi1Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="effi2.html">
<center>
<img src="./public/img/Navpics/Effi 2.png" alt="EFFICYCLE2.0"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="effi2Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="effi3.html">
<center>
<img src="./public/img/Cars-Shadows/effi 3.png" alt="EFFICYCLE3.0"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="effi3Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="effi4.html">
<center>
<img src="./public/img/Navpics/Effi4.0.png" alt="EFFICYCLE4.0"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="effi4Car" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="baja.html">
<center>
<img src="./public/img/Navpics/Baja 2012.png" alt="BAJA"
class="h-44 xl:h-60 xl:right-32 z-10 absolute hidden" id="srijanCar" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="conceptA.html">
<center>
<img src="./public/img/Navpics/conceptA.png" alt="CONCEPT A"
class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden" id="conceptACar" data-tilt data-tilt-scale="1"
data-tilt-axis="x" data-tilt-inverted="true" data-tilt-max="10" data-tilt-glare
data-tilt-max-glare="0.8" />
</center>
</a>
<a href="visionf.html">
<center>
<img src="./public/img/nav_img.png" alt="VISION F" class="h-40 xl:h-60 xl:right-14 z-10 absolute hidden"
id="visionfCar" data-tilt data-tilt-scale="1" data-tilt-axis="x" data-tilt-inverted="true"
data-tilt-max="10" data-tilt-glare data-tilt-max-glare="0.8" />
</center>
</a>
</li>
</ul>
</div>
<div class="mx-auto mt-36 hidden" id="detailsMenu">
<ul class="list-none" style="font-family: poppins">
<li class="px-12 float-left h-20">
<span id="f11">TOP SPEED</span><br />
<span class="text-4xl font-semibold" id="f1"></span>
</li>
<li class="px-12 float-left h-20">
<span id="f22">MAX POWER</span><br />
<span class="text-4xl font-semibold" id="f2"></span>
</li>
<li class="px-12 float-left h-20">
<span id="f33">MAX TORQUE</span><br />
<span class="text-4xl font-semibold" id="f3"></span>
</li>
</ul>
</div>
<div class="mx-auto text-black select-none" id="hideDon">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nam
magnam aperiam harum, ipsum optio aliquam alias sit corrupti minus
numquam hic ea veniam eos, ratione possimus, fuga placeat porro.
</div>
</div>
<div class="px-72 hidden" id="compMenu">
<ul class="list-none pl-6">
<li class="py-1 customnavi">
<a href="competitions.html#section1">FORMULA STUDENT</a>
</li>
<li class="py-1 customnavi">
<a href="competitions.html#section2">EFFICYCLE</a>
</li>
<li class="pb-4 py-1 customnavi">
<a href="competitions.html#section3">BAJA</a>
</li>
</ul>
</div>
<div class="pl-96 hidden" id="teamsMenu">
<ul class="list-none pl-52 lg:pl-64 pb-5">
<li class="customnavi"><a href="team21_22.html">2021-22</a></li>
<li class="customnavi"><a href="team20_21.html">2020-21</a></li>
<li class="customnavi"><a href="alumni.html">ALUMNI</a></li>
</ul>
</div>
</nav>
<nav class="bg-black lg:hidden text-white" style="font-family: nebula">
<div class="grid grid-cols-2">
<div class="px-5 focus:outline-none">
<a href="index.html"
><img
src="./public/img/iitgracing.png"
alt="IITG RACING"
title="IITG RACING"
class="h-16 focus:outline-none"
/></a>
</div>
<div class="justify-end flex px-10" id="hamburger">
<button class="text-white focus:outline-none">
<span class="bar w-6 h-0.5 bg-white block my-1"></span>
<span class="bar w-6 h-0.5 bg-white block my-1"></span>
<span class="bar w-6 h-0.5 bg-white block my-1"></span>
</button>
</div>
</div>
<div class="bg-black px-9 py-1 hidden" id="navmenu">
<ul class="list-none text-lg">
<li class="py-4 grid grid-cols-2" id="carsBtn">
<div>CARS</div>
<div class="ml-auto">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
</svg>
</div>
</li>
<li class="py-4 grid grid-cols-2" id="competitionsBtn">
<div>COMPETITIONS</div>
<div class="ml-auto">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
</svg>
</div>
</li>
<li class="py-4"><a href="news.html">NEWS</a></li>
<li class="py-4 grid grid-cols-2" id="teamsBtn">
<div>TEAM</div>
<div class="ml-auto">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
</svg>
</div>
</li>
<li class="py-4"><a href="event.html">EVENTS</a></li>
<li class="py-4"><a href="sponsors.html">SPONSORS</a></li>
<li class="py-4"><a href="contact.html">CONTACT US</a></li>
</ul>
</div>
<div
class="bg-black px-9 border-t-2 border-gray-500 hidden"
id="carsmenu"
>
<ul class="list-none text-lg">
<li class="py-4" id="backToMainFromCars">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
clip-rule="evenodd"
/>
</svg>
</li>
<li class="py-4 grid grid-cols-3">
<div id="studentAccoBtn" class="col-span-2">FORMULA STUDENT</div>
<div class="ml-auto">
<input type="checkbox" id="btn1" disabled />
<label for="btn1" class="btn">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
/>
</svg>
</label>
</div>
<ul
class="list-none text-sm tracking-widest py-4 hid"
id="studentAccoDiv"
>
<li class="py-1 w-screen"><a href="origin.html">ORIGIN</a></li>
<li class="py-1 w-screen">
<a href="tachyon1.html">TACHYON 1.0</a>
</li>
<li class="py-1 w-screen">
<a href="tachyon2.html">TACHYON 2.0</a>
</li>
<li class="py-1 w-screen"><a href="tachyon3.html">TACHYON 3.0</a></li>
</ul>
</li>
<li class="py-4 grid grid-cols-2">
<div id="effiAccoBtn">EFFICYCLE</div>
<div class="ml-auto">
<input type="checkbox" id="btn2" disabled />
<label for="btn2" class="btn">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
/>
</svg>
</label>
</div>
<ul
class="list-none text-sm tracking-widest py-4 hid"
id="effiAccoDiv"
>
<li class="py-1 w-screen">
<a href="effi1.html">EFFICYCLE 1.0</a>
</li>
<li class="py-1 w-screen">
<a href="effi2.html">EFFICYCLE 2.0</a>
</li>
<li class="py-1 w-screen">
<a href="effi3.html">EFFICYCLE 3.0</a>
</li>
<li class="py-1 w-screen">
<a href="effi4.html">EFFICYCLE 4.0</a>
</li>
</ul>
</li>
<li class="py-4 grid grid-cols-2">
<div id="bajaAccoBtn">BAJA</div>
<div class="ml-auto">
<input type="checkbox" id="btn3" disabled />
<label for="btn3" class="btn">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
/>
</svg>
</label>
</div>
<ul
class="list-none text-sm tracking-widest py-4 hid"
id="bajaAccoDiv"
>
<li class="py-1"><a href="baja.html">SRIJAN</a></li>
</ul>
</li>
<li class="py-4 grid grid-cols-2">
<div id="conceptAccoBtn">CONCEPT</div>
<div class="ml-auto">
<input type="checkbox" id="btn4" disabled />
<label for="btn4" class="btn">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
/>
</svg>
</label>
</div>
<ul
class="list-none text-sm tracking-widest py-4 hid"
id="conceptAccoDiv"
>
<li class="py-1"><a href="conceptA.html">CONCEPT A</a></li>
<li class="py-1"><a href="visionf.html">VISION F</a></li>
</ul>
</li>
</ul>
</div>
<div class="bg-black px-9 py-1 hidden" id="competitionsmenu">
<ul class="list-none text-lg">
<li class="py-4" id="backToMainFromComp">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
clip-rule="evenodd"
/>
</svg>
</li>
<li class="py-4"><a href="competitions.html#section1">FORMULA STUDENT</a></li>
<li class="py-4"><a href="competitions.html#section2">EFFICYCLE</a></li>
<li class="py-4"><a href="competitions.html#section3">BAJA</a></li>
</ul>
</div>
<div class="bg-black px-9 py-1 hidden" id="teamsmenu">
<ul class="list-none text-lg">
<li class="py-4" id="backToMainFromTeam">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
clip-rule="evenodd"
/>
</svg>
</li>
<li class="py-4"><a href="team21_22.html">2021-22</a></li>
<li class="py-4"><a href="team20_21.html">2020-21</a></li>
<li class="py-4"><a href="alumni.html">ALUMNI</a></li>
</ul>
</div>
<div
class="bg-black fixed w-full text-black h-screen hidden"
id="hiddenarea"
style="margin-top: -10px"
></div>
</nav>
<div class="h-20 hidden lg:block"></div>
<div style="padding-top: 0.007934336525307vh;" class="w-full" style="position: relative; z-index: 99;">
<img src="./public/img_cars/effi2_5b.jpg" alt="" style="height: 92vh;" class="object-cover bg-black w-full h-screen">
<div style="position: absolute; top: 32.83173734610123vh; font-family: nebula;" class="lg:text-8xl md:text-7xl sm:text-5xl text-4xl text-white w-100 leading-tight" id="head-title">
<span class="pl-12 lg:pl-16">EFFICYCLE 2.0</span>
<div id="intro"></div>
</div>
<div class="text-white text-2xl absolute bottom-3" style="left: 50%; transform: translate(-50%, -50%);" id="head-down">
<a onclick="topclick()">
<svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-32" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
</a>
</div>
</div>
<div class="w-full lg:max-w-full lg:flex py-16">
<div class="bg-white rounded-b lg:rounded-b-none lg:rounded-r p-4 flex flex-col leading-normal my-auto px-12">
<div class="mb-8">
<p class="text-gray-700 text-base" style="font-family: poppins;">This vehicle competed in Efficycle 2014 and had a very good start in
Technical Inspection and the Dynamic Round. We suffered an unfortunate mechanical failure a few
minutes in the final race and that proved fatal for the ranking of this Efficycle, which finally
stood at 13th out of the 120 teams who qualified for the final round.</p>
</div>
</div>
<div class="h-96 w-full bg-cover bg-no-repeat bg-top rounded-t lg:rounded-t-none lg:rounded-1 text-center clip-members"
style="background-image: url('./public/img_cars/effi2_2.jpg'); z-index: -1;" title="Our Team">
</div>
</div>
<div class="w-full lg:max-w-full lg:flex relative object-cover">
<img src="./public/img/cargallery/effi2.png" style="width:80%;left:10%" alt="" class="relative w-full">
<!-- <div class=""ONCLICK="ShowAndHide()"> -->
<div class="absolute"style="bottom:55%;left:30%" ONCLICK="ShowAndHide()">
<img class="absolute "style="width:.8vw;top:5%;left:2%" src="./public/img/Ellipse 7.png" class="" alt="">
<img style="width:1.3vw" src="./public/img/Ellipse 8.png" alt="">
<div class="w-full text-white relative " style="font-family: nebula;font-size:1.5vw;left:30%;bottom:2vw">BATTERY</div>
<div class="absolute" style="display: none;top:0;" id="SectionName">
<img class="absolute "style="width:9%"src="./public/img/circle-cropped.png" alt="">
<img class=" relative "style="width:15vw;top:1vw;left:.8vw;max-width: max-content"src="./public/img/Vector 1.png" alt="">
<div class="relative"style="bottom:2vw;left:80%">
<div class="text-white " style="font-family: poppins;font-size:1vw">12 V</div>
<div class="text-white " style="font-family: poppins;font-size:1vw">4.60nm</div>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-2 gap-4 justify-items-center ml-6 mr-6">
<div class="">
<div class="text-base mt-6" style="font-family: nebula;">BATTERY VOLTAGE</div>
<div class="font-bold" style="font-family: Poppins;font-size:2vw">12 V</div>
</div>
<div class="">
<div class=" text-base mt-6" style="font-family: nebula">MAX TORQUE</div>
<div class="font-bold" style="font-family: Poppins;font-size:2vw">4.6NM</div>
</div>
</div>
<div class="w-full lg:max-w-full lg:flex py-16">
<div class="h-96 w-full bg-cover bg-left rounded-t lg:rounded-t-none lg:rounded-1 text-center clip-cars "
style="background-image: url('./public/img_cars/effi2_4.jpg'); z-index: -1;" title="Our Cars">
</div>
<div class="bg-white rounded-b lg:rounded-b-none lg:rounded-r p-4 flex flex-col leading-normal my-auto px-12">
<div class="mb-8">
<p class="text-gray-700 text-base" style="font-family: poppins;">This trike has a Tadpole: Seat by seat configuration with its total
weight being 314 kgs. It is driven electrically by a 12V battery which delivers a maximum torque of
4.6 Nm. This vehicle performed well in all matrices, and had it not been for the mechanical failure
we suffered in the final race we might as well have ended with a podium finish.</p>
</div>
</div>
</div>
<div class="carousel relative shadow-2xl bg-white">
<div class="carousel-inner relative overflow-hidden w-full">
<!--Slide 1-->
<input class="carousel-open" type="radio" id="carousel-1" name="carousel" aria-hidden="true" hidden=""
checked="checked">
<div class="carousel-item absolute opacity-0" style="height:80vh;">
<img class="d-block w-full h-full object-center object-contain bg-black" src="./public/img_cars/effi2_5b.jpg"
alt="First slide">
</div>
<label for="carousel-3" class="prev control-1 w-10 h-10 ml-2 md:ml-10 absolute hidden text-3xl font-bold text-black hover:text-white rounded-full bg-white hover:bg-red-700 leading-tight text-center z-10 inset-y-0 left-0 my-auto">‹</label>
<label for="carousel-2" class="next control-1 w-10 h-10 mr-2 md:mr-10 absolute hidden text-3xl font-bold text-black hover:text-white rounded-full bg-white hover:bg-red-700 leading-tight text-center z-10 inset-y-0 right-0 my-auto">›</label>
<!--Slide 2-->
<input class="carousel-open" type="radio" id="carousel-2" name="carousel" aria-hidden="true" hidden="">
<div class="carousel-item absolute opacity-0" style="height:80vh;">
<img class="d-block w-full h-full object-contain bg-black" src="./public/img_cars/effi2_5d.jpg"
alt="First slide">
</div>
<label for="carousel-1" class="prev control-2 w-10 h-10 ml-2 md:ml-10 absolute hidden text-3xl font-bold text-black hover:text-white rounded-full bg-white hover:bg-red-700 leading-tight text-center z-10 inset-y-0 left-0 my-auto">‹</label>
<label for="carousel-3" class="next control-2 w-10 h-10 mr-2 md:mr-10 absolute hidden text-3xl font-bold text-black hover:text-white rounded-full bg-white hover:bg-red-700 leading-tight text-center z-10 inset-y-0 right-0 my-auto">›</label>
<!--Slide 3-->
<input class="carousel-open" type="radio" id="carousel-3" name="carousel" aria-hidden="true" hidden="">
<div class="carousel-item absolute opacity-0" style="height:80vh;">
<img class="d-block w-full h-full object-center object-contain bg-black" src="./public/img_cars/effi2_5e.jpg"
alt="First slide">
</div>
<label for="carousel-2" class="prev control-3 w-10 h-10 ml-2 md:ml-10 absolute hidden text-3xl font-bold text-black hover:text-white rounded-full bg-white hover:bg-red-700 leading-tight text-center z-10 inset-y-0 left-0 my-auto">‹</label>
<label for="carousel-1" class="next control-3 w-10 h-10 mr-2 md:mr-10 absolute hidden text-3xl font-bold text-black hover:text-white rounded-full bg-white hover:bg-red-700 leading-tight text-center z-10 inset-y-0 right-0 my-auto">›</label>
<!-- Add additional indicators for each slide-->
<ol class="carousel-indicators">
<li class="inline-block mr-3">
<label for="carousel-1"
class="carousel-bullet cursor-pointer block text-4xl text-white hover:text-blue-700">•</label>
</li>
<li class="inline-block mr-3">
<label for="carousel-2"
class="carousel-bullet cursor-pointer block text-4xl text-white hover:text-blue-700">•</label>
</li>
<li class="inline-block mr-3">
<label for="carousel-3"
class="carousel-bullet cursor-pointer block text-4xl text-white hover:text-blue-700">•</label>
</li>
</ol>
</div>
<footer class="bg-black text-white" style="font-family: poppins;">
<div class="grid grid-cols-1 grid-rows-3 lg:grid-cols-3 lg:grid-rows-1 pt-16 gap-5 px-10">
<div class="grid grid-flow-col grid-cols-2 place-items-center">
<div>
<img src="./public/img/iitgracing.png" alt="IITG RACING" title="IITG RACING">
</div>
<div class="text-sm" style="margin-left: -2vw;">
<span class="font-bold">IIT GUWAHATI RACING</span><br><br>
New SAC<br>
Indian Institute of Technology Guwahati<br>
Guwahati 781039<br>
Assam, India
</div>
</div>
<div class="grid grid-cols-2 grid-rows-3 lg:grid-cols-3 text-base md:text-sm px-4 md:pl-24 lg:pl-0 gap-x-20">
<div class="order-1 pl-2 ml-1"><a href="index.html">HOME</a></div>
<div class="lg:order-2 order-5 pl-2 ml-1"><a href="ourcars.html">CARS</a></div>
<div class="lg:order-3 order-4 pl-2 ml-1 md:ml-3 lg:ml-1"><a href="sponsors.html">SPONSORS</a></div>
<div class="lg:order-4 order-3 pl-2 ml-1"><a href="competitions.html">COMPETITIONS</a></div>
<div class="lg:order-5 order-2 pl-2 ml-2 md:ml-3 lg:ml-1"><a href="team21_22.html">TEAM</a></div>
<div class="order-6 pl-2 ml-1 md:ml-3 lg:ml-1"><a href="contact.html">CONTACT</a></div>
</div>
<div class="grid grid-rows-2 gap-0 lg:gap-10">
<div class="flex flex-row-reverse mx-auto lg:mx-0">
<a href="https://www.linkedin.com/company/iitgracing/" target="_blank"><img src="./public/img/linkedin.png"
title="Our LinkedIn page" class="mx-5 w-7.5 h-6"></a>
<a href="https://www.youtube.com/channel/UCv6DkzU0C6Fo2Y1bK56y0ew" target="_blank"><img src="./public/img/yt.png"
title="Our YouTube page" class="mx-5 w-7.5 h-6"></a>
<a href="https://www.instagram.com/iitg.racing/" target="_blank"><img src="./public/img/insta.png"
title="Our Instagram page" class="mx-5 w-7.5 h-6"></a>
<a href="https://www.facebook.com/iitg.racing/" target="_blank"><img src="./public/img/fb.png"
title="Our Facebook page" class="mx-5 w-7.5 h-6"></a>
</div>
<div class="flex flex-row-reverse mx-auto lg:mx-0">
<a href="https://www.iitg.ac.in/" target="_blank"><img src="./public/img/ft3.png" alt="" class="h-10 w-12 mx-2"></a>
<a href="https://www.iitg.ac.in/stud/gymkhana/technical/index.html" target="_blank"><img src="./public/img/ft2.png"
alt="" class="h-10 w-12 mx-2"></a>
<a href="https://www.iitg.ac.in/mech/" target="_blank"><img src="./public/img/ft1.png" alt=""
class="h-10 w-12 mx-2"></a>
</div>
</div>
</div>
<div class="text-center text-xs pb-5 mx-auto">
Copyright © Since 2012 - IITG RACING WEB-OPS. All rights reserved.
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script>
var toTop = document.getElementById("topBtn");
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
toTop.style.display = "block";
}
else {
toTop.style.display = "none";
}
}
function reachTop() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
function topclick() {
window.scrollBy(0, 700);
}
</script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js'></script>
<script src="forcursor.js"></script>
<script src="vanilla-tilt.js"></script>
<script src="desktopnavbar.js"></script>
<script src="mobilenavbar.js"></script>
<script src="cscursor.js"></script>
</body>
</html>