-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnc-servo.html
935 lines (762 loc) · 44 KB
/
nc-servo.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
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from facnex.netlify.app/services-single.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 08 Nov 2020 15:45:19 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Maruti Automation Solution - Manufacturer of Complete Solution of Coil Handling and Feeding Equipments</title>
<meta name="description"
content="Manufacturer & Supplier of NC Servo Roll Feeder, Pneumatic Air Feeder, Mechanical Gripper Feeders, Decoiler,Decoiler Machine, Decoiler Cum Straightener, Straightener, Zig Zag Feeders, Coil Handling Hydraulics Lifter Machine, Cut To Length Line, etc.">
<meta name="keywords"
content="Decoiler, Straightener, Pneumatic Air Feeder, NC Servo Roll Feeder, Zig Zag NC Servo Roll Feeders, Mechanical Gripper Feeders, High Speed Gear Change Feeder, Cut To Length Line,Decoiler Machine, Decoiler Cum Straightener">
<meta name="generator"
content="SJ Solutions & Infotech- Best and Cheapest Website Designing and Development Company - www.sjweb4u.com" />
<meta name="robots" content="index, follow" />
<link rel="shortcut icon" href="assets/images/favicon.png" title="MAS - Logo" sizes="16x16">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800" rel="stylesheet">
<!-- plugins css -->
<link rel="stylesheet" href="assets/css/plugins.css">
<!-- flaticon -->
<link rel="stylesheet" href="assets/fonts/flaticon.css">
<link rel="stylesheet" href="assets/css/main.css">
<!-- responsive css -->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--====================================================================
Start Loading Screen
=====================================================================-->
<div class="loading-screen">
<div class="display-table">
<div class="table-cell">
<div class="lds-ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</div>
<!--====================================================================
End Loading Screen
=====================================================================-->
<!--====================================================================
Start Upperbar
=====================================================================-->
<div class="upper-bar upper-bar-dark hide-sm">
<div class="container">
<div class="row">
<!-- Item Contact US Bar -->
<div class="col-md-9">
<div class="contact-us-bar">
<a href="mailto:[email protected]">
<span class="flaticon-email"></span> [email protected]
</a>
<a href="tel:+91 95691-53209">
<span class="flaticon-call"></span> +91 95691-53209
</a>
<a href="" class="d-n-mobile">
<span class="flaticon-time"></span> Mon - Fri, 9am - 5pm
</a>
</div>
</div>
<!-- Item Social Media -->
<div class="col-md-3 d-n-mobile d-n-tab">
<ul class="social-media-bar">
<li><a href="#" class="facebook"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#" class="twitter"><i class="fab fa-twitter"></i></a></li>
<li><a href="#" class="instagram"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" class="linkedin"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!--====================================================================
End Upperbar
=====================================================================-->
<!--====================================================================
Start Navbar
====================================================================-->
<nav class="nav-bar nav-bar-two sticky-navbar">
<!-- Background Color White -->
<div>
<!-- Output Navbar -->
<div class="nav-output">
<!-- Container -->
<div class="container container-nav">
<!-- Row -->
<div class="row">
<!-- Column of Logo -->
<div class="col-lg-3 col-12">
<!-- My Logo -->
<a href="index.html" class="my-logo">
<img class="logo-two" src="assets/images/logo/web-logo.png" alt="logo">
</a>
<!-- Button Menu -->
<a href="#" class="navbar-toggle">
<span></span>
<span></span>
<span></span>
</a>
</div>
<!-- Column of Links -->
<div class="col-lg-9 col-md-12 position-inherit">
<!-- Icons -->
<div class="icon-links ml-5 hide-sm">
<!-- Start Btn Side Menu -->
<!-- Start Btn Side Menu -->
<a href="#" class="side-menu-btn">
<!-- <i class="fas fa-ellipsis-v"></i> -->
<span></span>
<span></span>
<span></span>
</a>
</div>
<!-- Main Menu Links -->
<ul id="main-menu" class="nav-menu">
<li class="nav-item">
<a href="index.html" class="nav-link">
Home
</a>
</li>
<li class="nav-item">
<a href="about-us.html" class="nav-link">
About Us
</a>
</li>
<li class="nav-item">
<a href="certification.html" class="nav-link">
Certification
</a>
</li>
<li class="nav-item">
<a href="gallery.html" class="nav-link">
Our Gallery
</a>
</li>
<li class="nav-item has-dropdown active">
<a href="#" class="nav-link">
Products
<span class="icon-down icon-down-one">
<i class="fas fa-angle-down"></i>
</span>
</a>
<ul class="sub-menu">
<li><a href="pneumatic-air-feeder.html">Pneumatic Air Feeder</a></li>
<li><a href="cut-to-length.html">Cut To Length Machine</a></li>
<li><a href="hydraulic-decoiler-with-coil-car.html">Hydraulic Decoiler With Coil car</a></li>
<li><a href="de-coiler.html">Decoiler</a></li>
<li><a href="motorised-decoiler.html">Motorised Decoiler</a></li>
<li><a href="double-side-decoiler.html">Double Side Decoiler</a></li>
<li><a href="decoiler-cum-straigtener-cradle-type.html">Decoiler & Straightener</a></li>
<li><a href="motorised-straightener.html">Motorised Straightener</a></li>
<li class="dactive"><a href="nc-servo.html">NC Servo Feeding</a></li>
</ul>
</li>
<li class="nav-item">
<a href="contact-us.html" class="nav-link">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<!--====================================================================
End Navbar
====================================================================-->
<!--====================================================================
Start Side Menu
=====================================================================-->
<div class="side-menu">
<a href="#" class="close-side-menu">
<span class="pe-7s-close"></span>
</a>
<div class="inner-side">
<!-- Intro side -->
<div class="about-side">
<img class="logo-two" src="assets/images/logo/web-logo.png" alt="logo">
<p>Our Strategies At Work Are The Means By Which To Achieve The Desired Goals, And Achieve Your Goals
And Dreams Here.</p>
<!-- Btn Two -->
<a href="#" class="main-btn-two mt-30">
<div class="text-btn">
<span class="text-btn-one">Request a Quote</span>
<span class="text-btn-two">Request a Quote</span>
</div>
<div class="arrow-btn">
<span class="arrow-one"><i class="fas fa-caret-right"></i></span>
<span class="arrow-two"><i class="fas fa-caret-right"></i></span>
</div>
</a>
</div>
<!-- contact us -->
<div class="contact-side">
<h6>Contact Info</h6>
<div class="line-side"></div>
<div class="contact-info">
<div class="single-contact">
<span class="flaticon-call"></span>
<div class="info-cont">
<p>+91 95691-53209</p>
<p>+91 78144-86497</p>
</div>
</div>
<div class="single-contact">
<span class="flaticon-email"></span>
<div class="info-cont">
<p>[email protected]</p>
<p>[email protected]</p>
</div>
</div>
<div class="single-contact">
<span class="flaticon-location"></span>
<div class="info-cont">
<p>St.no-21, Kot Mangal Singh, Near</p>
<p>Ittan Wala Chowk, Ludhiana-141003</p>
</div>
</div>
<div class="single-contact">
<span class="flaticon-time"></span>
<div class="info-cont">
<p>Monday - Fraiday, 9am - 5pm,</p>
<p>Saturday & Sunday - CLOSED</p>
</div>
</div>
</div>
</div>
<!-- follow us -->
<div class="follow-us">
<h6>Follow Us</h6>
<div class="line-side"></div>
<!-- List Icons Social Media-->
<ul class="social-media">
<li><a href="#" class="facebook"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#" class="twitter"><i class="fab fa-twitter"></i></a></li>
<li><a href="#" class="instagram"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" class="linkedin"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</div>
</div>
<!-- Overlay Close Sidebar -->
<div class="close-menu-sidebar"></div>
<!--====================================================================
End Side Menu
=====================================================================-->
<!--====================================================================
Start Header
=====================================================================-->
<section id="page" class="header-breadcrumb our-team our-team-two">
<div class="overlay"></div>
<div class="container">
<div class="row section-title">
<div class="col-lg-6">
<h2 class="page-title-line">Best Industrial Solutions</h2>
<h1 class="page-title-heading">NC Servo Feeding</h1>
<ul class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li><i class="fas fa-angle-right"></i></li>
<li>Product</li>
<li><i class="fas fa-angle-right"></i></li>
<li>NC Servo Feeding</li>
</ul>
</div>
</div>
</div>
</section>
<!--====================================================================
End Header
=====================================================================-->
<!--====================================================================
Start Section Services
=====================================================================-->
<div id="service" class="single-services services-page pt-120 pb-40">
<!--========== My Services Info ==========-->
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="left-side-bar">
<div class="widget mb-30">
<div class="body-widget list-category ">
<div class="title-widget">
<h3>Our Products</h3>
</div>
<ul class="links-services list-style-dark">
<li><a href="pneumatic-air-feeder.html">
<i class="fas fa-long-arrow-alt-right"></i> Pneumatic Air Feeder
</a>
</li>
<li><a href="cut-to-length.html">
<i class="fas fa-long-arrow-alt-right"></i> Cut To Length Machine
</a>
</li>
<li><a href="hydraulic-decoiler-with-coil-car.html">
<i class="fas fa-long-arrow-alt-right"></i> Hydraulic Decoiler With Coil Car
</a>
</li>
<li><a href="de-coiler.html">
<i class="fas fa-long-arrow-alt-right"></i> De-Coiler
</a>
</li>
<li><a href="motorised-decoiler.html">
<i class="fas fa-long-arrow-alt-right"></i> Motorised Decoiler
</a>
</li>
<li><a href="double-side-decoiler.html">
<i class="fas fa-long-arrow-alt-right"></i>Double Side Decoiler
</a>
</li>
<li><a href="motorised-straightener.html">
<i class="fas fa-long-arrow-alt-right"></i> Motorised Straightener
</a>
</li>
<li><a href="decoiler-cum-straigtener-cradle-type.html">
<i class="fas fa-long-arrow-alt-right"></i> Decoiler & Straightener
</a>
</li>
<li class="active"><a href="nc-servo.html">
<i class="fas fa-long-arrow-alt-right"></i> NC Servo Feeding
</a>
</li>
</ul>
</div>
</div>
<div class="widget mb-30">
<div class="body-widget">
<div class="title-widget">
<h3>How Can We Help You</h3>
</div>
<div class="inner-widget">
<p>We seek direct contact with our customers, business partners and colleagues in order to understand and respond to their demands and needs.</p>
<a href="contact-us.html" class="main-btn-two">
<div class="text-btn">
<span class="text-btn-one">Contact Us</span>
<span class="text-btn-two">Contact Us</span>
</div>
<div class="arrow-btn">
<span class="arrow-one"><i class="fas fa-caret-right"></i></span>
<span class="arrow-two"><i class="fas fa-caret-right"></i></span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-8 order-first order-lg-last mb-30">
<div class="container-service-details">
<div class="signle-services-item">
<div class="title-single-service">
<h3>Overview</h3>
</div>
<p class="mb-30">MAS in their endure to bring latest technology for feeder, have brought NC Servo Roll feeder technology for presses in year 2001. Today with installation in various part of country to handle strip width from 100 mm to 1250 mm & thickness from 0.1 mm to 12.00 mm fully programmable units have be interlinked with small / medium / large presses. Various models have been manufactured & following standards models are available in short deliveries.</p>
<div class="img-services-details">
<div class="owl-carousel case-single ">
<div class="owl-item">
<img src="assets/images/services/slider-1.jpg" alt="img">
</div>
<div class="owl-item">
<img src="assets/images/services/slider-2.jpg" alt="img">
</div>
<div class="owl-item">
<img src="assets/images/services/slider-3.jpg" alt="img">
</div>
</div>
</div>
</div>
<div class="signle-services-item">
<div class="title-single-service">
<h3>Features</h3>
</div>
<div class="row">
<div class="col-md-12">
<p class="mb-30">NC Servo Feeders we offer has caliber to perform nonstop functions without failing. Our product is manufactured using the certified materials.</p>
</div>
<div class="col-md-12">
<ul class="indicator">
<li>
<span class="fa fa-check"></span>
Smoother feeder operations with controlled acceleration profiles
</li>
<li>
<span class="fa fa-check"></span> Precision incremental Optical Encoder (In built) to provide velocity & position loop feed back
</li>
<li>
<span class="fa fa-check"></span>
Advanced Feed-Angle Monitoring : Continually monitors the feed-angle and the material position
</li>
<li>
<span class="fa fa-check"></span> Multiple cycle choices-feed before press, press before feed, or intermittent operations
</li>
<li>
<span class="fa fa-check"></span> Accuracy to ± 0.025mm roll position is achieved through, closed-loop servo control and precision gearing
</li>
</ul>
</div>
</div>
</div>
<div class="signle-services-item">
<div class="title-single-service">
<h3>Full Specification</h3>
</div>
<div class="row">
<div class="col-sm-12">
<div class="tg-wrap">
<table class="tg" style="table-layout: fixed; width: 723px">
<colgroup>
<col style="width: 202px">
<col style="width: 181px">
<col style="width: 112px">
<col style="width: 102px">
<col style="width: 126px">
</colgroup>
<thead>
<tr>
<th class="tg-8a5a" colspan="5">NC Servo Feeder</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tg-qgnt">Servies </td>
<td class="tg-qgnt">Models</td>
<td class="tg-qgnt">Width</td>
<td class="tg-qgnt">Thickness</td>
<td class="tg-qgnt">Velocity</td>
</tr>
<tr>
<td class="tg-gxg3" rowspan="11">Heavy Series <br>Servo Feeders</td>
<td class="tg-jv14">SPA-CH-200-HS</td>
<td class="tg-jv14">200</td>
<td class="tg-jv14">0.5-6.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-300-HS</td>
<td class="tg-jv14">300</td>
<td class="tg-jv14">0.5-6.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-400-HS</td>
<td class="tg-jv14">400</td>
<td class="tg-jv14">0.5-6.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-500-HS </td>
<td class="tg-jv14">500</td>
<td class="tg-jv14">0.5-6.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-600-HS</td>
<td class="tg-jv14">600</td>
<td class="tg-jv14">0.5-5.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-800-HS </td>
<td class="tg-jv14">800</td>
<td class="tg-jv14">0.5-4.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-1000-HS</td>
<td class="tg-jv14">1000</td>
<td class="tg-jv14">0.5-3.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-1200-HS</td>
<td class="tg-jv14">1200</td>
<td class="tg-jv14">0.5-2.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-1500-HS </td>
<td class="tg-jv14">1500</td>
<td class="tg-jv14">0.5-2.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-1600-HS </td>
<td class="tg-jv14">1600</td>
<td class="tg-jv14">0.5-2.0</td>
<td class="tg-jv14">90</td>
</tr>
<tr>
<td class="tg-jv14">SPA-CH-20000-HS</td>
<td class="tg-jv14">2000</td>
<td class="tg-jv14">0.5-2.0</td>
<td class="tg-jv14">90</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="signle-services-item faq">
<div class="title-single-service mb-30">
<h3>Key Benifits</h3>
</div>
<div id="accordion" class="accordion">
<div class="card active">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse"
data-target="#collapseOne" aria-expanded="true"
aria-controls="collapseOne">
Why We Are Best Company ?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordion">
<div class="card-body">
We have the most extensive portfolio of highly developed miniature drive and microdrive technologies available in the world from a single source. As an internationally oriented, innovative and cooperative group, we use the power of diverse technologies to offer our customers individually and successfully tailored solutions as well as a huge array of standard offerings.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse"
data-target="#collapseTwo" aria-expanded="false"
aria-controls="collapseTwo">
How we work with internation case?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordion">
<div class="card-body">
We seek direct contact with our customers, business partners and colleagues in order to understand and respond to their demands and needs. We are open and honest and treat everyone with respect and appreciation. We are sincere, stand by our word and accept responsibility for our actions as the foundation for trusting relationships. We view our Code of Conduct as both guidance and our duty. In short, we live by our values.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Process of our business law?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordion">
<div class="card-body">
We understand that the success of our products and services rests on the engagement of our employees. Their drive and their motivation are behind every MAS FEEDERS product. Hence, we place great importance on furthering our employees and particularly our junior staff. An intact corporate culture with consistent human resource policies plays an important role at MAS FEEDERS in allowing every individual to develop their own potential.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--====================================================================
End Section Services
=====================================================================-->
<!--====================================================================
Start Footer
=====================================================================-->
<footer class="footer footer-default-padding">
<div class="container">
<div class="row footer-row">
<div class="col-lg-4 mb-30">
<div class="footer-widget">
<div class="footer-logo">
<img src="assets/images/logo/wp-logo-w.png" alt="logo">
</div>
<p class="mb-30">Our Strategies At Work Are The Means By Which To Achieve The Desired Goals, And
Achieve Your Goals And Dreams Here.</p>
<!-- Btn Two -->
<a href="about-us.html" class="main-btn-three">
<div class="text-btn">
<span class="text-btn-one">More about Us</span>
<span class="text-btn-two">More about Us</span>
</div>
<div class="arrow-btn">
<span class="arrow-one"><i class="fas fa-caret-right"></i></span>
<span class="arrow-two"><i class="fas fa-caret-right"></i></span>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-30">
<div class="footer-widget mb-0">
<h4>Quick Links</h4>
<div class="line-footer"></div>
<div class="row">
<div class="col-6">
<ul class="footer-link mb-0">
<li>
<a href="index.html">
<span><i class="fas fa-angle-right"></i></span> Home
</a>
</li>
<li>
<a href="about-us.html">
<span><i class="fas fa-angle-right"></i></span> About Us
</a>
</li>
<li>
<a href="certification.html">
<span><i class="fas fa-angle-right"></i></span> Certification
</a>
</li>
<li>
<a href="gallery.html">
<span><i class="fas fa-angle-right"></i></span>Our Gallery
</a>
</li>
<li>
<a href="contact-us.html">
<span><i class="fas fa-angle-right"></i></span> Contact Us
</a>
</li>
</ul>
</div>
<div class="col-6">
<ul class="footer-link mb-0">
<li>
<a href="pneumatic-air-feeder.html">
<span><i class="fas fa-angle-right"></i></span>Pneumatic Air Feeder
</a>
</li>
<li>
<a href="de-coiler.html">
<span><i class="fas fa-angle-right"></i></span>Decoiler
</a>
</li>
<li>
<a href="cut-to-length.html">
<span><i class="fas fa-angle-right"></i></span>Cut To Length
</a>
</li>
<li>
<a href="motorised-decoiler.html">
<span><i class="fas fa-angle-right"></i></span>Motorised Decoiler
</a>
</li>
<li>
<a href="nc-servo.html">
<span><i class="fas fa-angle-right"></i></span>NC Servo Feeders
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="footer-widget">
<h4>Newsletter</h4>
<div class="line-footer"></div>
<p class="mb-15">Signup for our mailing list to get latest updates and news.</p>
<div class="newsletter-item">
<input type="email" name="email" placeholder="Your Email">
<button type="submit"><i class="fas fa-paper-plane"></i></button>
</div>
<!-- List Icons Social Media-->
<ul class="social-media">
<li><a href="https://www.facebook.com/marutiautomationsolution" class="facebook"><i
class="fab fa-facebook-f"></i></a></li>
<li><a href="#" class="twitter"><i class="fab fa-twitter"></i></a></li>
<li><a href="#" class="instagram"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCtnheRt0IVOBnf17FfUraag" class="youtube"><i
class="fab fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row row-contact">
<div class="col-lg-4 col-sm-6 no-padding">
<div class="single-item">
<span class="flaticon-call"></span>
<p> +91 95691-53209</p>
<p> +91 78144-86497</p>
</div>
</div>
<div class="col-lg-4 col-sm-6 no-padding">
<div class="single-item">
<span class="flaticon-email"></span>
<p> [email protected]</p>
<p> [email protected]</p>
</div>
</div>
<div class="col-lg-4 col-sm-12 no-padding">
<div class="single-item">
<span class="flaticon-location"></span>
<p>St.no-21, Kot Mangal Singh, Near </p>
<p>Ittan Wala Chowk, Ludhiana-141003 </p>
</div>
</div>
</div>
</div>
<div class="footer-bar">
<div class="container">
<div class="footer-copy">
<div class="row">
<div class="col-md-8">
<!-- Copyright By Me NourEgy -->
<div class="copyright">
© 2020 Maruti Automated Solutions - Powered By
<a href="http://sjweb4u.com/" target="_blank">Sj Solutions & Infotech</a>
</div>
</div>
<div class="col-md-4">
<ul class="links-of-footer">
<li><a href="#">View Map</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms of Use</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--====================================================================
End Footer
=====================================================================-->
<!-- Scroll To Top -->
<div class="scroll-up">
<i class="fas fa-angle-up"></i>
</div>
<!--====================================================================
End Section Content
=====================================================================-->
<!--====================================================================
Include All Js File
====================================================================-->
<!-- All Plugins -->
<!-- jQuery js -->
<script src="assets/js/jquery-3.3.1.min.js"></script>
<!-- plugins Js -->
<script src="assets/js/plugins.js"></script>
<!-- My Custom Js -->
<script src="assets/js/custom.js"></script>
</body>
<!-- Mirrored from facnex.netlify.app/services-single.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 08 Nov 2020 15:45:20 GMT -->
</html>