-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1373 lines (1210 loc) · 79.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>CSI-DBIT | Student Chapter - Official Website</title>
<meta
content="This is the Official Website of CSI-DBIT Joining CSI-DBIT is a great way to get involved in the coding community and learn about the latest technologies. We hold regular workshops, competitions and other events where students can learn and network. Our events are a great opportunity to learn about new coding technologies and meet other like-minded people. So dive in and learn more about us today!"
name="description">
<meta content="csi,dbit,student chapter,events,workshops,mumbai hackathon,game of codes" name="keywords">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon//favicon-16x16.png">
<link rel="manifest" href="/assets/img/favicon//site.webmanifest">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/homeCss/homeEvents/homeEvent.css" rel="stylesheet">
<link href="assets/css/homeCss/home_Testimonial/homeTesti.css" rel="stylesheet">
<link href="assets/css/homeCss/home_flagship/homeFs.css" rel="stylesheet">
<link href="assets/css/homeCss/home_about/home_about.css" rel="stylesheet">
<link href="./assets/css/preloader/preloader.css" rel="stylesheet">
<link href="./assets/css/homeCss/homeAboutRework/homeAboutRework.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- preloader -->
<div id="preloader" class="preloader">
<main>
<div class="cell">
<div class="pl pl-leapfrog"></div>
<div class="pl-name"><b>CSI DBIT</b></div>
</div>
</main>
</div>
<!-- registration link -->
<div class="csi-registration">
<a href="/csi-membership.html">Membership</a>
</div>
<!-- social links -->
<div class="socialLinks">
<ul>
<li class="fbicon"><a target="_blank" href="https://www.facebook.com/csidbit/"><i
class="fa-brands fa-facebook"></i></a></li>
<li class="yticon"><a target="_blank" href="https://www.youtube.com/c/CSIDBIT"><i
class="fa-brands fa-youtube"></i></a></li>
<li class="twiticon"><a target="_blank" href="https://twitter.com/csidbit"><i
class="fa-brands fa-twitter"></i></a></li>
<li class="igicon"><a target="_blank" href="https://www.instagram.com/csidbit/"><i
class="fa-brands fa-instagram"></i></a></li>
<li class="liknicon"><a target="_blank"
href="https://www.linkedin.com/company/computer-society-of-india-csi-dbit/mycompany/"><i
class="fa-brands fa-linkedin"></i></a></li>
<!-- <li class="giticon"><a target="_blank" href="https://www.instagram.com/csidbit/"><i class="fa-brands fa-github"></i></a></li> -->
</ul>
</div>
<!-- social links end -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<a href="index.html" class="hero-logo" data-aos="zoom-in">
<img src="assets/img/CSI-DBIT.png" alt="">
</a>
<h1 data-aos="zoom-in">Computer Society Of India</h1>
<h4 data-aos="fade-up"> Largest Student Chapter in DBIT </h4>
<a data-aos="fade-up" data-aos-delay="200" href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</section>
<!-- End Hero -->
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<div class="logo">
<a href="/index.html"><img src="/assets/img/csiLogo_w-name.png" alt="" class="img-fluid"></a>
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="#hero">Home</a></li>
<li><a class="nav-link" href="/events.html">Events</a></li>
<li class="dropdown"><a href="#"><span>Flagships</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="/mumbaiHackathon.html">मुंबई Hackathon</a></li>
<li><a href="/gameOfCodes.html">Game of Codes</a></li>
<li><a href="/encore.html">Encore</a></li>
</ul>
</li>
<li><a class="nav-link" href="/team.html">Teams</a></li>
<li><a class="nav-link" href="/gallery.html">Gallery</a></li>
<li><a class="nav-link membership-mob" target="_blank" href="/csi-membership.html">Membership</a>
</li>
</li>
<li><a class="nav-link" href="/csi-leaderBoard.html">LeaderBoard</a></li>
<!-- <li class="dropdown"><a href="#"><span>More</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Team</a></li>
<li><a href="/csi-reports.html">Reports</a></li>
<li><a href="/csi-projects.html">Projects</a></li>
<li><a href="/csi-leaderBoard.html">Leader Board</a></li>
</ul>
</li> -->
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<main id="main">
<!-- ======= About Us Section ======= -->
<section id="about" class="section-bg">
<div class="about">
<div class="about_container">
<div class="container-fluid">
<div class="homeAboutRework">
<div class="bdt-timeline-container">
<div class="upk-salf-slider-wrapper">
<div class="swiper-container mySwiper2">
<div class="swiper-wrapper">
<div class="upk-salf-item swiper-slide">
<div class="upk-salf-image-wrap">
<img class="upk-xanc-img" src="./assets/img/Slider/culture.webp" />
</div>
<div class="upk-salf-content-wrap">
<h3 class="upk-salf-title" data-swiper-parallax-y="-150"
data-swiper-parallax-duration="1200">
<span>C</span>ulture
</h3>
<div class="upk-salf-desc" data-swiper-parallax-y="-200"
data-swiper-parallax-duration="1400">At our technical club, we
foster a culture of continuous learning, providing opportunities
for members to expand their knowledge and skills in various
technical domains.</div>
</div>
</div>
<div class="upk-salf-item swiper-slide">
<div class="upk-salf-image-wrap">
<img class="upk-xanc-img" src="./assets/img/Slider/support.webp" />
</div>
<div class="upk-salf-content-wrap">
<h3 class="upk-salf-title" data-swiper-parallax-y="-150"
data-swiper-parallax-duration="1200">
<span>S</span>upport
</h3>
<div class="upk-salf-desc" data-swiper-parallax-y="-200"
data-swiper-parallax-duration="1400">We strive to create a
welcoming and inclusive environment within our club, ensuring
that all members feel supported and valued in their pursuit of
technical excellence.</div>
</div>
</div>
<div class="upk-salf-item swiper-slide">
<div class="upk-salf-image-wrap">
<img class="upk-xanc-img"
src="./assets/img/Slider/integration.webp" />
</div>
<div class="upk-salf-content-wrap">
<h3 class="upk-salf-title" data-swiper-parallax-y="-150"
data-swiper-parallax-duration="1200">
<span>I</span>ntegration
</h3>
<div class="upk-salf-desc" data-swiper-parallax-y="-200"
data-swiper-parallax-duration="1400">Integration is not just a
buzzword for us—it's a core value. We embrace integration as a
driving force behind our club's success, as we believe that
diverse and integrated teams are capable of achieving remarkable
things.</div>
</div>
</div>
</div>
</div>
<div class="upk-page-scroll">
<a class="arrow-up">
<div class="long-arrow-left"></div>
<span class="arrow-slide"></span>
</a>
</div>
<div class="upk-salf-nav-pag-wrap">
<div class="upk-salf-navigation">
<div class="upk-button-prev upk-n-p">
<a class="link link--arrowed" href="#">
<svg class="arrow-icon" xmlns="http://www.w3.org/2000/svg"
width="28" height="28" viewBox="0 0 32 32">
<g fill="none" stroke="#ff215a" stroke-width="1.5"
stroke-linejoin="round" stroke-miterlimit="10">
<circle class="arrow-icon--circle" cx="16" cy="16"
r="15.12"></circle>
<path class="arrow-icon--arrow"
d="M16.14 9.93L22.21 16l-6.07 6.07M8.23 16h13.98">
</path>
</g>
</svg>
</a>
</div>
<div class="upk-button-next upk-n-p">
<a class="link link--arrowed" href="#">
<svg class="arrow-icon" xmlns="http://www.w3.org/2000/svg"
width="28" height="28" viewBox="0 0 32 32">
<g fill="none" stroke="#ff215a" stroke-width="1.5"
stroke-linejoin="round" stroke-miterlimit="10">
<circle class="arrow-icon--circle" cx="16" cy="16"
r="15.12"></circle>
<path class="arrow-icon--arrow"
d="M16.14 9.93L22.21 16l-6.07 6.07M8.23 16h13.98">
</path>
</g>
</svg>
</a>
</div>
</div>
<div class="upk-salf-pagi-wrap">
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="counts">
<div class="container">
<div class="counter-box row no-gutters">
<div class="col-lg-3 col-md-6 col-6 d-md-flex align-items-md-stretch py-3">
<div class="count-box">
<div class="container-fluid d-flex">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="200"
data-purecounter-duration="1" class="ms-3 purecounter"></span>
<span class="m-0">+</span>
</div>
<br>
<h3><strong>Workshops</strong></h3>
<!-- <a href="#">Find out more »</a> -->
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 d-md-flex align-items-md-stretch py-3">
<div class="count-box">
<div class="container d-flex">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="2000"
data-purecounter-duration="1" class="ms-3 purecounter"></span>
<span class="m-0">+</span>
</div><br>
<h3><strong>Members</strong></h3>
<!-- <a href="#">Find out more »</a> -->
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 d-md-flex align-items-md-stretch py-3">
<div class="count-box">
<div class="container d-flex">
<i class="bi bi-headset"></i>
<span data-purecounter-start="0" data-purecounter-end="50"
data-purecounter-duration="1" class="ms-3 purecounter"></span>
<span class="m-0">+</span>
</div><br>
<h3><strong>Competitions</strong></h3>
<!-- <a href="#">Find out more »</a> -->
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 d-md-flex align-items-md-stretch py-3">
<div class="count-box">
<div class="container d-flex">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="15"
data-purecounter-duration="1" class="ms-3 purecounter"></span>
<span class="m-0">+</span>
</div><br>
<h3><strong>Years of Work</strong></h3>
<!-- <a href="#">Find out more »</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About Us Section -->
<!-- ======= Activities Section ======= -->
<section id="services" class="services section-bg">
<div class="container">
<div class="section-title">
<h2>Vision, Mission & Values</h2>
<p>Since its inception in 2006, CSI has effectively created a platform for everyone to progress
together, and has relentlessly worked to provide the best.Join us on this meaningful
adventure.An initiative by DBIT IT Dept
Since its inception in 2006, CSI has effectively created a platform for everyone
to progress together,
and has relentlessly worked to provide the best. Join us on this meaningful
adventure.</p>
</div>
<div class="container ">
<div class="row d-flex justify-content-center align-items-center">
<div class="col-md-6 col-lg-3 d-flex align-items-center mb-5 mb-lg-0">
<div class="icon-box icon-box-short">
<div class="icon"><i class="fa-solid fa-eye-low-vision"></i></div>
<h4 class="title"><a href="">Vision</a></h4>
<p class="description">Innovate ideas and to facilitate OpenSource culture along with
research attitude</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box">
<div class="icon"><i class="fa-solid fa-person-hiking"></i></div>
<h4 class="title"><a href="">Mission</a></h4>
<p class="description">DBIT-CSI is to facilitate Research , knowledge Sharing , learning
and Career Enhancement for all categories of IT Professional.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box icon-box-short">
<div class="icon"><i class="fa-solid fa-pen-nib"></i></div>
<h4 class="title"><a href="">Values</a></h4>
<p class="description">To serve the student Community by bridging the gap between
Academics and Industry Outcomes.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Activities Section -->
<!-- home Events start -->
<section class="homeEvents section-bg">
<div class="container">
<div class="row">
<div class="homeEventsCont">
<div class="homeEventsHeader">
<h1>Recent Events</h1>
<a href="/events.html">
<div class="homeEventsLink">
all events <i class="fa-solid fa-angles-right"></i>
</div>
</a>
</div>
<div class="wrapper">
<div class="homeEvents-slider">
<div class="homeEvents-slider__wrp swiper-wrapper">
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/genAI.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">27th - 28th</span>
<span class="hoeEvents-date__txt">February</span>
</div>
<div class="homeEvents__title">
Generative AI Workshop
</div>
<p class="homeEvents__txt">
Exploring Generative AI and offering a opportunity to delve into the intricacies of artificial intelligence.
<span class="text-light">
<!-- Add text here only if the card images aren't aligned -->
</span>
</p>
<div class="homeEvents__img">
<img src="/assets/img/workshops/genAI_card.webp" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/git23.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">4th</span>
<span class="hoeEvents-date__txt">August</span>
</div>
<div class="homeEvents__title">
Git & Github Workshop
</div>
<p class="homeEvents__txt">
A hands on workshop designed for second-year students, focusing on the fundamentals of Git and GitHub.
<span class="text-light">
<!-- Add text here only if the card images aren't aligned -->
</span>
</p>
<div class="homeEvents__img">
<img src="/assets/img/workshops/Git&Github_card.png" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/sparkAR.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">13th - 14th</span>
<span class="hoeEvents-date__txt">March</span>
</div>
<div class="homeEvents__title">
Spark AR workshop
</div>
<p class="homeEvents__txt">
A workshop to teach you how to make your very own filters with ease
<span class="text-light">hellooooooooooooo</span>
</p>
<div class="homeEvents__img">
<img src="/assets/img/workshops/sparkAR_card.webp" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/dalle2_workshop.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">23rd</span>
<span class="hoeEvents-date__txt">February</span>
</div>
<div class="homeEvents__title">
Node up your creativity
</div>
<p class="homeEvents__txt">
An exclusive workshop on building your own AI-driven image generator
using Node.js and DALL-E:2 API.
<span class="text-light">hellooooooo</span>
</p>
<div class="homeEvents__img">
<img src="/assets/img/workshops/nodejs_card.webp" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/paging_for_csi.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">27th</span>
<span class="hoeEvents-date__txt">January</span>
</div>
<div class="homeEvents__title">
Paging for CSI
</div>
<p class="homeEvents__txt">
An introductory orientation session to welcome FE 2022-23 on board.
<span class="text-light">hellooooooooooooooo</span>
</p>
<div class="homeEvents__img">
<img src="/assets/img/workshops/Paging_for_csi_card.webp" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/csi-flix.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">30th</span>
<span class="hoeEvents-date__txt">August</span>
</div>
<div class="homeEvents__title">
CSI Flix
</div>
<p class="homeEvents__txt">
CSI held a film screening session to show a netflix documentary "social
Dilemma".
<span class="text-light">hellooooooooooooooo</span>
</p>
<div class="homeEvents__img">
<img src="assets/img/workshops/flix-home.png" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="events_pages/eng-day.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">15th</span>
<span class="hoeEvents-date__txt">September</span>
</div>
<div class="homeEvents__title">
Engineer's Day
</div>
<p class="homeEvents__txt">
A Event organized by 'CSI' the technical student chapter of the IT
Department,
DBIT on the occasion of Engineer's day
</p>
<div class="homeEvents__img">
<img src="assets/img/workshops/engday-home.png" alt="news">
</div>
</a>
</div>
<div class="homeEvents-slider__item swiper-slide">
<a href="/events_pages/git.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">4th - 5th</span>
<span class="hoeEvents-date__txt">August</span>
</div>
<div class="homeEvents__title">
Git/GitHub Workshop
</div>
<p class="homeEvents__txt">
A two days hands on workshop for beginners to learn Git & GitHub.
<span class="text-light">hellooooooooooooooo</span>
</p>
<div class="homeEvents__img">
<img src="assets/img/workshops/git-home.png" alt="news">
</div>
</a>
</div>
<!-- <div class="homeEvents-slider__item swiper-slide">
<a href="events_pages/mic-check.html" class="homeEvents__item">
<div class="homeEvents-date flex ">
<span class="homeEvents-date__title">29th</span>
<span class="hoeEvents-date__txt">July</span>
</div>
<div class="homeEvents__title">
CSi Mic-Check
</div>
<p class="homeEvents__txt">
A fun and Exciting orientation and ice breaker session organized by the
CSI student chapter.
</p>
<div class="homeEvents__img">
<img src="assets/img/workshops/mic-check-home.png" alt="news">
</div>
</a>
</div> -->
</div>
<div class="homeEvents-slider__ctr">
<div class="homeEvents-slider__arrows">
<button class="homeEvents-slider__arrow homeEvents-slider-prev">
<i class="fa-solid fa-arrow-left"></i>
</button>
<button class="homeEvents-slider__arrow homeEvents-slider-next">
<i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="homeEvents-slider__pagination"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- home events end -->
<!-- ======= Cta Section ======= -->
<section class="cta">
<div class="container">
<div class="text-center">
<h3>We Welcome you at CSI</h3>
<p>Join us on an Exiting Journey. Some days we wish we could go back to the days of these events.
Not to change anything, but to experience the thrill of them again. Let us rejoice in the glory
and wonderful memories that CSI has acquired throughout the years!
</p>
<a class="cta-btn" href="/gallery.html">View Gallery</a>
</div>
</div>
</section>
<!-- End Cta Section -->
<!-- ======= Flagship Section ======= -->
<section id="homeFlagship" class="more-services section-bg">
<div class="container">
<div class="row">
<div class="homeFsCont">
<h1>Flagship Events</h1>
<div class="wrapper">
<div class="news-slider">
<div class="news-slider__wrp swiper-wrapper">
<div class="news-slider__item swiper-slide swiper-slide-visible swiper-slide-active">
<a href="/encore.html" class="news__item">
<div class="news__img">
<img src="assets/img/logo's/Encore_bg.webp" alt="news">
</div>
<div class="news__title">
Encore
</div>
<p class="news__txt">
Encore is an intercollegiate Technical Paper Presentation Contest
organised by IT department of DBIT.
<div class="homefs-links">
visit page
</div>
</p>
</a>
</div>
<div class="news-slider__item swiper-slide swiper-slide-visible swiper-slide-active">
<a href="/mumbaiHackathon.html" class="news__item">
<div class="news__img">
<img src="assets/img/logo's/mumhack.png" alt="news">
</div>
<div class="news__title">
Mumbai Hackathon
</div>
<p class="news__txt">
Mumbai Hackathon is Annual Open Source Hackathon organized by FOSS
United and Don Bosco Institute of Technology (DBIT).
<div class="homefs-links">
visit page
</div>
</p>
</a>
</div>
<div class="news-slider__item swiper-slide swiper-slide-visible swiper-slide-active">
<a href="/gameOfCodes.html" class="news__item">
<div class="news__img">
<img src="assets/img/logo's/goc.png" alt="news">
</div>
<div class="news__title">
Game of Codes
</div>
<p class="news__txt">
Game of codes is a Flagship event of CSI. Every yesr , we have students
working on different problem statements. <br>
<div class="homefs-links">
visit page
</div>
</p>
</a>
</div>
</div>
<!-- <div class="news-slider__ctr">
<div class="news-slider__arrows">
<button class="news-slider__arrow news-slider-prev">
<span class="icon-font">
<svg class="icon icon-arrow-left">
<use xlink:href="#icon-arrow-left"></use>
</svg>
</span>
</button>
<button class="news-slider__arrow news-slider-next">
<span class="icon-font">
<svg class="icon icon-arrow-right">
<use xlink:href="#icon-arrow-right"></use>
</svg>
</span>
</button>
</div>
<div class="news-slider__pagination"></div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Flagship Section -->
<section class="section-bg">
<div class="container">
</div>
</section>
<!-- Testimonial section start -->
<section id="testimony">
<section class="testimonial style-3 padding-tb">
<div class="container">
<div class="section-wrapper">
<div class="testimonial-slider">
<svg>
<circle class="animation-two" r="300" cx="300" cy="300"></circle>
</svg>
<h6>What they say about us</h6>
<div class="section-wrapper testi-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="post-item">
<div class="post-inner">
<p>Being a member of the Computer Society of India (CSI) was a
transformative experience for me. It provided me with countless
opportunities to grow and develop both personally and
professionally. Joining CSI was one of the best decisions I have
ever made and I am confident that it will play a vital role in my
future success.
</p>
<h5><a href="#">Gaurav Jain</a></h5>
<span>Technical head</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="post-item">
<div class="post-inner">
<p>CSI is the best student chapter as it gave me an opportunity to
interact with Industry Professionals through its workshops and chalk
out our carrier
path.Joining CSI was one of the best decisions I have ever made and
I am confident that it will play a vital role in my future success.
</p>
<h5><a href="#">Sanket Deshmukh</a></h5>
<span>Technical head</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="post-item">
<div class="post-inner">
<p>I was a member of the publicity team for the Computer Society of
India (CSI) which is an ever-progressing student chapter of our
college; I have collectively managed and organized more than 15 plus
events and had a chance to conduct inter-college flagship events
such as the Game of Codes (GOC) and Mumbai Hackathon.</p>
<h5><a href="#">Jevina Verghese</a></h5>
<span>PR Head</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="post-item">
<div class="post-inner">
<p>Being a part of CSI student chapter, it created an awareness about
trending topics in the IT field and facilitated research, knowledge
sharing, learning and
career enhancement for all categories of IT Professionals.
I can say with certainty that my social and technical skills have
gotten better.</p>
<h5><a href="#">Chaitanyakrishna Dukkipaty</a></h5>
<span>Chairperson</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="post-item">
<div class="post-inner">
<p>I joined the public relations team of the CSI in my second year. This
encouraged me to participate in various hackathons and programming
contests. Later on, I also became a part of the technical team and
helped develop the CSI website. As a result of this entire journey,
I can say with certainty that my social and technical skills have
gotten better.</p>
<h5><a href="#">Viraj Gaonkar</a></h5>
<span>PR head</span>
</div>
</div>
</div>
</div>
<div class="testi-navigation">
<div class="testi-next "><i class="fa-solid fa-circle-chevron-left"></i></div>
<div class="testi-prev "><i class="fa-solid fa-circle-chevron-right"></i></div>
</div>
</div>
<div class="testi-pagination">
<div><span></span></div>
<div><span></span></div>
<div><span></span></div>
<div><span></span></div>
<div><span></span></div>
</div>
</div>
</div>
</div>
</section>
</section>
<!-- testimonial section ends -->
<!-- ======= Info Box Section ======= -->
<!-- <section class="info-box py-0">
<div class="container-fluid">
<div class="row">
<div
class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1">
<div class="content">
<h3>Eum ipsam laborum deleniti <strong>velit pariatur architecto aut nihil</strong></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit
</p>
</div>
<div class="accordion-list">
<ul>
<li>
<a data-bs-toggle="collapse" class="collapse"
data-bs-target="#accordion-list-1"><span>01</span> Non consectetur a erat nam at
lectus urna duis? <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-1" class="collapse show" data-bs-parent=".accordion-list">
<p>
Feugiat pretium nibh ipsum consequat. Tempus iaculis urna id volutpat lacus
laoreet non curabitur gravida. Venenatis lectus magna fringilla urna
porttitor rhoncus dolor purus non.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#accordion-list-2"
class="collapsed"><span>02</span> Feugiat scelerisque varius morbi enim nunc? <i
class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-2" class="collapse" data-bs-parent=".accordion-list">
<p>
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id
interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus
scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper
dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#accordion-list-3"
class="collapsed"><span>03</span> Dolor sit amet consectetur adipiscing elit? <i
class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-3" class="collapse" data-bs-parent=".accordion-list">
<p>
Eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci.
Faucibus pulvinar elementum integer enim. Sem nulla pharetra diam sit amet
nisl suscipit. Rutrum tellus pellentesque eu tincidunt. Lectus urna duis
convallis convallis tellus. Urna molestie at elementum eu facilisis sed odio
morbi quis
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style="background-image: url(assets/img/info-box.jpg);"> </div>
</div>
</div>
</section> -->
<!-- End Info Box Section -->
<!-- ======= Our Portfolio Section ======= -->
<!-- <section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Our Portfolio</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit
sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias
ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery"