-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1275 lines (1147 loc) · 69.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" prefix="og: http://ogp.me/ns#" class="js flexbox flexboxlegacy canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths browser-chrome ready"
style="pointer-events: auto;">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132328529-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-132328529-1');
</script>
<!-- push notifications -->
<link rel="manifest" href="/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function () {
OneSignal.init({
appId: "515c9bca-aa40-41ba-a19a-116106aff753",
});
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=0, initial-scale=1.0">
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta name="format-detection" content="telephone=no">
<link rel="alternate" hreflang="it" href="https://arhn.co.in" />
<link rel="canonical" href="https://arhn.co.in" />
<title>Aarohan 2019 | The Annual Techno-Management Fest</title>
<meta name="description" content="Aarohan is the official techno-management fest of National
Institute of Technology, Durgapur organised by Centre for Cognitive Activities(CCA)" />
<meta name="keywords" content="aarohan, 2019, 2k19, nit, nitd, nitdgp, official techno-management fest,
fest, festival, science, engineering, techno-management, durgapur, National Institute of Technology, Durgapur,
Centre for Cognitive Activities(CCA), Aarohan is the official techno-management fest of National
Institute of Technology, Durgapur organised by Centre for Cognitive Activities(CCA), wdct, web, design, creative team,
coding, development, web development, research and development, e cell, entrepreneurship, R&D, robotics, robo cell,
robowars, hackathon, events, core cell, management, official, best fest of nitd, aarohan nites, 2nd largest, eastern
India, 2nd largest fest in eastern India, gaming, electronics, computer science events, mechatronics" />
<meta name="author" content="Web, Design and Creative Team(WDCT), Center for Cognitive Activities(CCA),
National Institute of Technology, Durgapur(NIT Dgp)" />
<meta name="robots" content="index,follow" />
<link rel="canonical" href="https://arhn.co.in" />
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="Aarohan 2019">
<meta itemprop="description" content="Aarohan is the official techno-management fest of National
Institute of Technology, Durgapur organised by Centre for Cognitive Activities(CCA)">
<meta itemprop="image" content="https://arhn.co.in/img/landing-header.png">
<!-- Schema.org markup for Google+ -->
<!-- ============og tags=========== -->
<meta property="og:locale" content="it_IT" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Aarohan 2019" />
<meta property="og:description" content="Aarohan is the official techno-management fest of
National Institute of Technology, Durgapur organised by Centre for Cognitive Activities(CCA)" />
<meta property="og:url" content="https://arhn.co.in" />
<meta property="og:site_name" content="Aarohan 2019" />
<meta property="og:image" content="https://arhn.co.in/img/landing-header.png" />
<meta property="og:image:secure_url" content="https://arhn.co.in/img/landing-header.png" />
<meta property="fb:admins" content="448633928526715" />
<!-- ============og tags=========== -->
<meta name="theme-color" content="#151e3d" />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@aarohan_nitdgp">
<meta name="twitter:title" content="Aarohan 2019">
<meta name="twitter:description" content="Aarohan is the official techno-management fest of
National Institute of Technology, Durgapur organised by Centre for Cognitive Activities(CCA)">
<meta name="twitter:creator" content="@aarohan_nitdgp">
<!-- Twitter summary card with large image must be at least 280x150px -->
<meta name="twitter:image" content="https://arhn.co.in/img/landing-header.png">
<!-- Twitter Card data -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/krt7jsv.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- landing -->
<link rel="stylesheet" href="css/index.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/ScrollMagic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TimelineMax.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/debug.addIndicators.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/animation.gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<!-- landing drag-->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js"></script>
<!-- font -->
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,700,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bitter" rel="stylesheet">
<!-- icon -->
<link rel="icon" href="./img/Aarohan-Tab-Logo" type="image/gif" sizes="16x16">
<!-- Chi reg animation -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<style>
#onesignal-popover-container {
z-index: 55;
}
</style>
</head>
<body>
<div class="cursor-wrapper" style="transform: matrix(1, 0, 0, 1, 966, 167); opacity: 1;z-index: 9999">
<div class="cursor" style="z-index:9999"></div>
</div>
<!-- loader -->
<div id="loader" class="loader">
<img class="loader_img" src="./img/loader/loader.gif">
</div>
<div id="root">
<div id="wrapper">
<section class="section about">
<div id="landing_container">
<!-- landing -->
<section id="landing">
<div class="patron">
<img src="./img/patron.png">
</div>
<div class="patron-black">
<img src="./img/patron_black.png">
</div>
<div class="nitd">
<img src="./img/nitdlogo_white.png">
<h1 style="display:inline">&</h1>
</div>
<div class="nitd-black">
<img src="./img/nitdlogo_black.png">
<h1 style="display:inline">&</h1>
</div>
<div class="winkies">
<img style="padding-top: 1vh" src="./img/winkies.png">
<h1>presents</h1>
</div>
<div class="section_wrap" style="display: flex">
<div class="view view-before">
<div class="wrapper-before">
<div class="birdimg">
<div class="cloud1"> <img style="width: 13vw" src="./img/Cloud-1.png" alt=""></div>
<div class="cloud2"> <img style="width: 13vw" src="./img/Cloud-2.png" alt=""></div>
<div class="cloud3"> <img style="width: 13vw" src="./img/Cloud-3.png" alt=""></div>
<img class="arhn_landing gif" src="./img/LP.gif" />
</div>
</div>
</div>
<div id="my_resizable" class="view view-after" style="position: absolute">
<div class="wrapper-after">
<div class="birdimg">
<img class="arhn_landing" src="./img/landing-header.png" />
</div>
</div>
</div>
</div>
<div class="dates">
<div id="date"> 07 08 09 10</span></div>
<div id="month"> <span>FEBRUARY 2019</span></div>
</div>
<div class="container-fluid " style="position: absolute;bottom: 15%;max-width: 100vw;padding-left: 10vw;padding-right: 10vw">
<div class="row text-animate">
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/power_sponsor.jpg" />
<h1 class="sponsor_post1">Power Sponsor</h1>
</div>
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/paytm.jpg" />
<h1 class="sponsor_post1">Transaction Partner</h1>
</div>
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/junction.png" />
<h1 class="sponsor_post1">Shopping Mall Partner</h1>
</div>
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/gati.jpg" />
<h1 class="sponsor_post1">Logistics Partner</h1>
</div>
</div>
<div class="row text-animate">
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/movie.png" />
<h1 class="sponsor_post1">Movie Theatre Partner</h1>
</div>
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/happy-culture.jpg" />
<h1 class="sponsor_post1">Gift Partner</h1>
</div>
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/knowledege_partner.png" />
<h1 class="sponsor_post1">Knowledge Partner</h1>
</div>
<div class="new_sponsors_box col-lg-3 col-sm-6 col-xs-6"><img class="img_holder img-responsive thumbnail"
src="./img/movie_theatre.jpg" />
<h1 class="sponsor_post1">Movie Theatre Partner</h1>
</div>
</div>
</div>
</section>
<!-- about us -->
<div class="aboutcontainer">
<div id="trigger1" class="aboutus image-animation">
<div class="image-animation__img" style="opacity: 0; position: absolute; top: 0px;">
<figure class="fit-wrapper">
<img class="lazy loaded" width="1920" height="1200" alt="La maschera e l'incubo"
src="img/chii-about-us.jpg" style="">
</figure>
<!--<h2 class="about-heading"> ABOUT US</h2>-->
<div id="about-wrapper">
<h1 id="animate1" class="ml13 rightshift">About Us</h1>
</div>
</div>
</div>
</div>
</div>
<div id="trigger2" style="background-color: white; padding-bottom: 10px" class="about__info content-info">
<div class="container-fluid" style="padding: 10% 0">
<div class="about__info-image dist" style="margin-bottom: 100px !important">
<div class="row">
<div class="col-sm-6">
<div class="image-wrapper" style="padding-bottom: 120.5%">
<figure class="about-img fit-wrapper animate-image animate-from-left animate-color-red">
<img class="lazy loaded" width="600" height="843" alt="La maschera e l'incubo"
src="img/chii-about-us.jpg" style=""> </figure>
</div>
</div>
<div class="col-sm-6">
<div class="image-info text-animate" style="padding-right:6vw;opacity: 0;margin-top: 0px; transform: translate(0%, 40%) matrix(1, 0, 0, 1, 0, 0);">
<p>Organised by the Centre for Cognitive Activities, Aarohan is the Annual
Techno-Management fest of NIT Durgapur and the second largest of its kind
in eastern India. It is made possible by a group of enthusiastic students
working passionately under the supervision of our highly responsible
faculties. This festival has been constantly encouraging the students to
showcase their talents, explore their creative limits, experiment and have
fun by taking part in fun and creative events. Aarohan has been a pioneer
in the culture of celebrating science, technology and innovation through
festivities. With more than 40 events covering all genres of technology and
management, Aarohan brings some of the best solutions of mankind’s
modern-day problems to the fore.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- events -->
<section id="trigger3" class="section1 events">
<div class="about__animation image-animation-reverse">
<div class="image-animation__img" style="opacity: 0; transform: matrix(3, 0, 0, 3, 0, 0); position: absolute; top: 0px;">
<figure class="fit-wrapper">
<img class="lazy loaded" width="1920" height="1200" alt="La maschera e l'incubo" src="img/Events-&-Workshops.jpg"
style="">
</figure>
<div id="about-wrapper2">
<h1 id="animate1" class="heading postop">Events <br> & Workshops</h1>
</div>
</div>
</div>
<div class="events_content">
<!-- event1-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<a href="techelon.html" target="_self">
<img src="img/Techelon-Icon.png" alt="">
</a>
</div>
</a>
<div class="homeworksplat">
<div class="fluidbig" style="background: #ffffff"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Techelon</h1>
<p>Conceive | Create | Conquer</p>
<br>
<a href="techelon.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
</div>
<!-- event2-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Eureka</h1>
<p>Dream | Dare | Define</p>
<br>
<a href="eureka.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<a href="eureka.html" target="_self">
<img src="img/eureka.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight"></div>
</div>
</div>
</div>
<!-- event3-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<a href="strategist.html" target="_self">
<img src="img/Strategist-Icon.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Strategist</h1>
<p>Manoeuvre Every Move</p>
<br>
<a href="strategist.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
</div>
<!-- event4-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate ">
<h1>Battle of Bytes</h1>
<p>The Online Mania</p>
<br>
<a href="battleofbytes.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<a href="battleofbytes.html" target="_self">
<img src="img/Battle-of-Bytes.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight " style="background-color:white"></div>
</div>
</div>
</div>
<!-- event5-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<a href="overnightgaming.html" target="_self">
<img src="img/overnight_gaming.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Overnight Gaming</h1>
<p>Aim | Shoot | Score</p>
<br>
<a href="overnightgaming.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
</div>
<!-- event6-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Armageddon</h1>
<p>The Robotics Championship</p>
<br>
<a href="armageddon.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<a href="armageddon.html" target="_self">
<img src="img/armageddon.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight"></div>
</div>
</div>
</div>
<!-- event7-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<a href="exquizzit.html" target="_self">
<img src="img/exquizzit.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig" style="background: #ffffff"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Exquizzit</h1>
<p>Invigorate Those Gray Cells</p>
<br>
<a href="exquizzit.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
</div>
<!-- event8-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Apostrophe</h1>
<p>Think, Before You Ink</p>
<br>
<a href="apostrophe.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<a href="apostrophe.html" target="_self">
<img src="img/apostrophe.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight"></div>
</div>
</div>
</div>
<!-- event9-->
<div class="row event_box">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<a href="techmela.html" target="_self">
<img src="img/TechMela-Icon.png" alt="">
</a>
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>TechMela</h1>
<p>The annual science exhibition</p>
<br>
<a href="techmela.html" target="_self"><button style="background-color: white;border-width: 0px;border-radius: 10px;">Know
More</button></a>
</div>
</div>
<h1 class="workshop_heading">WORKSHOPS</h1>
<!-- workshop 1-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<img src="img/Workshop-Humanoid-Robot.png" alt="">
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div style="margin-top: 0" class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Humanoid robot workshop</h1>
<p>
Humanoid robotics is an emerging and challenging research field, which has received
significant attention during the past years and will continue to play a central role in
robotics research and in many applications of the 21st century. Regardless of the
application area, one of the common problems tackled in humanoid robotics is the
understanding of human-like information processing and the underlying mechanisms of the
human brain in dealing with the real world. Aarohan brings to you the opportunity to
learn all about the mechanisms of humanoids like iCub, TOPIO and the most famous
Sophia.
</p>
<br>
<a href="https://reg.arhn.co.in/workshop/" target="_blank" style="opacity: 1;font-size: 2.4rem;"><button
style="background-color: white;border-width: 0px;border-radius: 10px;">Register Now
!</button></a>
</div>
</div>
<!--workshop 2-->
<div class="row event_box workshop">
<div style="margin-top: 0" class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>IoT Workshop</h1>
<p>
The concept of a network of smart devices was discussed as early as 1982, with a
modified Coke vending machine becoming the first Internet-connected appliance.
Now-a-days this Internet of Things finds its application from home automation to
transportation, from elder car to agricultural purpose, etc. The backbone of a fast
developing smart city, come let’s get to know Internet of Things in details this
Aarohan.
</p>
<br>
<a href="https://reg.arhn.co.in/workshop/" target="_blank" style="opacity: 1;font-size: 2.4rem;"><button
style="background-color: white;border-width: 0px;border-radius: 10px;">Register Now
!</button></a>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<img src="img/Workshop-IOT.png" alt="">
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight"></div>
</div>
</div>
</div>
<!-- workshop 3-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<img src="./img/Workshop-Mercedes.png" alt="">
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div style="margin-top: 0" class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Mercedes IC-engine workshop</h1>
<p>
The first idea of IC Engine came from a description of Leonardo da Vinci. Year after
year, quite a
good number of revolutionary ideas brought the engine that we see today. This Aarohan,
get to
learn how this kind of engines work and what take into achieving the output provided by
this
powerful product. Nonetheless, it gets more interesting when we say that it is an
actual Mercedes
Engine that we will be dealing with this Aarohan.
</p>
<br>
<a href="https://reg.arhn.co.in/workshop/" target="_blank" style="opacity: 1;font-size: 2.4rem;"><button
style="background-color: white;border-width: 0px;border-radius: 10px;">Register Now
!</button></a>
</div>
</div>
</div>
</section>
<!-- Major attractions -->
<section id="trigger4" class="section1 mjrattractions" style="background-color: white">
<div class="about__animation image-animation-reverse">
<div class="image-animation__img" style="opacity: 0; transform: matrix(3, 0, 0, 3, 0, 0); position: absolute; top: 0px;">
<figure class="fit-wrapper">
<img class="lazy loaded" width="1920" height="1200" alt="La maschera e l'incubo" src="img/Major-Attractions.jpg"
style=""> </figure>
<div id="about-wrapper2">
<h1 id="animate1" class="heading shiftplace">Major <br> attractions</h1>
</div>
</div>
</div>
<div class="events_content" style="padding-bottom: 100px;">
<!-- major attractions 1-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<img src="img/aarohan_nites.png" alt="">
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Aarohan nites</h1>
<p>When the brain gets saturated & the mind starts wandering; when the heat of the day
finally dims and the lights get low, the time to rejuvenate and fuel some fresh energy
follows. So you thought that we were just a bunch of nerds knowing nothing beyond
Newton? Well think again! After the non-stop tech-vaganza, Aarohan Nites turn up the
volume and pump up the jam, and turn the entire arena in to a giant dance floor. In the
moonlight, by midnight start, enjoy the uproar under the cool February breeze and keep
the spirits going.
</p>
</div>
</div>
<!-- major attractions 2-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Inspiratie</h1>
<p>Come, dive into the elusive world of these creative geniuses in their own right, and get
lost in a world where the possibilities are endless - where the sight of a pin could
become the vision of tomorrow’s wonder gadget! Experience their joys of discovery as
they narrate their stories of hardships and vibrant encounters to you. And who knows-
maybe what inspired them could also spark the fire in you too! So this Aarohan, let’s
inspire and get inspired.
</p>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<img src="img/inspiratie.png" alt="">
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight"></div>
</div>
</div>
</div>
<!-- major attractions 3-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<img src="img/exploring_the_galaxy.png" alt="">
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Exploring the galaxy</h1>
<p>Human’s quest to know the universe is never ending. And this Aarohan, CCA brings an
opportunity to explore the very sky above you through a telescope set right
on the grounds of NIT Durgapur.
</p>
</div>
</div>
<!-- major attractions 4-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 order-lg-1 order-md-1 col-sm-12 order-sm-2 events_txt text-animate">
<h1>Science conference</h1>
<p>In today’s world of rapid technical advancement one has to be on toes to remain updated.
And we give you a chance to gather some more knowledge and take the lead. So just
attend it and enlighten your “geeky” self.
The speaker panel will be updated soon.
</p>
</div>
<div class="col-lg-6 col-md-6 order-lg-2 order-md-2 col-sm-12 order-first events_illst mobile-height text-animate">
<div class="image">
<img src="img/Science-Conference-Icon.png" alt="coming_soon">
</div>
<div class="homeworksplat">
<div class="fluidbig fluidRight"></div>
</div>
</div>
</div>
<!-- major attractions 5-->
<div class="row event_box workshop">
<div class="col-lg-6 col-md-6 col-sm-12 events_illst mobile-height text-animate">
<div class="image">
<img src="img/Energy-Conclave-Icon.png" alt="coming_soon">
</div>
<div class="homeworksplat">
<div class="fluidbig"></div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 events_txt text-animate">
<h1>Energy conclave</h1>
<p>Attend the Energy Conclave to gain some edge in non-conventional and renewable energy.
After all it's the talk of town. So be the change you want to see.
The speaker panel will be updated soon.
</p>
</div>
</div>
</div>
</section>
<!-- team -->
<section class="section1 team">
<div class="about__animation image-animation-reverse">
<div class="image-animation__img" style="opacity: 0; transform: matrix(3, 0, 0, 3, 0, 0); position: absolute; top: 0px;">
<figure class="fit-wrapper">
<img class="lazy loaded" width="1920" height="1200" alt="La maschera e l'incubo" src="img/TEAM.jpg"
style=""> </figure>
<div id="about-wrapper2">
<h1 id="animate1" class="heading">Team</h1>
</div>
</div>
</div>
<!-- team images -->
<div class="team_container">
<div class="team_box container-fluid">
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/shivam.png" alt="shivam">
<div class="content">
<h3>SHIVAM KUMAR JHA</h3>
<p>CONVENER & HEAD</p>
<p>+91 8944921428</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/mayank.png" alt="mayank">
<div class="content">
<h3>MAYANK MEHTA</h3>
<p>GENERAL SECRETARY</p>
<p>+91 9083504362</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/akhil.png" alt="akhil">
<div class="content">
<h3>AKHIL KOMMINENI</h3>
<p>TREASURER</p>
<p>+91 9493056384</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/akshay.png" alt="akshay">
<div class="content">
<h3>AKSHAY SHARMA</h3>
<p>HEAD, OPERATIONS</p>
<p>+91 8944921874</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/Aaryan.jpg" alt="aaryan">
<div class="content">
<h3>AARYAN SINGH</h3>
<p>HEAD, WEB DESIGN & CREATIVE TEAM</p>
<p>+91 9031155904</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/vinesh.png" alt="vinesh">
<div class="content">
<h3>VINESH BATTULA</h3>
<p>HEAD, WEB DESIGN & CREATIVE TEAM</p>
<p>+91 9052418855</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/ruchika.png" alt="ruchika">
<div class="content">
<h3>RUCHIKA RATHI</h3>
<p>HEAD, OPERATIONS</p>
<p>+91 9679826874</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/abhishek.png" alt="abhishek">
<div class="content">
<h3>ABHISHEK KR. SHAH</h3>
<p>HEAD, CORPORATE COMMUNICATIONS</p>
<p>+91 8116328400</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/arindam.png" alt="arindam">
<div class="content">
<h3>ARINDAM MANDAL</h3>
<p>HEAD, CORPORATE COMMUNICATIONS</p>
<p>+91 9382055802</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/aastha.png" alt="aastha">
<div class="content">
<h3>AASTHA JHUNJHUNWALA</h3>
<p>HEAD, ATH</p>
<p>+91 9830951261</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/arnab.png" alt="arnab">
<div class="content">
<h3>ARNAB KR. GOSWAMI</h3>
<p>HEAD, ATH</p>
<p>+91 8388055633</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/indrajeet.png" alt="indrajeet">
<div class="content">
<h3>INDRAJEET GAJBHIYE</h3>
<p>HEAD, ROBOCELL</p>
<p>+91 7507117206</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/vishal.png" alt="vishal">
<div class="content">
<h3>VISHAL MANDLEY</h3>
<p>HEAD, ROBOCELL</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/argha.png" alt="argha">
<div class="content">
<h3>ARGHA DAS</h3>
<p>HEAD, E-CELL</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/neha.png" alt="aastha">
<div class="content">
<h3>NEHA UPADHYAY</h3>
<p>HEAD, E-CELL</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/anshuman.png" alt="anshuman">
<div class="content">
<h3>ANSHUMAN PANIGRAHI</h3>
<p>HEAD, R&D CELL</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/bhanu.png" alt="bhanu">
<div class="content">
<h3>BHANU PRAKASH ANCHULA</h3>
<p>HEAD, R&D CELL</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/aman.png" alt="aman">
<div class="content">
<h3>AMAN KUMAR SAH</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/soukhin.png" alt="soukhin">
<div class="content">
<h3>SOUKHIN DAS</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/sajja.png" alt="sajja">
<div class="content">
<h3>ROHITH KUMAR SAJJA</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/ujjani.png" alt="ujjani">
<div class="content">
<h3>UJANI HAZRA</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/rishav.png" alt="rishav">
<div class="content">
<h3>RISHAV ROY</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/akhila.png" alt="akhila">
<div class="content">
<h3>AKHILA RAO</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/jonty.png" alt="jonty">
<div class="content">
<h3>JONTY PADIA</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/anushka.png" alt="anushka">
<div class="content">
<h3>ANUSHKA GHOSH</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/abodh.png" alt="abodh">
<div class="content">
<h3>ABODH PRASAD</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/rohan.png" alt="rohan">
<div class="content">
<h3>ROHAN CHOUDHARY</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/lokesh.png" alt="lokesh">
<div class="content">
<h3>LOKESH NANDANWAR</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
</div>
<div class="row">
<div class="card col-xs-6 col-sm-3">
<img src="img/team/prachita.png" alt="prachita">
<div class="content">
<h3>PRACHITA</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/swati.png" alt="rohan">
<div class="content">
<h3>SWATI KANCHAN</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/agnivesh.png" alt="agnivesh">
<div class="content">
<h3>AGNIVESH ADHIKARI</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
<div class="card col-xs-6 col-sm-3">
<img src="img/team/ashutosh.png" alt="ashutosh">
<div class="content">
<h3>ASHUTOSH SHUKLA</h3>
<p>EXECUTIVE MEMBER</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- sponsers -->