-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1051 lines (890 loc) · 36.8 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">
<title>Eamvey Careers</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Poppins:300,400,500,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<a href="#hero"><img src="img/logo.png" alt="" title="" /></img></a>
<!-- Uncomment below if you prefer to use a text logo -->
<!--<h3><a href="#logo">Eamvey Careers</a></h3> -->
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#hero">Home</a></li>
<li><a href="#about">Intro</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Intern</a></li>
<li><a href="#team">Team</a></li>
<!--<li class="menu-has-children"><a href="">Drop Down</a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="menu-has-children"><a href="#">Drop Down 2</a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
<li><a href="#">Drop Down 5</a></li>
</ul>
</li>-->
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Hero Section
============================-->
<section id="hero">
<div class="hero-container">
<h1>Welcome to Eamvey Careers</h1>
<h2>A Blend of Knowledge and Potential</h2>
<a href="#about" class="btn-get-started">Get Started</a>
</div>
</section><!-- #hero -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<div class="row about-container">
<div class="col-lg-6 content order-lg-1 order-2">
<h2 class="title">About Us</h2>
<p>
Career planning is done right when an Individual rightly assess his interest along with potential and academics but it would be even more great and beneficial if he/she could analyse the same by grabbing an opportunity to work with renowned career development institutions like "Eamvey Careers".
</p>
<div class="icon-box wow fadeInUp">
<div class="icon"><i class="fa fa-university"></i></div>
<h4 class="title"><a href="">Career Opportunity</a></h4>
<p class="description">Eamvey Careers is a virtual learning and training platform setup in assistance with Eamvey to enable students all over India to enhance their knowledge in terms of the job they are going to perform in future. </p>
</div>
<div class="icon-box wow fadeInUp" data-wow-delay="0.4s">
<div class="icon"><i class="fa fa-briefcase"></i></div>
<h4 class="title"><a href="">Interns</a></h4>
<p class="description">The Interns are also honoured with a verified Certificate at the end of the Internship which can essentially be an add-on to their resume for the purpose of placements.</p>
</div>
<div class="icon-box wow fadeInUp" data-wow-delay="0.2s">
<div class="icon"><i class="fa fa-users"></i></div>
<h4 class="title"><a href="">Mentors</a></h4>
<p class="description">The offers of Eamvey Careers come with a well-versed mentors, quality guidance and timely review of the tasks performed so that the students are ensured of their professionalism at the end of the project/research/internship. </p>
</div>
</div>
<div class="col-lg-6 background order-lg-2 order-1 wow fadeInRight"></div>
</div>
</div>
</section><!-- #about -->
<!--==========================
Facts Section
============================-->
<section id="facts">
<div class="container wow fadeIn">
<div class="section-header">
<h3 class="section-title">Facts</h3>
<p class="section-description">Statistics of the Students who build their Career at Eamvey Careers</p>
</div>
<div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">232</span>
<p>Students</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">521</span>
<p>Projects</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">1,463</span>
<p>Hours Of Work</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">208</span>
<p>Success</p>
</div>
</div>
</div>
</section><!-- #facts -->
<!--==========================
Services Section
============================-->
<section id="services">
<div class="container wow fadeIn">
<div class="section-header">
<h3 class="section-title">Services</h3>
<p class="section-description">Facilitation of virtual learning platform for elevation of Adroitness in all future Job Aspirants. </p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="box">
<div class="icon"><a href=""><i class="fa fa-suitcase"></i></a></div>
<h4 class="title"><a href="">Interns</a></h4>
<p class="description">Become the one among few who intend to stand out with Practical and Technical Awareness.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.4s">
<div class="box">
<div class="icon"><a href=""><i class="fa fa-object-group"></i></a></div>
<h4 class="title"><a href="">Projects</a></h4>
<p class="description">Involve and perform the Assignments that mainly Emphasizes on Enhancement and Excellence.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.6s">
<div class="box">
<div class="icon"><a href=""><i class="fa fa-universal-access"></i></a></div>
<h4 class="title"><a href="">Trainings</a></h4>
<p class="description">Upskill yourself and turn absolutely wizard and competent by learning with well-versed Instructors.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="box">
<div class="icon"><a href=""><i class="fa fa-bar-chart"></i></a></div>
<h4 class="title"><a href="">Research</a></h4>
<p class="description">Experience the process of fact-finding and indagation with joy and thorough Comprehension.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.4s">
<div class="box">
<div class="icon"><a href=""><i class="fa fa-briefcase"></i></a></div>
<h4 class="title"><a href="">Careers</a></h4>
<p class="description">Eamvey Careers also helps students in adding more value to the precis of their Academics and Skills.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.6s">
<div class="box">
<div class="icon"><a href=""><i class="fa fa-users"></i></a></div>
<h4 class="title"><a href="">Mentorship</a></h4>
<p class="description">Get in touch with the guidance that emulates to profound knowledge from well-informed mentors.</p>
</div>
</div>
</div>
</div>
</section><!-- #services -->
<!--==========================
Call To Action Section
============================-->
<section id="call-to-action">
<div class="container wow fadeIn">
<div class="row">
<div class="col-lg-9 text-center text-lg-left">
<h3 class="cta-title">Call To Eamvey</h3>
<p class="cta-text"> Eamvey is an home automation business Company. The main goal of this entity is "To provide right smart home services at the appropriate time". Eamvey basically provide their quality assured services in the form of packages and separate service as well. <br>Eamvey Careers is a virtual learning and training platform setup in assistance with Eamvey to enable students all over India to enhance their knowledge in terms of the job they are going to perform in future. </p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="https://www.eamvey.com/">Visit Eamvey</a>
</div>
</div>
</div>
</section><!-- #call-to-action -->
<!--==========================
Portfolio Section
============================-->
<section id="portfolio">
<div class="container wow fadeInUp">
<div class="section-header">
<h3 class="section-title">Internship</h3>
<p class="section-description">These are the Internships provide by us which helps you to build your Career,<br> Gain Experience and Increase Marketability.</p>
</div>
<div class="row">
<div class="col-lg-12">
<ul id="portfolio-flters">
<li data-filter=".filter-cse" class=".filter-active">CSE / IT</li>
<li data-filter=".filter-eee">EEE / ECE</li>
<li data-filter=".filter-comm">Commerce</li>
<li data-filter=".filter-mech">Mechanical</li>
<li data-filter=".filter-bio">Bio-Tech</li>
<li data-filter=".filter-chem">Chemical</li>
</ul>
</div>
</div>
<div class="row" id="portfolio-wrapper">
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse1.jpg" alt="">
<div class="details">
<h4>CSE / IT 1</h4>
<span>Programming</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse2.png" alt="">
<div class="details">
<h4>CSE / IT 2</h4>
<span>Object Oriented Programming</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse3.jpg" alt="">
<div class="details">
<h4>CSE / IT 3</h4>
<span>Web Development(Front-End)</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse4.png" alt="">
<div class="details">
<h4>CSE / IT 4</h4>
<span>Web Development(Back-End)</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse5.jpg" alt="">
<div class="details">
<h4>CSE / IT 5</h4>
<span>App Development</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse6.jpg" alt="">
<div class="details">
<h4>CSE / IT 6</h4>
<span>Machine Learning</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse7.jpg" alt="">
<div class="details">
<h4>CSE / IT 7</h4>
<span>Artificial Intelligence</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse8.jpg" alt="">
<div class="details">
<h4>CSE / IT 8</h4>
<span>Data Science</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse9.png" alt="">
<div class="details">
<h4>CSE / IT 9</h4>
<span>Data Structures And Algo</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse10.jpg" alt="">
<div class="details">
<h4>CSE / IT 10</h4>
<span>Micro Processors </span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-cse">
<a href="">
<img src="img/portfolio/cse11.jpeg" alt="">
<div class="details">
<h4>CSE / IT 11</h4>
<span>IOT</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee1.jpg" alt="">
<div class="details">
<h4>EEE / ECE 1</h4>
<span>Communication And Digital Signal Processing</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee2.jpg" alt="">
<div class="details">
<h4>EEE / ECE 2</h4>
<span>Computers</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee3.jpg" alt="">
<div class="details">
<h4>EEE / ECE 3</h4>
<span>Control</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee4.jpg" alt="">
<div class="details">
<h4>EEE / ECE 4</h4>
<span>Electro Magnetics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee5.jpeg" alt="">
<div class="details">
<h4>EEE / ECE 5</h4>
<span>IOT</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee6.jpg" alt="">
<div class="details">
<h4>EEE / ECE 6</h4>
<span>Electronics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee7.jpg" alt="">
<div class="details">
<h4>EEE / ECE 7</h4>
<span>Energy And Power</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee8.jpg" alt="">
<div class="details">
<h4>EEE / ECE 8</h4>
<span>Solid State Electronics And Photonics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee9.jpg" alt="">
<div class="details">
<h4>EEE / ECE 9</h4>
<span>Micro Electronics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-eee">
<a href="">
<img src="img/portfolio/eee10.jpg" alt="">
<div class="details">
<h4>EEE / ECE 10</h4>
<span>VLSI Or Integrated Circuits And Systems</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-comm">
<a href="">
<img src="img/portfolio/comm1.jpg" alt="">
<div class="details">
<h4>Commerce 1</h4>
<span>Sales And Marketing</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-comm">
<a href="">
<img src="img/portfolio/comm2.jpg" alt="">
<div class="details">
<h4>Commerce 2</h4>
<span>Social Media Marketing</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-comm">
<a href="">
<img src="img/portfolio/comm3.png" alt="">
<div class="details">
<h4>Commerce 3</h4>
<span>Operation</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-comm">
<a href="">
<img src="img/portfolio/comm4.jpg" alt="">
<div class="details">
<h4>Commerce 4</h4>
<span>Accounting</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-comm">
<a href="">
<img src="img/portfolio/comm5.jpg" alt="">
<div class="details">
<h4>Commerce 5</h4>
<span>Financial Analyst</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech1.jpg" alt="">
<div class="details">
<h4>Mechanical 1</h4>
<span>Combustion And The Environment</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech2.jpg" alt="">
<div class="details">
<h4>Mechanical 2</h4>
<span>Ground Vehical Systems</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech3.jpg" alt="">
<div class="details">
<h4>Mechanical 3</h4>
<span>Heat Transfer,Thermodynamics And Energy Systems</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech4.jpg" alt="">
<div class="details">
<h4>Mechanical 4</h4>
<span>Manufacturing</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech5.jpg" alt="">
<div class="details">
<h4>Mechanical 5</h4>
<span>Mechanical Design</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech6.jpg" alt="">
<div class="details">
<h4>Mechanical 6</h4>
<span>System Dynamics And Control</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech7.jpg" alt="">
<div class="details">
<h4>Mechanical 7</h4>
<span>Transportation Systems</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-mech">
<a href="">
<img src="img/portfolio/mech8.jpg" alt="">
<div class="details">
<h4>Mechanical8</h4>
<span>Material Science</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio1.jpg" alt="">
<div class="details">
<h4>Bio-Tech 1</h4>
<span>Bioinformatics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio2.jpg" alt="">
<div class="details">
<h4>Bio-Tech 2</h4>
<span>Pharmaceutical Biotechnology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio3.jpg" alt="">
<div class="details">
<h4>Bio-Tech 3</h4>
<span>Diagnostics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio4.png" alt="">
<div class="details">
<h4>Bio-Tech 4</h4>
<span>Fermentation Technology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio5.jpg" alt="">
<div class="details">
<h4>Bio-Tech 5</h4>
<span>Multi-OMICs Technology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio6.jpg" alt="">
<div class="details">
<h4>Bio-Tech 6</h4>
<span>Recombinant Protein Technology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio7.jpg" alt="">
<div class="details">
<h4>Bio-Tech 7</h4>
<span>Food Biotechnology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio8.jpg" alt="">
<div class="details">
<h4>Bio-Tech 8</h4>
<span>Agriculture Biotechnology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-bio">
<a href="">
<img src="img/portfolio/bio9.jpg" alt="">
<div class="details">
<h4>Bio-Tech 9</h4>
<span>Environmental Biotechnology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che1.jpg" alt="">
<div class="details">
<h4>Chemical 1</h4>
<span>Inorganic Chemical Technology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che2.jpg" alt="">
<div class="details">
<h4>Chemical 2</h4>
<span>Organic Chemical Technology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che3.jpg" alt="">
<div class="details">
<h4>Chemical 3</h4>
<span>Physical Chemistry</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che4.jpg" alt="">
<div class="details">
<h4>Chemical 4</h4>
<span>Partial Differential Equation</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che5.jpg" alt="">
<div class="details">
<h4>Chemical 5</h4>
<span>Chemical Engineering Thermodynamics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che6.png" alt="">
<div class="details">
<h4>Chemical 6</h4>
<span>Particulate Science And Technology </span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che7.jpg" alt="">
<div class="details">
<h4>Chemical 7</h4>
<span>Environmental Engineering</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che8.jpg" alt="">
<div class="details">
<h4>Chemical 8</h4>
<span>Fluid Mechanics</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che9.jpg" alt="">
<div class="details">
<h4>Chemical 9</h4>
<span>Basic Concepts Of Mechanical Engineering</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che10.jpg" alt="">
<div class="details">
<h4>Chemical 10</h4>
<span>Material Science And Technology</span>
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-chem">
<a href="">
<img src="img/portfolio/che11.jpg" alt="">
<div class="details">
<h4>Chemical 11</h4>
<span>Biochemical Engineering</span>
</div>
</a>
</div>
</div>
</div>
</section><!-- #portfolio -->
<!--==========================
Call To Payment Section
============================-->
<section id="call-to-payment" class="wow fadeIn">
<div class="container text-center">
<h3>Join For Internship</h3>
<p>Get in connection with the community of young minds to explore a different version of learning and upskilling <br> through one of the best virtual platform. <br><br>Pay the Registration fee and fill the Form below.</p>
<a class="cta-btn" href="https://www.payumoney.com/paybypayumoney/#/90822D5A0F352429E3435BC8E1D5F22D">Pay Now</a>
<a class="cta-btn" href="form.html">Register Here</a>
</div>
</section><!-- #call-to-Payment -->
<!--==========================
Team Section
============================-->
<section id="team">
<div class="container wow fadeInUp">
<div class="section-header">
<h3 class="section-title">Our Team</h3>
<p class="section-description">We're as strong and as knowledgeable as our team. <br>So here are the men and women that contributed to the idea of Eamvey Careers</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="member">
<div class="pic"><img src="img/team-1.jpg" alt=""></div>
<h4>Manoj Vamsee</h4>
<span>Chief Executive Officer</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="member">
<div class="pic"><img src="img/team-1.jpg" alt=""></div>
<h4>Manoj Vamsee</h4>
<span>Product Manager</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="member">
<div class="pic"><img src="img/team-1.jpg" alt=""></div>
<h4>Manoj Vamsee</h4>
<span>CTO</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="member">
<div class="pic"><img src="img/team-1.jpg" alt=""></div>
<h4>Manoj Vamsee</h4>
<span>Web Designer</span>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- #team -->
<!--==========================
Contact Section
============================-->
<section id="contact">
<div class="container wow fadeInUp">
<div class="section-header">
<h3 class="section-title">Contact</h3>
<p class="section-description">You can stop by our office for a cup of coffee and just use the contact form below for any questions and inquiries.</p>
</div>
</div>
<!-- Uncomment below if you wan to use dynamic maps -->
<!--<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d22864.11283411948!2d-73.96468908098944!3d40.630720240038435!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew+York%2C+NY%2C+USA!5e0!3m2!1sen!2sbg!4v1540447494452" width="100%" height="380" frameborder="0" style="border:0" allowfullscreen></iframe>-->
<div class="container wow fadeInUp mt-5">
<div class="row justify-content-center">
<div class="col-lg-3 col-md-4">
<div class="info">
<div>
<i class="fa fa-map-marker"></i>
<p>No Office, Guntur <br> Andhra Pradesh, India</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p>admin@eamvey.com</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+91 9948 959 646</p>
</div>
</div>
<div class="social-links">
<a href="https://twitter.com/eamvey/" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/eamveyhomeautomation/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/eamvey/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCClUrLj_Ty0V3V0Ofm2oRTw" class="google-plus"><i class="fa fa-youtube-play"></i></a>
<!--<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>-->
</div>
</div>
<div class="col-lg-5 col-md-8">
<div class="form">
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage"></div>
<form action="" method="post" role="form" class="contactForm">
<div class="form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validation"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validation"></div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>