-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1019 lines (1000 loc) · 56.6 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>
<!--=============== basic ===============-->
<meta charset="UTF-8">
<title>Roboinventions</title>
<meta name="description" content="Your website description here">
<meta name="keywords" content="your, website, keywords, here">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!--=============== css ===============-->
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen">
<!--=============== modernizr ===============-->
<script src="js/modernizr.custom.97074.js"></script>
<!--=============== google map ===============-->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<!--=============== ie styles ===============-->
<!--[if IE 8]><link rel="stylesheet" type="text/css" href="css/ie8.css" /><![endif]-->
<!--=============== favicons ===============-->
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body onLoad="initialize()">
<div id="main">
<!--=============== navigation ===============-->
<div class="navigation isDown">
<!-- <div class="nav-overlay"></div>-->
<div class="nav-button transition">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="inner">
<img src="images/logo.png" class="logo" alt="" title="">
<div class="link-holder" id="nav">
<ul>
<li class="current"><a href="#about" class="scroll-link">About</a>
</li>
<li><a href="#team" class="scroll-link">Team</a>
</li>
<li><a href="#servises" class="scroll-link">Services</a>
</li>
<li><a href="#portfolio" class="scroll-link">Works</a>
</li>
<li><a class="blog">Blog</a>
</li>
<li><a href="#contacts" class="scroll-link">Contacts</a>
</li>
</ul>
</div>
</div>
<div class="social-list">
<ul>
<li><a href="https://www.facebook.com/roboinventions" target="_blank"><i class="fa fa-facebook fa-2x"></i></a>
</li>
<li><a href="https://twitter.com/Roboinventions" target="_blank"><i class="fa fa-twitter fa-2x"></i></a>
</li>
<li><a href="https://plus.google.com/+RoboInventionsKochi" target="_blank"><i class="fa fa-google-plus fa-2x"></i></a>
</li>
</ul>
</div>
<header class="header">
<nav id="head" class="headerbar">
<li class="inline "><a href="#about" class="scroll-links actcat">About</a>
</li>
<li class="inline"><a href="#team" class="scroll-links">Team</a>
</li>
<li class="inline"><a href="#servises" class="scroll-links">Services</a>
</li>
<li class="inline">
<img src="images/rlogo.png" class="logomiddle current" alt="" title="">
</li>
<li class="inline"><a href="#portfolio" class="scroll-links">Works</a>
</li>
<li class="inline"><a href="index.html" class="scroll-links blog">Blog</a>
</li>
<li class="inline"><a href="#contacts" class="scroll-links">Contact</a>
</li>
<div class="tel phone left" name="tooltip" title="Call Us Now"><i class="fa fa-mobile fa-4x"></i>
</div>
</nav>
</header>
</div>
<!--=============== navigation end ===============-->
<div class="overlay fixed-overlay body-overlay"></div>
<div class="wrapper">
<!--=============== intro slide ===============-->
<div id="intro">
<div id="topSlide">
<div id="slides">
<ul class="slides-container">
<!-- Slide 1 -->
<li style="background-color:black;">
<div class="rester"></div>
<div class="container">
<h3>Welcome to</h3>
<h1 class="white">Robo<span>Inventions</span></h1>
<div class="patern clear"><span></span>
</div>
</div>
<div style="background-image: url('images/photos/z3dprinter1.jpg'); opacity: .5;position:absolute;" class="slides-big-img"></div>
</li>
<!-- Slide 2 -->
<li style="background-color:black;">
<div class="rester"></div>
<div class="container">
<h3>We</h3>
<h1 class="white"><span>Learn.</span> Tinker.<span> Innovate</span></h1>
<div class="patern clear"><span class="right"></span>
</div>
</div>
<div style="background-image: url('images/photos/multirotor.jpg'); opacity: .5;" class="slides-big-img"></div>
</li>
<!-- Slide 3 -->
<li style="background-color:black;">
<div class="rester"></div>
<div class="container">
<h3>Print It Out</h3>
<h1 class="white"><span>Z3D</span> Printer </h1>
<div class="patern clear"><span></span>
</div>
</div>
<div style="background-image: url('images/photos/printfromz3d.JPG'); opacity: .5;" class="slides-big-img"></div>
</li>
</ul>
<div class="slides-navigation">
<a href="#" class="prev"><i class="fa fa-angle-left fa-6 "></i></a>
<a href="#" class="next"><i class="fa fa-angle-right fa-6"></i></a>
</div>
</div>
<!-- <a href="#about" class="start"><img src="images/start.png" alt="" title=""></a>-->
</div>
</div>
<!--=============== intro end ===============-->
<!--=============== section about ===============-->
<div id="about" class="sections ws">
<div class="content">
<div class="container">
<h3 class="sections-head">Who we are</h3>
<h2>About us</h2>
<div id="owl-demo" class="owl-carousel">
<!-- slide 1-->
<div class="item fist-slide">
<div class="small-separator"></div>
<p>Robo Inventions is a young and energetic team working on cutting edge technologies in Embedded Systems, Robotics and Avionics. Based out of Cochin, Kerala, we design and build products that would ultimately be the answer to many of our real life problems. With an ever growing hunger to improve technology, we aim at changing the landscape of the Indian Electronics Industry in the coming years. Despite being known as the land of ‘Jugaad’, Electronics, unlike software, has never enjoyed the limelight in the Indian curriculum, resulting in very few innovators in this domain. We decided to bridge this gap & named it Robo Inventions. In association with the Maker movement, a global initiative, we have been bridging gaps between our institutions and industrial requirements since 2012.
</p>
<div class="customNavigation">
<a class="btn next-slide transition lanch-sklills">next</a>
</div>
</div>
<!-- slide 2 -->
<div class="item">
<div class="grid-2">
<h3 class="bigtext">Mission Statement</h3>
<div class="small-separator"></div>
<p>Robo Inventions is actively working on innovative design & manufacture of electronic products that are customized to the Indian Market & cater to a large variety of domains. It has been our passion to educate the youth on varied technologies & with support from KELTRON - India’s first & largest electronics corporation in the state sector, Robo Inventions was able to take its vision a step further and build interest among the Indian youth in the field of electronics manufacturing. 2 years down the line, with over 2000 converts from around 25 institutions building ‘Swadeshi’ products, we are proud of having contributed to the ‘Make in India’ movement. Robo Inventions has come a long way from training the youth to filling voids in our industry with customised products that make our lives simpler.</p>
</div>
<div class="grid-2">
<h3 class="bigtext">Our Vision</h3>
<div class="small-separator"></div>
<p>Our vision is to transform India into a Global leader in innovative Product development and Manufacturing and thereby accelerate the economic growth. We believe that, to achieve this we will need to educate the youth, spark interest and provide an environment for continuous growth & excellence, set up world class infrastructure with the help of technology and manufacturing & finally reduce the brain drain.</p>
</div>
<div class="grid-2">
<h3 class="bigtext">Our skills</h3>
<div class="small-separator"></div>
<div class="skillbar-holder">
<div class="skillbar-title"><span>Robotics</span>
</div>
<div class="skill-bar-percent">90%</div>
<div class="skillbar clearfix " data-percent="90%">
<div class="skillbar-bar"></div>
</div>
<div class="skillbar-title"><span>Avionics</span>
</div>
<div class="skill-bar-percent">75%</div>
<div class="skillbar clearfix " data-percent="75%">
<div class="skillbar-bar"></div>
</div>
<div class="skillbar-title"><span>Embedded Systems</span>
</div>
<div class="skill-bar-percent">70%</div>
<div class="skillbar clearfix " data-percent="70%">
<div class="skillbar-bar"></div>
</div>
<div class="skillbar-title"><span> 3D printing</span>
</div>
<div class="skill-bar-percent">85%</div>
<div class="skillbar clearfix" data-percent="85%">
<div class="skillbar-bar"></div>
</div>
</div>
</div>
<div class="customNavigation clear">
<a class="btn close transition">next</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--=============== section about end ===============-->
<!--=============== section facts ===============-->
<div id="facts" class="sections">
<div class="content">
<div class="container">
<h3 class="section-head white">Statistics</h3>
<h2 class="white">Some fun facts</h2>
<div class="small-separator ws"></div>
<ul>
<!-- fact 1-->
<li class="grid-1">
<div class="milestone-counter">
<div class="stats animaper">
<div id="cups" data-content="45" class="num" data-num="45"></div>
</div>
</div>
<h6><i class="fa fa-coffee fa-2x"></i><span>Coffee Cups Today</span></h6>
</li>
<!-- fact 2-->
<li class="grid-1">
<div class="milestone-counter">
<div class="stats animaper">
<div class="num" data-content="61" data-num="61">0</div>
</div>
</div>
<h6><i class="fa fa-wrench fa-2x"></i><span>Screws tightened</span></h6>
</li>
<!-- fact 3-->
<li class="grid-1">
<div class="milestone-counter">
<div class="stats animaper">
<div class="num" data-content="35" data-num="35">k</div>
</div>
</div>
<h6><i class="fa fa-male fa-2x"></i><span>Mentees</span></h6>
</li>
<!-- fact 4-->
<li class="grid-1">
<div class="milestone-counter">
<div class="stats animaper">
<div class="num" data-content="37" data-num="37">0</div>
</div>
</div>
<h6><i class="fa fa-group fa-2x"></i><span>Happy Clients</span></h6>
</li>
<!-- fact 5-->
<li class="grid-1">
<div class="milestone-counter">
<div class="stats animaper">
<div class="num" data-content="5" data-num="5">0</div>
</div>
</div>
<h6><i class="fa fa-gears fa-2x"></i><span>Products</span></h6>
</li>
</ul>
</div>
</div>
</div>
<!--=============== section facts end ===============-->
<!--=============== section team ===============-->
<div id="team" class="sections animaper ws">
<div class="content">
<div class="quote-icon"><i class="fa fa-bolt "></i>
</div>
<div class="container">
<h3 class="sections-head">Our team</h3>
<h2>Meet our team</h2>
<div class="clear"></div>
<div class="small-separator sepcolor"></div>
<div class="clear"></div>
<p>We're a mixed bag of individuals from different backgrounds. Some bring in tech knowhow,some bring in marketing gyaan and some bring in process management.</p>
<div class="member-box animaper">
<div class="moreinfo notvisible">
<img src="images/photos/Prateesh.jpg" class="member-photo respimg" alt="" title="">
<div class="member-skils">
<div class="overlay team-overlay"></div>
<div class="clear"></div>
<p class="clear">He is the Tech powerhouse and the one who sleeps the least</p>
<div class="member-social-list">
<ul>
<li><a href="https://www.facebook.com/coolpratheesh" target="_blank" class="transition"><i class="fa fa-facebook fa-1x"></i></a>
</li>
<li><a href="https://twitter.com/coolpratheesh" target="_blank" class="transition"><i class="fa fa-twitter fa-1x"></i></a>
</li>
<li><a href="https://plus.google.com/u/0/109401333090753498988/posts" target="_blank" class0px="transition"><i class="fa fa-google-plus fa-1x"></i></a>
</li>
<li><a href="http://in.linkedin.com/pub/pratheesh-prakash/49/a00/568" target="_blank" class="transition"><i class="fa fa-linkedin fa-1x"></i></a>
</li>
</ul>
</div>
</div>
</div>
<h3>Prateesh Prakash</h3>
<span>Managing Director Head R&D</span>
</div>
<!-- member 2 -->
<div class="member-box animaper">
<div class="moreinfo notvisible">
<img src="images/photos/Arun.jpg" class="member-photo respimg" alt="" title="">
<div class="member-skils">
<div class="overlay team-overlay"></div>
<div class="clear"></div>
<p class="clear">He is the marketing guru who co-ordinate the day to day activities</p>
<div class="member-social-list">
<ul>
<li><a href="https://www.facebook.com/arun.joy.7505" target="_blank" class="transition"><i class="fa fa-facebook fa-1x"></i></a>
</li>
<li><a href="https://twitter.com/ArunJoyC" target="_blank" class="transition"><i class="fa fa-twitter fa-1x"></i></a>
</li>
<li><a href="https://plus.google.com/108843001692795068758" target="_blank" class="transition"><i class="fa fa-google-plus fa-1x"></i></a>
</li>
<li><a href="in.linkedin.com/pub/arun-joy/6b/281/872" target="_blank" class="transition"><i class="fa fa-linkedin fa-1x"></i></a>
</li>
</ul>
</div>
</div>
</div>
<h3>Arun Joy</h3>
<span>Director,Head Marketing</span>
</div>
<!-- member 3 -->
<div class="member-box animaper">
<div class="moreinfo notvisible">
<img src="images/photos/puneet.jpg" class="member-photo respimg" alt="" title="">
<div class="member-skils">
<div class="overlay team-overlay"></div>
<div class="clear"></div>
<p class="clear">He is the robogeek who manages the operations of the company</p>
<div class="member-social-list">
<ul>
<li><a href="https://www.facebook.com/puneetbuddy" target="_blank" class="transition"><i class="fa fa-facebook fa-1x"></i></a>
</li>
<li><a href="https://twitter.com/puneetmelwani" target="_blank" class="transition"><i class="fa fa-twitter fa-1x"></i></a>
</li>
<li><a href="https://plus.google.com/110014241353262669509/" target="_blank" class="transition"><i class="fa fa-google-plus fa-1x"></i> </a>
</li>
<li><a href="https://www.linkedin.com/pub/puneet-melwani/22/686/514" target="_blank" class="transition"><i class="fa fa-linkedin fa-1x"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<h3>Puneet Melwani</h3>
<span>Executive Director</span>
</div>
</div>
</div>
</div>
<!--=============== section team end ===============-->
<!--=============== section servises ===============-->
<div id="servises" class="sections">
<div class="content">
<div class="quote-icon"><i class="fa fa-cogs"></i>
</div>
<div class="rester"></div>
<div class="rester red"></div>
<div class="container">
<h3 class="sections-head white">What we do</h3>
<h2 class="white">Services</h2>
<div class="small-separator ws"></div>
<p class="white">We provide all sorts of services that involve wires,bots,chipsets,motors,rotors,led and a lot of creativity. In our past time,we also like to infect likeminded people with our passion.</p>
<div class="row" id="service_boxes">
<div class="service_box animaper">
<a name="0" class="animbox">Embedded Systems</a>
</div>
<div class="service_box animaper">
<a name="1" class="animbox">Robotics</a>
</div>
<div class="service_box actser animaper">
<a name="2" class="animbox">3D Printing</a>
</div>
<div class="service_box animaper">
<a name="3" class="animbox">Mentoring</a>
</div>
<div class="service_box animaper">
<a name="4" class="animbox">Avionics</a>
</div>
</div>
</div>
<div class="serviseslider-holder nav">
<div class="container">
<div class="serviseslider">
<ul class="slides">
<!-- fist-slide -->
<li>
<div class="icon-holder">
<i class="fa fa-cogs fa-2x"></i>
</div>
<h3><span></span>Embedded Systems<span></span></h3>
<h4>We have created embedded systems for over 80 clients over past 6 years</h4>
<p></p>
</li>
<!-- second-slide -->
<li>
<div class="icon-holder">
<i class="fa fa-gamepad fa-2x"></i>
</div>
<h3><span></span>Robotics<span></span></h3>
<h4>From flying to swimming robots, we create all </h4>
<p></p>
</li>
<!-- third-slide -->
<li>
<div class="grid-6">
<img src="images/Z3D%20small.png">
<h3 class="sections-head">Bring Designs To Life</h3>
<div class="small-separator"></div>
<div class="grid-3">
<div id=printerbtn class="button3d">
<h4 class="white">3D Printing Services</h4>
</div>
<div class="grid-6">
<h4 class="bigtext">printing at your doorsteps</h4>
</div>
</div>
<div class="grid-3">
<div id=ebrochure class="button3d">
<h4 class="white">Z3D Printer</h4>
</div>
<div class="grid-6">
<h4 class="bigtext"> Know More About Our 3D Printer</h4>
</div>
</div>
</div>
</li>
<!-- fourth slide-->
<li>
<div class="icon-holder">
<i class="fa fa-users fa-2x"></i>
</div>
<h3><span></span>Mentoring<span></span></h3>
<h4>We love to nurture the madness in people who have knack of tinkering with things</h4>
<p></p>
</li>
<!-- fifth slide-->
<li>
<div class="icon-holder">
<i class="fa fa-plane fa-2x"></i>
</div>
<h3><span></span>Avionics<span></span></h3>
<h4>We specialize in making things fly and capture aerial shots to strengthen security</h4>
<p></p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--=============== section servises end ===============-->
<!--=============== section testimontals ===============-->
<div id="testimonials" class="sections">
<div class="content">
<div class="quote-icon"><i class="fa fa-quote-right"></i>
</div>
<div class="rester"></div>
<div class="rester black"></div>
<div class="container">
<h2 class="white">Testimonials</h2>
<div class="small-separator ws"></div>
<h3 class="sections-head white">Our Clients love us</h3>
<div class="clear"></div>
<div id="clientsay" class="owl-carousel">
<!--1 testimontal -->
<div class="item">
<p>“My experience with the organization thus far has been quite profitable. The professionalism and service offered has been wonderful. I would HIGHLY RECOMMEND Robo Inventions.”</p>
<span>- Gurbaksh Singh, Creative Director Webchutney Studios Pvt Ltd.-</span>
</div>
<!--2 testimontal -->
<div class="item">
<p>“I searched all over and looked at many different 3d printers to decide which one to use and yours was by far the best. Found a simple way to make my own 3d models.”</p>
<span>- Rohildev NV, CEO FIN Robotics Inc.-</span>
</div>
<!--3 testimontal -->
<div class="item">
<p>“A powerful 3d Printer. I love it! I appreciate all your efforts. The results exceeded all my expectations. Thanks for a quality product”</p>
<span>- Ani Abraham Joy, COO Sectorqube Technologies Pvt Ltd. -</span>
</div>
<div class="item">
<p>“Finally a really awesome 3D printer From INDIA.”</p>
<span>-Achu GR, Director, Page 1 Techno Precision Pvt Ltd. -</span>
</div>
<div class="item">
<p>“Really impressed with your work...and even more with the way you guys co-ordinate and deliver. Kudos. Looking forward to work more with you guys.”</p>
<span>-Vivek Mohan, CEO Bisko Labs. -</span>
</div>
<div class="item">
<p>“Thank you for bringing futuristic technologies to the common mans’ reach”</p>
<span>-Arjun H, Proprietor Gite Farm Solutions. -</span>
</div>
</div>
</div>
</div>
</div>
<!--=============== section testimontal end ===============-->
<!--=============== section portfolio ===============-->
<div id="portfolio" class="sections ws">
<div class="content">
<div class="quote-icon"><i class="fa fa-suitcase"></i>
</div>
<h3 class="sections-head">Straight From The Junkyard</h3>
<div class="container grid1">
<h2>Our works</h2>
<div class="small-separator"></div>
<p>Want to find out what we've been up to in the past few years?Check out some cool photos and videos of our projects.
</p>
</div>
<!-- portfolio filters -->
<div id="" class="options clear">
<ul id="filters" class="option-set" data-option-key="filter">
<li class="filter actcat" data-filter="all">All</li>
<li class="filter" data-filter="category_1">Z3D printer</li>
<li class="filter" data-filter="category_2">3D Printed Items</li>
<li class="filter" data-filter="category_3">Quadcopters</li>
</ul>
</div>
<!-- Projects links -->
<div class="aih">
<ul id="folio_container" class="grid-full animaper">
<!-- 2 project -->
<li class="box mix category_2 mix_all">
<a href="#!projects/project-2.html">
<img src="images/folio/1.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>RI logo Keychain</h4>
<h6> Printed On Z3D Printer</h6>
</div>
</div>
</a>
</li>
<!-- 3 project -->
<li class="box mix category_2 mix_all">
<a href="#!projects/project-3.html">
<img src="images/folio/3.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>Cute Octopus Says Hello</h4>
<h6> Printed On Z3D Printer</h6>
</div>
</div>
</a>
</li>
<!-- 4 project -->
<li class="box mix category_1 mix_all">
<a href="#!projects/project-4.html">
<img src="images/folio/4.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>Z3D Printer</h4>
<h6>India's first Dual Extrusion 3D printer</h6>
</div>
</div>
</a>
</li>
<!-- 5 project -->
<li class="box mix category_1 mix_all">
<a href="single-project.html">
<img src="images/folio/5.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>Z3D Printer</h4>
<h6>Prints object in PLA, ABS and many other material like Rubber</h6>
</div>
</div>
</a>
</li>
<!-- 6 project -->
<li class="box mix category_1 mix_all">
<a href="#!projects/project-6.html">
<img src="images/folio/6.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>Z3D Printer </h4>
<h6>Prints objects at 100 microns</h6>
</div>
</div>
</a>
</li>
<!-- 7 project -->
<li class="box mix category_2 mix_all">
<a href="#!projects/project-7.html">
<img src="images/folio/7.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>3D Printing filament</h4>
<h6>1.75 mm PLA, ABS, HIPS, Rubber, PVA, PETG and many many more available</h6>
</div>
</div>
</a>
</li>
<!-- 8 project -->
<li class="box mix category_3 mix_all">
<a href="#!projects/project-8.html">
<img src="images/folio/8.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>Quadcopter</h4>
<h6>Some of our other works</h6>
</div>
</div>
</a>
</li>
<!-- project 9-->
<li class="box mix category_2 mix_all">
<a href="#!projects/project-9.html">
<img src="images/folio/9.JPG" class="respimg" alt="" title="">
<div class="folio-name clear">
<div class="folio-overlay">
<span class="overlay red"></span>
<h4>3D Printing filament </h4>
<h6>Many different colours available</h6>
</div>
</div>
</a>
</li>
</ul>
</div>
<!-- ajax-section -->
<div class="clear"></div>
<div id="ajax-section">
<div id="loader"></div>
<div id="ajax-content-outer">
<div id="ajax-content-inner"></div>
</div>
<div id="project-navigation">
<ul>
<li id="prevProject">
<a href="#"></a>
</li>
<li id="nextProject">
<a href="#"></a>
</li>
</ul>
</div>
<div id="closeProject">
<div class="grid-3">
<a href="#/">Close</a>
</div>
</div>
</div>
<!-- ajax-section end -->
</div>
</div>
<!--=============== section portfolio end ===============-->
<!--=============== section subscribe ===============-->
<div id="subscribe" class="sections">
<div class="content">#result
<div class="quote-icon"><i class="fa fa-rss"></i>
</div>
<div class="rester"></div>
<div class="rester black"></div>
<div class="container">
<h3 class="sections-head white">Know About Us</h3>
<div class="small-separator ws"></div>
<div class="clear"></div>
<div class="subcribe">
<span class="overlay suboverlay"></span>
<fieldset>
<form class="subscriptionForm" method="post">
<input id="subscriptionForm" class="inputForm" type="text" value="Enter Your Email Address" onFocus="if (this.value=='Enter Your Email Address') this.value=''" onBlur="if (this.value==''){this.value='Enter Your Email Address'}" />
<input type="submit" id="submitButton" class="transition" value="Send" onclick="subcription()">
</form>
<div id="success">Thanks for your subscription</div>
<div id="error">Please enter a valid email address</div>
</fieldset>
</div>
</div>
</div>
</div>
<!--=============== section subscribe end ===============-->
<!--=============== section contacts ===============-->
<div id="contacts" class="sections">
<div class="content">
<div class="quote-icon to-top"><i class="fa fa-angle-up"></i>
</div>
<div class="container">
<!--contact form -->
<div class="contactForm clear">
<div class="close-mail actform animaper">
<img src="images/close-white.png" alt="">
</div>
<fieldset id="contact_form">
<div class="grid-half">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="grid-half">
<label for="email" class="em">Email</label>
<input type="text" name="email" id="email" class="right" />
</div>
<label for="message" class="m-top">Message</label>
<textarea name="message" id="message"></textarea>
<div class="clear"></div>
<label>
<button class="submit_btn transition" id="submit_btn">SEND</button>
</label>
<div id="result"></div>
</fieldset>
</div>
<div class="contact-details">
<div class="grid-2">
<div class="tel smallicon animaper phone" name="tooltip" title="+914843068676"><i class="fa fa-mobile fa-2x close-map"></i>
</div>
<span>Call Us</span>
</div>
<div class="grid-2 showform">
<div class="smallicon actform animaper"><i class="fa fa-envelope-o fa-2x close-map"></i>
</div>
<span>Mail Us</span>
</div>
<div class="grid-2">
<div id="reach" class="smallicon animaper showmap mnv"><i class="fa fa-home fa-2x"></i>
</div>
<span>Reach Us </span>
</div>
</div>
</div>
<!--map-->
<div class="mapbox">
<div class="map-decor"></div>
<div class="close-map">
<img src="images/close-white.png" alt="">
<div class="triangle"></div>
</div>
<div id="map_canvas"></div>
</div>
<!-- footer -->
<div class="footer clear white">
<div class="social-list">
<ul>
<li><a href="https://www.facebook.com/roboinventions" target="_blank" class="transition"><i class="fa fa-facebook fa-2x"></i></a>
</li>
<li><a href="https://twitter.com/Roboinventions" target="_blank" class="transition"><i class="fa fa-twitter fa-2x"></i></a>
</li>
<li><a href="https://plus.google.com/+RoboInventionsKochi" target="_blank" class="transition"><i class="fa fa-google-plus fa-2x"></i></a>
</li>
</ul>
</div>
<p>RoboInventions©2014</p>
<!-- <div class="small-separator ws"></div>-->
</div>
<!--footer end-->
</div>
</div>
<!--=============== section contacts end ===============-->
</div>
<!--=============== wrapper end ===============-->
</div>
<!--=============== main end ===============-->
<!--=============== javascript ===============-->
<script>
window.onbeforeunload = function () {
window.scrollTo(0, 0);
}
</script>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jpreloader.min.js"></script>
<script type="text/javascript" src="js/smoothscroll.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/superslides.js"></script>
<script type="text/javascript" src="js/mixitup.js"></script>
<script type="text/javascript" defer src="js/jquery.flexslider.js"></script>
<script type="text/javascript" src="js/jquery.parallax-1.1.3.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo-1.4.2-min.js"></script>
<script type="text/javascript" src="js/hoverdir.js"></script>
<script>
// function send_mail() {
//
// var name = $("#name").val();
// var email = $("#email").val()
// var msg = $("#message").val()
// $("#result").html("");
// $.post("sendmail.php", {
// name: name,
// email: email,
// msg: msg
// })
// .done(function (data) {
// $("#result").html(data);
// });
//
// }
function subcription() {
swal("Now You Have!",
"Subscribed!", "success");
}
</script>
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
<script type="text/javascript" src="js/appear.js"></script>
<script type="text/javascript" src="js/jquery.nav.js"></script>
<script type="text/javascript" src="js/fitvids.js"></script>
<script type="text/javascript" src="js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="js/jquery.hammer.min.js"></script>
<script type="text/javascript" src="js/jquery.magnific-popup.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script src="js/sweet-alert.js"></script>
<script>
// google map styles and functions --------
var map;
// your coordinates --------
var robo = new google.maps.LatLng(9.992772, 76.323437);
function initialize() {
var styles = [
{
featureType: 'water',
elementType: 'all',
stylers: [
{
hue: '#C20404'
},
{
saturation: -100
},
{
lightness: -18
},
{
visibility: 'on'
}
]
}, {
featureType: 'landscape',
elementType: 'all',
stylers: [
{
hue: '#C20404'
},
{
saturation: -100
},
{
lightness: -78
},
{
visibility: 'on'
}
]
}, {
featureType: 'road',
elementType: 'all',
stylers: [
{
hue: '#C20404'
},
{
saturation: -100
},
{
lightness: -34
},
{
visibility: 'on'
}
]
}, {
featureType: 'road.local',
elementType: 'all',
stylers: [
{
hue: '#C20404'
},
{
saturation: -115
},
{
lightness: -12
},
{
visibility: 'on'
}
]
}, {
featureType: 'poi.park',
elementType: 'all',
stylers: [
{
hue: '#C20404'
},
{
saturation: -100
},
{
lightness: -3
},
{
visibility: 'on'
}
]
}, {
featureType: 'poi',
elementType: 'all',
stylers: [
{
hue: '#C20404'
},
{
saturation: -500
},
{
lightness: -3
},
{
visibility: 'on'
}
]
}, {
featureType: 'transit',
elementType: 'all',
stylers: [
{
hue: '#212121'
},
{
saturation: -20
},
{
lightness: -2
},
{
visibility: 'on'
}
]
}
];
var mapOptions = {
zoom: 18,
zoomControl: false,
scaleControl: false,
scrollwheel: false,
disableDefaultUI: true,
center: robo,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'bestfromgoogle']
}
};
map = new google.maps.Map(document.getElementById("map_canvas"),
mapOptions);
var styledMapOptions = {
name: "robo"
}
var roboMapType = new google.maps.StyledMapType(
styles, styledMapOptions);
map.mapTypes.set('bestfromgoogle', roboMapType);
map.setMapTypeId('bestfromgoogle');
var companyImage = new google.maps.MarkerImage('images/marker.png',
new google.maps.Size(150, 150),
new google.maps.Point(0, 0),
new google.maps.Point(36, 65)
);
// your marker coordinates --------
var companyPos = new google.maps.LatLng(9.992772, 76.323437);
var companyMarker = new google.maps.Marker({
position: companyPos,
map: map,
icon: companyImage,
zIndex: 3,
draggable: false,
title: "Robo Inventions"
});
google.maps.event.addListener(companyMarker, 'click', function () {
swal({
title: "Robo Inventions",
text: 'Robo Inventions Pvt Ltd.\nFirst floor,' +
'Thittayil Bhavan\n no. 7,Thanal\n Near Udyan' + 'convention centre,\n Behind Kent\'s \'Nalukettu\',\n' + 'Kottankavu -Arkakkadavu Road\n Vennala Cochin\n' + 'Kerala\n India “682028",',
timer: 1500000
});
});
google.maps.event.addDomListener(window, 'load', initialize);
}
</script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)