-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
1412 lines (1339 loc) · 39.7 KB
/
services.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>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-T9R6SJH');
</script>
<!-- End Google Tag Manager -->
<title>Our Services | Prerana Enterprises</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<meta http-equiv="content-language" content="en-in" />
<meta
name="description"
content="Know our services in diverse fields and get best quality corrugated boxes as per your specifications and needs. Get corrugated boxes of your required sizes and specifications. We provide services in various different fields."
/>
<meta
name="keywords"
content=" box, packaging, package, corrugated, boxes, corrugated boxes, cardboard, cardboard boxes, packaging boxes, mumbai, navi mumbai, dapoli, ratnagiri, panvel, raigad, wholesale, retail, fisheries, vegetables, fruits, food, export, agro-chemical, agriculture, chemical, oil, edible oil, consumer goods, corrugated sheets, customise, customize, customisable, customizable, cartons, carton, prerana enterprises, anand karmarkar, karmarkar, shubham karmarkar, services, oil, fish, quality, all boxes, type, types, variety"
/>
<meta
name="author"
content="Abhishek Joshi +919757468857 (available on WhatsApp) [email protected]"
/>
<!--whatsapp and fb-->
<meta
property="og:title"
content="Our Services | Prerana Enterprises"
/>
<meta
property="og:description"
content="Know our services spread across diverse fields and get best quality corrugated boxes as per your specifications and needs."
/>
<meta
property="og:url"
content="https://preranaenterprises.in/services"
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://preranaenterprises.in/images/icon.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="642" />
<meta property="og:image:height" content="642" />
<meta
property="og:image:alt"
content="Our Services | Prerana Enterprises"
/>
<!--twitter-->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Our Services | Prerana Enterprises"
/>
<meta
name="twitter:description"
content="Know our services in diverse fields and get best quality corrugated boxes as per your specifications and needs."
/>
<meta
name="twitter:image"
content="https://preranaenterprises.in/images/icon.png"
/>
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#33485a" />
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#33485a" />
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#33485a" />
<script
src="https://use.fontawesome.com/releases/v5.13.0/js/all.js"
data-auto-add-css="false"
></script>
<link
href="https://use.fontawesome.com/releases/v5.13.0/css/svg-with-js.css"
rel="stylesheet"
/>
<link rel="shortcut icon" href="images/favicon.png" type="image/png" />
<link rel="icon" href="images/favicon.png" type="image/png" />
<link
rel="apple-touch-icon"
href="images/favicon.png"
type="image/png"
/>
<!-- CSS only -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<!-- JS, Popper.js, and jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
type="text/css"
href="css/style.css"
media="all"
/>
<script type="text/javascript">
var no_of_click = 0;
function dyheight() {
document.getElementById('footer-image').style.width =
document.getElementById('footer-image-div').offsetWidth +
'px';
document.getElementById('footer-image-div').style.height =
document.getElementById('footer-image').clientHeight + 'px';
document.getElementById('footer-image-div').style.marginTop =
(document.getElementById('footer-3').offsetHeight -
document.getElementById('footer-image').clientHeight) /
2 +
'px';
var service_data = document.getElementsByClassName(
'service-data'
);
for (var i = 0; i < service_data.length; i++) {
service_data[i].style.height = 'auto';
}
var service = document.getElementsByClassName('service-try');
for (var i = 0; i < service.length; i++) {
service[i].style.width =
document.getElementById('service6').clientWidth + 'px';
}
if (window.innerWidth > 767) {
var max = service_data[0].clientHeight;
for (var i = 1; i < service_data.length; i++) {
if (service_data[i].clientHeight > max) {
max = service_data[i].clientHeight;
}
}
for (var i = 0; i < service_data.length; i++) {
service_data[i].style.height = max + 'px';
}
}
page_height();
}
function black() {
no_of_click++;
if (document.getElementById('check').checked) {
document.getElementById('nav').style.background = '#fff';
document.getElementById('logo-dark').style.opacity = '1';
document.getElementById('logo-light').style.opacity = '0';
document.getElementById('bars').style.color = '#000';
setTimeout(function () {
document
.getElementById('notnav')
.classList.toggle('nodisplay');
}, 500);
document.getElementById('bars').style.transform =
'rotate(-90deg)';
setTimeout(function () {
document
.getElementById('bars')
.classList.add('fa-times');
}, 300);
setTimeout(function () {
document.getElementById('bars').style.transform =
'rotate(-270deg)';
}, 100);
} else {
navchange();
document
.getElementById('notnav')
.classList.toggle('nodisplay');
document.getElementById('bars').style.transform =
'rotate(-180deg)';
setTimeout(function () {
document
.getElementById('bars')
.classList.add('fa-bars');
}, 300);
setTimeout(function () {
document.getElementById('bars').style.transform =
'rotate(0deg)';
}, 100);
}
}
function page_height() {
setTimeout(function () {
document.getElementById('full-footer').style.marginTop =
'0';
var doc_height = document.getElementsByTagName('body')[0]
.offsetHeight;
var view_height = window.innerHeight;
if (doc_height < view_height) {
document.getElementById('full-footer').style.marginTop =
view_height - doc_height + 'px';
}
}, 30);
}
function navchange() {
if (window.scrollY > 2) {
document.getElementById('nav').style.background =
'rgba(255,255,255,0.97)';
document.getElementById('logo-dark').style.opacity = '1';
document.getElementById('logo-light').style.opacity = '0';
document.getElementById('nav').style.borderBottom =
'1px solid rgba(0,0,0,0.3)';
let items = document.getElementsByClassName('navbar-item');
let i = 0;
for (i = 0; i < items.length; i++) {
items[i].style.color = '#393185';
}
document.getElementById('bars').style.color = '#000';
document.getElementsByClassName(
'banner'
)[0].style.paddingTop = '60px';
document.getElementById('nav').style.height = '60px';
$('nav ul li').css('line-height', '60px');
$('nav a img').css('height', '50px');
$('nav a img').css('top', '5px');
} else {
document.getElementById('nav').style.background =
'transparent';
document.getElementById('logo-light').style.opacity = '1';
document.getElementById('logo-dark').style.opacity = '0';
document.getElementById('nav').style.borderBottom = 'none';
if (window.innerWidth > 870) {
let items = document.getElementsByClassName(
'navbar-item'
);
let i = 0;
for (i = 0; i < items.length; i++) {
items[i].style.color = 'rgba(255,255,255,1)';
}
document.getElementsByClassName(
'banner'
)[0].style.paddingTop = '70px';
document.getElementById('nav').style.height = '70px';
$('nav ul li').css('line-height', '70px');
$('nav a img').css('height', '55px');
$('nav a img').css('top', '10px');
} else {
let items = document.getElementsByClassName(
'navbar-item'
);
let i = 0;
for (i = 0; i < items.length; i++) {
items[i].style.color = '#393185';
}
document.getElementsByClassName(
'banner'
)[0].style.paddingTop = '60px';
document.getElementById('nav').style.height = '60px';
$('nav ul li').css('line-height', '60px');
$('nav a img').css('height', '50px');
$('nav a img').css('top', '5px');
}
document.getElementById('bars').style.color = '#fff';
}
}
function contact_vis() {
var btn = document.getElementById('uni-contact-btn');
var icon = document.getElementById('uni-contact-icon');
if (
window.scrollY > 50 &&
window.scrollY + window.innerHeight - 200 <
document.getElementById('full-footer').offsetTop
) {
btn.style.display = 'block';
icon.style.opacity = '1';
} else {
icon.style.opacity = '0';
setTimeout(function () {
btn.style.display = 'none';
}, 450);
}
}
function boom() {
var opacity = document.getElementsByClassName('boom-opacity');
for (var i = 0; i < opacity.length; i++) {
if (window.innerHeight < 900) {
if (
window.scrollY + (9.5 * window.innerHeight) / 10 >
opacity[i].offsetTop
) {
opacity[i].style.opacity = '1';
opacity[i].style.marginTop = '0';
}
} else {
opacity[i].style.opacity = '1';
}
}
var mt = document.getElementsByClassName('boom-mt');
for (var i = 0; i < mt.length; i++) {
if (window.innerWidth > 600 && window.innerHeight < 900) {
if (
window.innerHeight >
mt[i].getBoundingClientRect().top +
window.innerHeight -
600
) {
mt[i].style.marginTop = '0';
}
} else if (window.innerHeight < 900) {
if (
window.innerHeight >
mt[i].getBoundingClientRect().top +
window.innerHeight -
750
) {
mt[i].style.marginTop = '0';
}
} else {
mt[i].style.marginTop = '0';
}
}
}
function slidein() {
document.getElementById('name').value = '';
document.getElementById('phone').value = '';
document.getElementById('email').value = '';
document.getElementById('message').value = '';
document.getElementById('thank-pop').style.display = 'none';
document.getElementById('uni-contact-btn').style.transition =
'0.5s';
document.getElementById('uni-contact-btn').style.bottom =
'-100px';
var fs = $('#pop-subname').css('fontSize');
document.getElementById('close-pop').style.lineHeight = fs;
if (window.innerHeight > 849) {
document.getElementById('contact-pop').style.bottom =
'120px';
} else if (window.innerHeight > 749) {
document.getElementById('contact-pop').style.bottom =
'80px';
} else {
document.getElementById('contact-pop').style.bottom =
'20px';
}
var pop_ht = $('#contact-pop').css('height');
document.getElementById('thank-pop').style.height =
parseInt(pop_ht, 10) - 9 + 'px';
return false;
}
function slideout() {
document.getElementById('contact-pop').style.bottom = '-1000px';
if (window.innerWidth <= 400) {
document.getElementById('uni-contact-btn').style.bottom =
'25px';
} else {
document.getElementById('uni-contact-btn').style.bottom =
'30px';
}
setTimeout(function () {
document.getElementById(
'uni-contact-btn'
).style.transition = '0s';
}, 550);
}
function formSubmit() {
document.getElementById('name').setAttribute('readonly', '');
document.getElementById('phone').setAttribute('readonly', '');
document.getElementById('email').setAttribute('readonly', '');
document.getElementById('message').setAttribute('readonly', '');
document
.getElementById('pop-submit')
.setAttribute('disabled', '');
var name = document.getElementById('name').value;
var phone =
document.getElementById('country').value +
' ' +
document.getElementById('phone').value;
var email = document.getElementById('email').value;
var message = document.getElementById('message').value;
if (email == '') {
email = 'null';
}
document.getElementById('pop-submit').innerHTML = 'Submitting';
$.ajax({
url:
'https://script.google.com/a/preranaenterprises.in/macros/s/AKfycbygPG1GtvkHoF-JVhYVqrz2e5DDC1mqlLXZVWvS/exec',
method: 'GET',
dataType: 'jsonp',
contentType: 'application/json',
crossDomain: true,
data: {
name: name,
phone: phone,
email: email,
message: message
}
});
return false;
}
function contact_submit() {
document.getElementById('thank-pop').style.display = 'initial';
setTimeout(function () {
slideout();
}, 5000);
}
function formSuccess() {
document.getElementById('thank-pop').innerHTML =
'<h2 class=" subname pt-md-3 pr-md-3 pt-1 pr-1 proud-client text-right close-pop text-danger" onclick="slideout();"><i class="fas fa-times"></i></h2><h2 class="text-center pt-md-3 pt-0">Thank You</h2><h2 class="text-center pt-md-1 pt-0">for contacting us!</h2><h2 class="text-center pt-md-3 pt-0">We will get back to you on your given contact details!</h2><h2 class="text-center pt-lg-4 pt-md-2 pt-1 mt-lg-2 mt-0 thank-pop-smile text-danger"><i class="far fa-grin-alt"></i></h2>';
contact_submit();
document.getElementById('name').removeAttribute('readonly');
document.getElementById('phone').removeAttribute('readonly');
document.getElementById('email').removeAttribute('readonly');
document.getElementById('message').removeAttribute('readonly');
document
.getElementById('pop-submit')
.removeAttribute('disabled');
document.getElementById('pop-submit').innerHTML = 'Submit';
}
function formError() {
document.getElementById('thank-pop').innerHTML =
'<h2 class=" subname pt-md-3 pr-md-3 pt-1 pr-1 proud-client text-right close-pop text-danger" onclick="slideout();"><i class="fas fa-times"></i></h2><h2 class="text-center pt-md-3 pt-0">Sorry</h2><h2 class="text-center pt-md-1 pt-0">Request could not be submitted</h2><h3 class="text-center pt-md-3 pt-0"><a href="javascript: void(0)" onclick="return slidein();">Try again</a></h3><h2 class="text-center pt-lg-4 pt-md-2 pt-1 mt-lg-2 mt-0 thank-pop-smile text-danger"><i class="far fa-frown"></i></h2>';
document.getElementById('thank-pop').style.display = 'initial';
document.getElementById('name').removeAttribute('readonly');
document.getElementById('phone').removeAttribute('readonly');
document.getElementById('email').removeAttribute('readonly');
document.getElementById('message').removeAttribute('readonly');
document
.getElementById('pop-submit')
.removeAttribute('disabled');
document.getElementById('pop-submit').innerHTML = 'Submit';
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-178557617-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-178557617-1');
</script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-T9R6SJH"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="banner pb-2">
<nav id="nav">
<input type="checkbox" id="check" onchange="black();" />
<label for="check">
<i class="fas fa-bars" id="bars"></i>
</label>
<a href="https://preranaenterprises.in"
><img
src="images/2.png"
id="logo-light"
alt="Prerana Enterprises Logo"
/></a>
<a href="https://preranaenterprises.in"
><img
src="images/3.png"
id="logo-dark"
alt="Prerana Enterprises Logo"
/></a>
<ul>
<li>
<a
class="navbar-item"
href="https://preranaenterprises.in"
><i class="fas fa-home"></i> Home</a
>
</li>
<li>
<a class="navbar-item" href="about"
><i class="fas fa-file-contract"></i> About Us</a
>
</li>
<li class="active" id="active">
<a class="navbar-item" href="javascript: void(0)"
><i class="fas fa-box-open"></i> Our Services</a
>
</li>
<li>
<a class="navbar-item" href="contact"
><i class="fas fa-address-card"></i> Contact Us</a
>
</li>
</ul>
</nav>
<div class="container">
<h1 class="subname pt-2 pb-2 text-white">Our Services</h1>
</div>
</div>
<div id="notnav" class="nodisplay"></div>
<div
class="position-fixed uni-contact-btn text-center"
id="uni-contact-btn"
onclick="slidein();"
>
<span class="uni-contact-text position-relative">Contact Us </span>
<i
class="far fa-comment-dots uni-contact-icon"
id="uni-contact-icon"
></i>
</div>
<div class="position-fixed contact-pop" id="contact-pop">
<div class="position-fixed bg-white" id="thank-pop">
<h2
class="subname pt-md-3 pr-md-3 pt-1 pr-1 proud-client text-right close-pop color-orange"
onclick="slideout();"
>
<i class="fas fa-times"></i>
</h2>
<h2 class="text-center pt-md-3 pt-0">Thank You</h2>
<h2 class="text-center pt-md-1 pt-0">for contacting us!</h2>
<h2 class="text-center pt-md-3 pt-0">
We will get back to you on your given contact details!
</h2>
<h2
class="text-center pt-lg-4 pt-md-2 pt-1 mt-lg-2 mt-0 thank-pop-smile color-orange"
>
<i class="far fa-grin-alt"></i>
</h2>
</div>
<div class="row">
<h2
class="subname pt-2 pb-2 proud-client col-10"
id="pop-subname"
>
Contact Us
</h2>
<h2
class="subname pt-2 pb-2 proud-client col-2 text-center close-pop color-orange"
onclick="slideout();"
id="close-pop"
>
<i class="fas fa-times"></i>
</h2>
</div>
<form
class="ev_form mt-0 mb-3"
autocomplete="off"
id="pop-form"
action="javascript: void(0)"
onsubmit="return formSubmit();"
>
<div class="form-group mb-1">
<div class="form-required-show">
<span class="form-required">* is for required.</span>
</div>
<label for="name"
>Name<span class="form-required"> *</span></label
>
<input
type="text"
id="name"
class="mb-2 mt-lg-1 form-control pop-contact-input"
placeholder="Enter Your Name"
autocomplete="off"
required
/>
<label for="country"
>Mobile Number<span class="form-required">
*</span
></label
>
<div class="form-row">
<div class="form-group col-2 mb-0">
<input
type="tel"
title="Please enter country code Ex. +91"
pattern="[+][0-9]{1,2}"
id="country"
class="mb-2 mt-lg-1 form-control pop-contact-input px-sm-2 px-1"
placeholder="+91"
autocomplete="off"
value="+91"
required
/>
</div>
<div class="form-group col-10 mb-0 pl-sm-1 pl-0">
<input
type="tel"
id="phone"
class="mb-2 mt-lg-1 form-control pop-contact-input"
placeholder="Enter Your Mobile number"
autocomplete="off"
required
/>
</div>
</div>
<label for="email">Email Address</label>
<input
type="email"
id="email"
class="mb-2 mt-lg-1 form-control pop-contact-input"
placeholder="Enter Your Email"
autocomplete="off"
/>
<label for="message">Message</label><br />
<textarea
id="message"
class="mb-1 mt-lg-1 form-control pop-contact-input pop-txt-area"
placeholder="Type your message here"
autocomplete="off"
></textarea>
<br />
<button
class="btn py-1"
id="pop-submit"
type="submit"
name="sub_form"
>
Submit
</button>
</div>
</form>
</div>
<div class="quote">
<div class="container text-center">
<blockquote
class="blockquote mb-0 font-italic font-weight-bold py-3 services-quote"
>
<p class="mb-0 py-2">
We provide services in many diverse sectors.<br />Customer
satisfaction being our topmost priority, we will make
sure you get best experience while doing business with
us!
</p>
</blockquote>
</div>
</div>
<div class="container py-5">
<div class="row">
<div class="col-lg-4 col-md-6 col-12 boom-mt boom-opacity">
<div class="mx-auto services-cards mb-4 mb-sm-5">
<div
class="px-auto overflow-hidden service-data"
id="service1"
>
<div
class="position-absolute service-try d-block"
id="try1"
></div>
<div class="row pt-5">
<div
class="services-circle text-center mx-auto d-block"
>
<div
class="col-12 text-center services-icon my-auto"
>
<i class="fas fa-globe"></i>
</div>
</div>
<div
class="col-12 px-3 text-center services-title my-0"
>
<label for="expand1"
>Export Quality Cartons</label
>
</div>
</div>
<div
class="container text-center services-para pt-lg-4 py-2 service-no pb-sm-5"
>
We provide export quality corrugated cartons
mainly used for export of fisheries, fruits,
vegetables, mechanical equipments, etc.
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12 boom-mt boom-opacity">
<div class="mx-auto services-cards mb-4 mb-sm-5">
<div
class="px-auto overflow-hidden service-data"
id="service2"
>
<div
class="position-absolute service-try d-block"
id="try2"
></div>
<div class="row pt-5">
<div
class="services-circle text-center mx-auto d-block"
>
<div
class="col-12 text-center services-icon my-auto"
>
<i class="fas fa-user-cog"></i>
</div>
</div>
<div
class="col-12 px-3 text-center services-title my-0"
>
<label for="expand1"
>Customized Cartons</label
>
</div>
</div>
<div
class="container text-center services-para pt-lg-4 py-2 service-no pb-sm-5"
>
We understand your requirements and provide
corrugated boxes and sheets as per your
specifications with best in class quality.
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12 boom-mt boom-opacity">
<div class="mx-auto services-cards mb-4 mb-sm-5">
<div
class="px-auto overflow-hidden service-data"
id="service3"
>
<div
class="position-absolute service-try d-block"
id="try3"
></div>
<div class="row pt-5">
<div
class="services-circle text-center mx-auto d-block"
>
<div
class="col-12 text-center services-icon my-auto"
>
<i class="fas fa-scroll"></i>
</div>
</div>
<div
class="col-12 px-3 text-center services-title my-0"
>
<label for="expand1"
>Finest Corrugated Sheets</label
>
</div>
</div>
<div
class="container text-center services-para pt-lg-4 py-2 service-no pb-sm-5"
>
We provide exclusive corrugated sheets as per
your required size and specifications. Our size
range is upto 72".
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12 boom-mt boom-opacity">
<div class="mx-auto services-cards mb-4 mb-sm-5">
<div
class="px-auto overflow-hidden service-data"
id="service4"
>
<div
class="position-absolute service-try d-block"
id="try4"
></div>
<div class="row pt-5">
<div
class="services-circle text-center mx-auto d-block"
>
<div
class="col-12 text-center services-icon my-auto"
>
<i class="fas fa-apple-alt"></i>
</div>
</div>
<div
class="col-12 px-3 text-center services-title my-0"
>
<label for="expand1"
>Cartons for Food</label
>
</div>
</div>
<div
class="container text-center services-para pt-lg-4 py-2 service-no pb-sm-5"
>
We provide high quality corrugated boxes for
your fruits and vegetables with perfect
ventilation.
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12 boom-mt boom-opacity">
<div class="mx-auto services-cards mb-4 mb-sm-5">
<div
class="px-auto overflow-hidden service-data"
id="service5"
>
<div
class="position-absolute service-try d-block"
id="try5"
></div>
<div class="row pt-5">
<div
class="services-circle text-center mx-auto d-block"
>
<div
class="col-12 text-center services-icon my-auto"
>
<i class="fas fa-rupee-sign"></i>
</div>
</div>
<div
class="col-12 px-3 text-center services-title my-0"
>
<label for="expand1"
>Affordable Solutions</label
>
</div>
</div>
<div
class="container text-center services-para pt-lg-4 py-2 service-no pb-sm-5"
>
We suggest innovative solutions as per your
products & requirements at affordable price.
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12 boom-mt boom-opacity">
<div class="mx-auto services-cards mb-4 mb-sm-5">
<div
class="px-auto overflow-hidden service-data"
id="service6"
>
<div
class="position-absolute service-try d-block"
id="try6"
></div>
<div class="row pt-5">
<div
class="services-circle text-center mx-auto d-block"
>
<div
class="col-12 text-center services-icon my-auto"
>
<i class="fas fa-truck-moving"></i>
</div>
</div>
<div
class="col-12 px-3 text-center services-title my-0"
>
<label for="expand1">Timely Delivery</label>
</div>
</div>
<div
class="container text-center services-para pt-lg-4 py-2 service-no pb-sm-5"
>
We understand that punctuality is the most
important factor for any business. We deliver
your goods on time as we have transport vehicle
of our own.
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$('#service1').hover(
function () {
$('#try1').css(
'height',
document.getElementById('service1').clientHeight + 'px'
);
$('#try1').css(
'width',
document.getElementById('service1').clientWidth + 'px'
);
},
function () {
$('#try1').css('height', '0px');
}
);
$('#try1').hover(
function () {
$('#try1').css(
'height',
document.getElementById('service1').clientHeight + 'px'
);
$('#try1').css(
'width',
document.getElementById('service1').clientWidth + 'px'
);
},
function () {
$('#try1').css('height', '0px');
}
);
$('#service2').hover(
function () {
$('#try2').css(
'height',
document.getElementById('service2').clientHeight + 'px'
);
$('#try2').css(
'width',
document.getElementById('service2').clientWidth + 'px'
);
},
function () {
$('#try2').css('height', '0px');
}
);
$('#try2').hover(
function () {
$('#try2').css(
'height',
document.getElementById('service2').clientHeight + 'px'
);
$('#try2').css(
'width',
document.getElementById('service2').clientWidth + 'px'
);
},
function () {
$('#try2').css('height', '0px');
}
);
$('#service3').hover(
function () {
$('#try3').css(
'height',