-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
874 lines (731 loc) · 39.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vibhav</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Team Vibhav is the Departmental team of Electronics & Communications Engineering Department which works
for Nimbus Annual Technical Festival of National Institute of Technology, Hamirpur." name="description">
<meta name="keywords" content="Projects,events,workshops">
<!-- Favicons -->
<link href="img/Yellow.png" rel="icon">
<link href="img/Yellow.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,600,700,700i|Montserrat:300,400,500,600,700" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="css/button.css">
</head>
<body>
<div id="loading">
<div class="loading">
<div class="loading-text">
<span class="loading-text-words">V</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">B</span>
<span class="loading-text-words">H</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">V</span>
</div>
</div>
</div>
<!--==========================
Header
============================-->
<header id="header" class="aksh">
<div id="topbar">
<div class="container">
<div class="social-links">
<a href="https://www.instagram.com/team_vibhav/" target="_blank" class="instagram"><i
class="fab fa-instagram"></i></a>
<a href="https://www.facebook.com/teamvibhavece" target="_blank" class="facebook"><i
class="fab fa-facebook"></i></a>
<a href="https://www.linkedin.com/company/team-vibhav/" target="_blank" class="linkedin"><i
class="fab fa-linkedin"></i></a>
<a href="https://youtube.com/channel/UCt8W-_urFuy3dqulfQvk8fQ" target="_blank" class="instagram"><i
class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<div class="container pb-4">
<div class="logo float-left ">
<!-- Uncomment below if you prefer to use an image logo -->
<h1 class="text-success site-title"><a href="#intro" class="scrollto">VIBHAV</a></h1>
<!-- <a href="#header" class="scrollto"><img src="img/logo.png" alt="" class="img-fluid"></a> -->
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li class="active"><a href="#particles-js">Home</a></li>
<li><a href="#about">About Us</a></li>
<li class="drop-down"><a href="team.html">Our Team</a>
<ul>
<li><a href="team.html">Our Team</a></li>
<li><a href="internexperience.html">Intern Experiences</a></li>
<li><a href="alumni.html">Alumni</a></li>
</ul>
</li>
<li class="drop-down"><a href="projects.html">Our Work</a>
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="event.html">Events </a></li>
<li><a href="workshop.html">Workshops </a></li>
<li><a href="pahal.html">Pahal </a></li>
<li><a href="diy.html">DIY Projects </a></li>
<li><a href="nithvr.html">NITH VR</a></li>
</ul>
</li>
<li class="drop-down"><a href="#">Games</a>
<ul>
<li><a href="binary.html">Bit-N-Byte</a></li>
</ul>
</li>
<li><a href="#footer">Contact Us</a></li>
<!-- <li class="toggle-btn">Toggle Mode
<label class="switch btn_d_m">
<input type="checkbox" onclick="lm_function()">
<span class="slider round"></span>
</label>
</li> -->
</ul>
</nav>
<!-- .main-nav -->
<script type="text/javascript">
function lm_function() {
document.body.classList.toggle('dark-mode');
const aksh = document.body.classList;
if (aksh[0] == "dark-mode") {
ak.particles.color.value = '#314e52';
ak.particles.move.direction = 'bottom';
ak.particles.move.speed = '6';
ak.particles.number.value = '120';
console.log(aksh[0]);
} else {
if (ak.particles.color.value == '#314e52') {
ak.particles.color.value = '#ffffff';
}
}
particlesJS('particles-js', ak);
console.log("ak is", ak);
}
</script>
</div>
</header>
<!-- #header -->
<header>
<!---
<div class="mid">
<div onclick="change() ">
<i id="btn"class="fa fa-volume-up my-float"></i>
</div>
<video id="media" autoplay muted="false">
<source class="embed-responsive media" src="img/3.mp4" type="video/mp4">
</video>
<script type="text/javascript">
const vid = document.getElementById('media')
vid.onended = function () {
const x = window.innerHeight;
console.log(x);
if (window.scrollY < x) {
window.scrollTo({
top: x,
behavior: "smooth"
});
}
}
</script>
</div>fa
-->
</header>
<!--==========================
Intro Section
============================-->
<!-- Welcome Area Start -->
<section class="welcome-area">
<!-- Single Slide -->
<div class="single-welcome-slide bg-img jarallax">
<!-- <canvas style="position: absolute; width: 100%; height: 100%"></canvas> -->
<div id="particles-js" style="position: absolute; width: 100%; height: 100%"></div>
<!-- <div class="single-welcome-slide bg-img bg-overlay jarallax" style="z-index: 100;"> -->
<div style="z-index: 100; position: relative;" class="container h-100">
<div class="akboss row mx-auto h-100 align-items-center">
<!-- Welcome Text -->
<div class="col-12">
<div class="welcome-text-two text-center">
<p class="typing-text mx-auto">अनंत से भी आगे</p>
<h2 data-animation="fadeInUp" data-delay="4300ms"><span class="mx-auto display-4 text-light font-new">Team</span></h2>
<h2><span class="mx-auto vibhav-font">VIBHAV</span></h2>
<!-- Event Meta -->
<div class="event-meta" data-animation="fadeInUp" data-delay="500ms">
<h3 class="nabin-new" data-animation="fadeInUp" data-delay="100ms">Talent To Shine
</h3>
<div class="svg-wrapper pt-5">
<svg height="60" width="320" xmlns="http://www.w3.org/2000/svg">
<rect class="shape" height="60" width="320" />
</svg>
<a target="_blank" href="https://discord.gg/USEDDpRX3u">
<div class="text "><i class="fab fa-discord mr-3 "></i>Join Our Community
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Welcome Area End -->
<!-- #intro -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6">
<div class="about-img">
<img src="img/Yellow.png" alt="">
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="about-content">
<div class="text-center">
<h2 class="display-4 text-white ">About Us</h2>
<hr class=" w-50 " style="height:2px;border-width:0;color:gray;background-color:gray">
</div>
<h2 class="my-3">TECHNICAL TEAM OF ELECTRONICS DEPARTMENT.</h2>
<p>Team Vibhav is the Departmental team of Electronics & Communication Engineering Department which works for Nimbus-Annual Technical Festival of National Institute of Technology, Hamirpur. Team Vibhav nurtures intense and genuine
commitment. We have a diverse pool of students who are constantly trying to innovate and push the boundaries. We at Team Vibhav believe that technology can provide optimum solutions to the problems faced by the society.
We make projects which are challenging and aim to tackle problems that are prevalent in our society.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- #about -->
<!--==========================
Services Section
============================-->
<!-- <section id="services" class="section-bg bg-secondary">
<div class="container">
<header class="section-header">
<h3>Workshops</h3>
<p>Laudem latine persequeris id sed, ex fabulas delectus quo. No vel partiendo abhorreant vituperatoribus.</p>
</header>
<div class="row">
<div class="col-md-6 col-lg-4 wow bounceInUp " data-wow-duration="1.4s">
<div class="box bg-dark shadow">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title "><a href=""><span class="text-light">Internet of Things</span></a></h4>
<p class="description text-light">Voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint
occaecati cupiditate non provident</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp " data-wow-duration="1.4s">
<div class="box bg-dark shadow">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title "><a href=""><span class="text-light">Internet of Things</span></a></h4>
<p class="description text-light">Voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint
occaecati cupiditate non provident</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp " data-wow-duration="1.4s">
<div class="box bg-dark shadow">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title "><a href=""><span class="text-light">Internet of Things</span></a></h4>
<p class="description text-light">Voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint
occaecati cupiditate non provident</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp " data-wow-duration="1.4s">
<div class="box bg-dark shadow">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title "><a href=""><span class="text-light">Internet of Things</span></a></h4>
<p class="description text-light">Voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint
occaecati cupiditate non provident</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp " data-wow-duration="1.4s">
<div class="box bg-dark shadow">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title "><a href=""><span class="text-light">Internet of Things</span></a></h4>
<p class="description text-light">Voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint
occaecati cupiditate non provident</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp " data-wow-duration="1.4s">
<div class="box bg-dark shadow">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title "><a href=""><span class="text-light">Internet of Things</span></a></h4>
<p class="description text-light">Voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint
occaecati cupiditate non provident</p>
</div>
</div>
</div>
</div>
</section>-->
<!-- #services -->
<!--==========================
Why Us Section
============================-->
<!-- <section id="why-us" class="wow fadeIn">
<div class="container-fluid">
<header class="section-header">
<h3 class="text-light">Why choose us?</h3>
<p class="text-light">Laudem latine persequeris id sed, ex fabulas delectus quo. No vel partiendo abhorreant
vituperatoribus.</p>
</header>
<div class="row">
<div class="col-lg-6">
<div class="why-us-img">
<img src="img/why-us.jpg" alt="" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="why-us-content">
<p class="text-light">Molestiae omnis numquam corrupti omnis itaque. Voluptatum quidem impedit. Odio
dolorum exercitationem
est error omnis repudiandae ad dolorum sit.</p>
<p class="text-light">
Explicabo repellendus quia labore. Non optio quo ea ut ratione et quaerat. Porro facilis deleniti porro
consequatur
et temporibus. Labore est odio.
Odio omnis saepe qui. Veniam eaque ipsum. Ea quia voluptatum quis explicabo sed nihil repellat..
</p>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-diamond" style="color: #f058dc;"></i>
<h4 class="text-light">Corporis dolorem</h4>
<p class="text-light">Commodi quia voluptatum. Est cupiditate voluptas quaerat officiis ex alias
dignissimos et ipsum.
Soluta at enim modi ut incidunt dolor et.</p>
</div>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-object-group" style="color: #ffb774;"></i>
<h4 class="text-light">Eum ut aspernatur</h4>
<p class="text-light">Molestias eius rerum iusto voluptas et ab cupiditate aut enim. Assumenda animi
occaecati. Quo dolore
fuga quasi autem aliquid ipsum odit. Perferendis doloremque iure nulla aut.</p>
</div>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-language" style="color: #589af1;"></i>
<h4 class="text-light">Voluptates dolores</h4>
<p class="text-light">Voluptates nihil et quis omnis et eaque omnis sint aut. Ducimus dolorum
aspernatur. Totam dolores ut
enim ullam voluptas distinctio aut.</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">274</span>
<p>Clients</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">421</span>
<p>Projects</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">1,364</span>
<p>Hours Of Support</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">18</span>
<p>Hard Workers</p>
</div>
</div>
</div>
</section> -->
<!--==========================
Call To Action Section
============================-->
<hr class="w-75" style="height:2px;border-width:0;color:gray;background-color:gray">
<!-- <section id="call-to-action" class="wow fadeInUp">
<div class="container">
<div class="row">
<div class="col-lg-9 text-center text-lg-left">
<h3 class="cta-title">Want to join us?</h3>
<p class="cta-text"> Join us to be the part of the best team of Nimbus and explore with us new
heights of knowledge and technology. Click on the button to fill the required google form.</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="align-middle prob-state " target="_blank"
href="https://docs.google.com/forms/d/e/1FAIpQLSfiKtu2oTvvLl62nBuF87P-qg_eu0eihKi34zT6n1XNohz-Ow/viewform?usp=sf_link"><span></span><span></span><span></span><span></span>Join
us!</a>
</div>
</div>
</div>
</section> -->
<!-- <section id="call-to-action" class="wow fadeInUp">
<div class="container">
<div class="row">
<div class="col-lg-9 text-center text-lg-left">
<h3 class="cta-title">NIMBUS</h3>
<p class="cta-text"> NIMBUS is the most awaited and distinguished technical fest of North India organised by NIT Hamirpur.
It is the conjugation of some of the finest technical minds in the country with a platform for them to promulgate their skills and talents and hence turning fantasy into corporeality !</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="align-middle prob-state " target="_blank"
href="https://festnimbus.com/"><span></span><span></span><span></span><span></span>View
</a>
</div>
</div>
</div>
</section>
<hr class="w-75" style="height:2px;border-width:0;color:gray;background-color:gray"> -->
<!--==========================
Features Section
============================-->
<!-- <section id="features">
<div class="container">
<p class="glitch text-center">
Timeline
</p>
<div class="glitch1 mt-0">Coming Soon</div>
<div class="scanlines"></div>
<div class="row feature-item">
<div class="row feature-item mt-5 pt-5">
<div class="col-lg-6 wow fadeInUp pt-4 pt-lg-0 order-2 order-lg-1">
</div>
</div>
</div>
</section> -->
<!--==========================
Clients Section
============================-->
<!-- <section id="testimonials">
<div class="container">
<header class="section-header">
<h3>Testimonials</h3>
</header>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="owl-carousel testimonials-carousel wow fadeInUp">
<div class="testimonial-item">
<img src="img/testimonial-1.jpg" class="testimonial-img" alt="">
<h3 class=" text-light">Saul Goodman</h3>
<h4 class=" text-light">Ceo & Founder</h4>
<p class=" text-light">
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium
quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
</p>
</div>
<div class="testimonial-item">
<img src="img/testimonial-2.jpg" class="testimonial-img" alt="">
<h3 class=" text-light">Sara Wilsson</h3>
<h4 class=" text-light">Designer</h4>
<p class=" text-light">
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis
quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
</p>
</div>
<div class="testimonial-item">
<img src="img/testimonial-3.jpg" class="testimonial-img" alt="">
<h3 class=" text-light">Jena Karlis</h3>
<h4 class=" text-light">Store Owner</h4>
<p class=" text-light">
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim
tempor labore quem eram duis noster aute amet eram fore quis sint minim.
</p>
</div>
<div class="testimonial-item">
<img src="img/testimonial-4.jpg" class="testimonial-img" alt="">
<h3 class=" text-light">Matt Brandon</h3>
<h4 class=" text-light">Freelancer</h4>
<p class=" text-light">
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit
minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
</p>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- #testimonials -->
<!--==========================
Team Section
============================-->
<section id="team">
<div class="container">
<div class="section-header">
<h3 class="text-light"> Core-Coordinators</h3>
<!-- <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque</p> -->
</div>
<div class="row justify-content-center ">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member shadow-lg">
<img src="img/team/Yash Prakash Gupta.jpg" class="img-fluid" alt="Yash Prakash Gupta">
<div class="member-info">
<div class="member-info-content">
<h4>Yash Prakash Gupta</h4>
<span>Core-Coordinator</span>
<div class="social">
<a target="_blank" href="https://instagram.com/2_yash_8?igshid=acmstdh7483s"><i class="fab fa-instagram"></i></a>
<a target="_blank" href="https://www.facebook.com/yash.p.gupta.1"><i class="fab fa-facebook"></i></a>
<a target="_blank" href="https://github.com/yashprakash28"><i class="fab fa-github"></i></a>
<a target="_blank" href="https://www.linkedin.com/in/yash-prakash-gupta/"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp " data-wow-delay="0.1s">
<div class="member shadow-lg">
<img src="img/team/Aniket Sirvastava.jpg" class="img-fluid" alt="Aniket Srivastava">
<div class="member-info">
<div class="member-info-content">
<h4>Aniket Srivastava</h4>
<span>Core-Coordinator</span>
<div class="social">
<a target="_blank" href="https://www.instagram.com/cyberrtrron/"><i
class="fab fa-instagram"></i></a>
<a target="_blank" href="https://www.facebook.com/aniket.srivastava.3572846"><i
class="fab fa-facebook"></i></a>
<a target="_blank" href="https://github.com/aniketsriv"><i class="fab fa-github"></i></a>
<a target="_blank" href="https://www.linkedin.com/in/aniket-srivastava-63544b171/"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #team -->
<!--==========================
Clients Section
============================-->
<!-- <section id="clients" class="wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Our Clients</h3>
</header>
<div class="owl-carousel clients-carousel">
<img src="img/clients/client-1.png" alt="">
<img src="img/clients/client-2.png" alt="">
<img src="img/clients/client-3.png" alt="">
<img src="img/clients/client-4.png" alt="">
<img src="img/clients/client-5.png" alt="">
<img src="img/clients/client-6.png" alt="">
<img src="img/clients/client-7.png" alt="">
<img src="img/clients/client-8.png" alt="">
</div>
</div>
</section>-->
<!-- #clients -->
<!--==========================
Frequently Asked Questions Section
============================-->
<hr class="w-75" style="height:2px;border-width:0;color:gray;background-color:gray">
<section id="faq">
<div class="container">
<header class="section-header">
<h3 class="text-light ">Frequently Asked Questions</h3>
<!-- <p class="text-light">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
</p> -->
</header>
<ul id="faq-list" class="wow fadeInUp">
<li>
<a data-toggle="collapse" class="collapsed text-light" href="#faq1">Can the students from another branch
join Team Vibhav? <i class="ion-android-remove"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
Yes, Team Vibhav welcomes people from all branches, and not only ECE, to learn and work together as a team. We have members in our team from other branches as well. Branch is no barrier, if you have interest in electronics and want to learn new things,
and have the zeal to work, you are welcome to give interviews.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed text-light">What will be asked in the interview? <i
class="ion-android-remove"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
Your thought process, your work ethics and your ability to learn something new are some of the things that are taken into consideration. We need motivated people who can work as a team. The questions asked in the interviews mainly test your zeal and enthusiasm
towards working for the team, your aptitude, and your technical skills (if any).
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed text-light"> I am not that good at technical things
currently, should I give the interview?
<i class="ion-android-remove"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
Technical skills are important but that is not the only parameter that is considered in the interviews, so feel free to appear for the interviews. As a fresher student, we do not expect each person to be good at technical things, as these are the things
everyone learns with time in college. If you have any technical skill, then it would definitely provide you a greater edge in the interviews, but the most important thing we look in any candidate is his/her enthusiasm,
his/her communication skills and whether he/she can coordinate and work in a team.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed text-light">Are there any prerequisites to join
Team Vibhav?
<i class="ion-android-remove"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
We are just looking for competent people, there are no prerequisites as such. You just need to have the zeal to work for the team.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed text-light">In what kind of domains Team Vibhav
make their projects?
<i class="ion-android-remove"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
We mainly focus on electronics based projects like embedded systems, circuit logics and also align to computer science related projects like in the field of machine learning, AR/VR, Web and App Development.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed text-light">Can we join two teams simultaneously?<i
class="ion-android-remove"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
Yes, you can join two Nimbus teams simultaneously, but we do not recommend joining two teams because the work schedule will be overly hectic and you will not be able to give your 100% in any of the teams besides you overworking yourself. Yet final decision
is always yours.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq7" class="collapsed text-light">What else can I learn by joining Team
Vibhav?
<i class="ion-android-remove"></i></a>
<div id="faq7" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
You will learn how to implement technology in real world problems by building prototypes from your ideas. Being a club abiding by - ‘Technology for a Cause’, we adhere to acceptable solutions for prime social problems. Hence you will also be a part of
market research and analysis involved in product development. Moreover, being in a team you will also learn skills like teamwork, good communication, time management etc.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq8" class="collapsed text-light">How does Team Vibhav stands differently
from
other teams?<i class="ion-android-remove"></i></a>
<div id="faq8" class="collapse" data-parent="#faq-list">
<p class="text-light text-justify">
We will provide you with a platform that will push you to do better and learn new things and basically it's super fun to learn and hangout in the nimbus work environment regardless of the team. Since you’re here reading this, you might as well join the
best team.
</p>
</div>
</li>
</ul>
</div>
</section>
<!-- #faq -->
</main>
<!--==========================
Footer
============================-->
<hr class="w-100" style="height:2.5px;border-width:0;color:gray;background-color:gray">
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="row">
<div class=" col-sm-12 ">
<a href="https://festnimbus.com" class="link mx-auto " id="nimbus" target="_blank">
<img src="img/n_white.png" alt="" width="100px" height="100px" class="vaishnavi">
</a>
<!-- <p class='vaishnavi'> Nimbus is the technical fest of NIT Hamirpur, in which Team Vibhav participates.
Moreover being the biggest tech festival of North India, it is something not worth to be missed.
To know more about fest Nimbus, visit <a href="https://festnimbus.com" class="link mb-2">Here</a> -->
</p>
<h2 class='vaishnavi1 mt-3'>Visit Official Nimbus Site</h2>
<!-- <div class="text-center">
<button class="btn btn-lg btn-success btncolor ">Here</button> -->
<!-- </div> -->
<h3 class="text-center mt-3 text-light">Follow Us On</h3>
<div class="social-links text-center mb-3">
<a href="https://www.instagram.com/team_vibhav/" target="_blank" class="instagram"><i
class="fab fa-instagram"></i></a>
<a href="https://www.facebook.com/teamvibhavece" target="_blank" class="facebook"><i
class="fab fa-facebook"></i></a>
<a href="https://www.linkedin.com/company/team-vibhav/" target="_blank" class="linkedin"><i
class="fab fa-linkedin"></i></a>
<a href="https://youtube.com/channel/UCt8W-_urFuy3dqulfQvk8fQ" target="_blank" class="instagram"><i
class="fab fa-youtube"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-8">
<h1 class="h3 mb-3 font-weight-normal text-center text-light">Contact Us</h1>
<form action="https://formspree.io/f/mvovygen" class="form-signin" method="POST">
<label for="inputEmail" class="sr-only">Email address</label>
<input name="email" type="email" id="inputEmail" class="form-control mb-3" placeholder="Email address" required>
<div class="form-group">
<textarea name="message" placeholder="Message" class="form-control" id="exampleFormControlTextarea1" rows="3" required></textarea>
</div>
<button class="btn btn-lg btn-success btncolor " type="submit">Send Message</button>
</form>
</div>
</div>
</div>
</div>
<hr class="w-75" style="height:2px;border-width:0;color:gray;background-color:gray">
<div class="container mx-auto">
<div class="credits text-light">
Designed by <a href="#">Vibhav</a>
</div>
</div>
</footer>
<!-- #footer -->
<a href="#" class="back-to-top"><i class="fas fa-arrow-up"></i></a>
<!-- Uncomment below i you want to use a preloader -->
<!-- <div id="preloader"></div> -->
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/mobile-nav/mobile-nav.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<script type="text/javascript">
$(window).load(function() {
setTimeout(function() {
$('#loading').fadeOut('slow');
}, 3600)
})
</script>
</body>
</html>