-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
939 lines (898 loc) · 35.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./index.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"
/>
</head>
<body>
<div class="shelf-life-all-textsvariant2">
<img
class="image-2-icon"
id="boyandgirl"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Ellipse-12.png"
/>
<header class="frame-parent" id="headerdesktop" header="1">
<div class="image-4-parent">
<img
class="image-4-icon"
id="Logo"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/image-4.png"
/>
<nav class="home-parent" id="headerNavigation" navigation="2">
<div class="home">Home</div>
<div class="home">About us</div>
<div class="frame-group">
<div class="services-parent">
<div class="home">Services</div>
<button class="chevron-down-3-2" id="arrowdown">
<img
class="vector-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Vector.png"
/>
</button>
</div>
<div class="frame-child"></div>
</div>
<div class="frame-group">
<div class="services-parent">
<div class="home">Client</div>
<button class="chevron-down-3-2" id="arrowdown2">
<img
class="vector-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Vector.png"
/>
</button>
</div>
<div class="frame-child"></div>
</div>
<div class="home">New Clients</div>
<div class="home">Contact</div>
</nav>
</div>
<button class="arrow-up-right-1-1-parent" id="Contactus button">
<img
class="arrow-up-right-1-1"
id="arrowup-right"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-up-right-1-1.png"
/>
<div class="contact-us">Contact us</div>
</button>
</header>
<nav class="home-group" id="breaddrops" breaddrops="24">
<div class="home">Home</div>
<div class="home">/</div>
<div class="home">Services</div>
<div class="home">/</div>
<div class="shelf-life-stability-testing">
Shelf-Life Stability Testing
</div>
</nav>
<section class="shelf-life-stability-testing1" id="maintitle" title="8">
Shelf-Life Stability Testing
</section>
<div class="every-product-has">
Every product has to defy the test of time - we help you in determining
the correct expiration date for your product
</div>
<div class="arrow-up-right-1-1-group">
<img
class="arrow-up-right-1-1"
id="arrowup2"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-up-right-1-1.png"
/>
<div class="get-accelerated-stability">
Get Accelerated Stability Testing
</div>
</div>
<div class="frame-container">
<div class="parent">
<div class="div2">$250</div>
<div class="frame-item"></div>
<div class="price-start-from">price start from</div>
</div>
<div class="parent">
<div class="div2">8</div>
<div class="frame-item"></div>
<div class="price-start-from">tests in this category</div>
</div>
</div>
<section class="container" id="sectiowithcomments" comments="9">
<img
class="icon"
loading="lazy"
id="molecula2"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/6.png"
/>
<img
class="icon1"
id="molecule1"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/7231826.png"
/>
<div class="rectangle-div"></div>
<div class="frame-div">
<img
class="frame-icon"
id="figures"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Frame-186.png"
/>
<div class="frame-parent1">
<div class="we-couldnt-be-happier-with-th-wrapper">
<h1 class="we-couldnt-be" id="commentstitle" tittle="10">
“We couldn’t be happier with their professionalism and quick
turnaround time.”
</h1>
</div>
<div class="vp-natural-food">VP, Natural Food Bakery</div>
</div>
</div>
</section>
<section class="frame-section" id="section3" section3="11">
<div class="why-is-shelf-life-testing-impo-wrapper">
<h1 class="why-is-shelf-life" id="title" h1="12">
Why is Shelf-Life Testing Important?
</h1>
</div>
<div class="stability-testing-is-container">
<p class="stability-testing-is">
Stability Testing is pivotal for every food manufacturer as it
determines the expiration of the product. It helps you identify the
causes of reduced shelf life and improve your products, processes,
and profitability.
</p>
<p class="integrated-labs-provide">
Integrated Labs provide accelerated stability services to determine
the product's shelf-life in just half the time of its original
shelf-life. Our accelerated stability program simulates the
environmental conditions (temperature and humidity) that the product
may face for 3 years and delivers results in half the time.
</p>
</div>
</section>
<img
class="shelf-life-all-textsvariant2-child"
id="image31"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Ellipse-10.png"
/>
<img
class="shelf-life-all-textsvariant2-item"
id="image3"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Ellipse-11.png"
/>
<img
class="shelf-life-all-textsvariant2-inner"
id="image30"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Ellipse-12.png"
/>
<div class="frame-parent2">
<div class="arrow-down-left-2-parent">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<div class="what-people-say">What People Say</div>
</div>
<div class="frame-wrapper">
<div class="frame-parent3">
<div class="image-15-parent">
<img
class="image-15-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/image-15.png"
/>
<div class="we-just-send-products-and-awai-parent">
<div class="we-just-send">
“we just send products and await the results.”
</div>
<div class="delighted-when-they-told-me-ab-parent">
<div class="delighted-when-they">
Delighted when they told me about their stability program. I
was afraid we would need more employees, build a stability
environment room or buy expensive stability champers. Nope,
we just send products and await the results. Fabulous!”
</div>
<div class="frame-wrapper1">
<div class="director-of-quality-leading-d-wrapper">
<div class="director-of-quality">
Director of Quality, Leading Dietary Supplement
Manufacturer
</div>
</div>
</div>
</div>
</div>
</div>
<img
class="rectangle-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Rectangle-15.png"
/>
</div>
</div>
</div>
<div class="frame-parent4">
<div class="arrow-down-left-2-parent">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<div class="what-people-say">Getting Started</div>
</div>
<div class="parent1">
<img
class="icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/6.png"
/>
<img
class="icon1"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/7231826.png"
/>
<div class="rectangle-div"></div>
<div class="frame-parent5">
<div class="frame-parent1">
<div class="get-20-off-your-first-order-wrapper">
<div class="get-20-off">Get 20% off your first order</div>
</div>
<div class="vp-natural-food">
<p class="integrated-labs-provide">
Optimize your product's shelf life today!
</p>
<p class="integrated-labs-provide">
Contact us for reliable Shelf-Life Stability Testing. Click
here to get started!
</p>
</div>
</div>
<div class="arrow-up-right-1-1-container">
<img
class="arrow-up-right-1-1"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-up-right-1-1.png"
/>
<div class="get-accelerated-stability">Contact us</div>
</div>
</div>
</div>
</div>
<section
class="how-it-works"
id="containerHowitworks"
howitworkscontainer="19"
>
<div class="arrow-down-left-2-container">
<img
class="arrow-down-left-2-icon"
id="arrow-image"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<h1 class="reliable-testing-fast">How it works</h1>
</div>
<div class="fast-reliable-secure-wrapper">
<h1 class="fast-reliable-secure-container" id="title5" title5="32">
<p class="integrated-labs-provide">Fast.</p>
<p class="integrated-labs-provide">Reliable.</p>
<p class="integrated-labs-provide">Secure.</p>
</h1>
</div>
<div class="frame-parent7">
<button class="wrapper" id="buuton1">
<div class="div4">1</div>
</button>
<img
class="line-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Line-1.png"
/>
</div>
<div class="frame-parent8">
<div class="frame">
<div class="div5">2</div>
</div>
<img
class="line-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Line-1.png"
/>
</div>
<div class="frame-parent9">
<div class="frame">
<div class="div5">3</div>
</div>
<img
class="line-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Line-1.png"
/>
</div>
<div class="how-it-works-inner">
<div class="frame">
<div class="div5">4</div>
</div>
</div>
<div class="contact-us-for-detailed-inform-parent">
<h1 class="we-couldnt-be" id="title11" toitles11="34">
Contact Us for Detailed Information
</h1>
<div class="reach-out-to">
Reach out to our team to discuss your specific testing needs and
requirements. Our experts will guide you through the available
services and help you choose the most suitable testing options for
your industry and application.
</div>
</div>
<div class="submit-your-testing-samples-parent">
<div class="submit-your-testing">Submit Your Testing Samples</div>
<div class="reach-out-to">
After selecting the desired testing services, you can easily submit
your samples to us. We provide clear instructions on how to package
and ship the samples securely to our lab for accurate and efficient
testing.
</div>
</div>
<div class="timely-testing-results-parent">
<div class="submit-your-testing">Timely Testing Results</div>
<div class="reach-out-to">
As soon as the testing is completed, we will compile and verify the
results meticulously. Expect prompt delivery of the comprehensive
test reports, which will contain clear and actionable insights based
on the data collected.
</div>
</div>
<div class="expert-support-and-consultatio-parent">
<div class="submit-your-testing">Expert Support and Consultation</div>
<div class="reach-out-to">
We don't stop at just providing results. Our team of experts is
available to assist you in interpreting the findings, offering
valuable insights, and answering any questions you may have
regarding the test outcomes
</div>
</div>
</section>
<div class="why-were-different">
<div class="them-parent">
<div class="them">Them</div>
<div class="integrated-labs">Integrated Labs</div>
</div>
<div class="arrow-down-left-2-parent1">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<div class="what-people-say">Why We’re Different</div>
</div>
<div class="frame-parent10">
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/x-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Slow Lead Times</div>
<div class="tired-of-dealing">
Tired of dealing with slow lead times from labs? Causing you to
lose potential revenue.
</div>
</div>
</div>
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Fast service</div>
<div class="tired-of-dealing">
Time is of the essence, and we understand that. Our streamlined
processes ensure quick turnaround times, giving you the
information you need when you need it most.
</div>
</div>
</div>
</div>
<div class="frame-parent11">
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/x-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Poor Testing Quality</div>
<div class="tired-of-dealing">
Quality and reliability issues causing you to delay a product
launch? This should be the last thing you are worried about.
</div>
</div>
</div>
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Certified Lab</div>
<div class="tired-of-dealing">
Your peace of mind matters. Our certifications validate our
adherence to industry standards, assuring you that your products
are being tested by experts who know what they're doing. 100%
based in the United States.
</div>
</div>
</div>
</div>
<div class="frame-parent12">
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/x-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Bad Customer Service</div>
<div class="tired-of-dealing">
Dealing with account managers instead of lab managers? Overseas
customer service or labs where you’re just another number?
</div>
</div>
</div>
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Quality Service</div>
<div class="tired-of-dealing">
Quality is not just in our name; it's at the heart of everything
we do. Our rigorous testing protocols and attention to detail
guarantee accurate results that you can rely on.
</div>
</div>
</div>
</div>
<div class="frame-parent13">
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/x-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">No Volume Discounts</div>
<div class="tired-of-dealing">
Dealing with account managers instead of lab managers? Overseas
customer service or labs where you’re just another number?
</div>
</div>
</div>
<div class="x-1-parent">
<img
class="x-1-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check-1.png"
/>
<div class="slow-lead-times-parent">
<div class="slow-lead-times">Flexible Pricing</div>
<div class="tired-of-dealing">
We believe that quality testing should be accessible to all. Our
flexible pricing options cater to businesses of all sizes,
helping you manage costs without compromising on quality.
</div>
</div>
</div>
</div>
</div>
<section class="frame-parent14" id="realebletesting" realible="12">
<div class="arrow-down-left-2-parent">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<h1 class="reliable-testing-fast" id="title4" tittle4="14">
Reliable Testing. Fast.
</h1>
</div>
<div class="reliable-testing-fast1">
<div class="reliable-testing-fast-inner">
<div class="get-results-faster-parent">
<h1
class="get-results-faster-container"
id="titleincontainer2"
titleh17="16"
>
<p class="integrated-labs-provide">Get</p>
<p class="integrated-labs-provide">Results Faster</p>
</h1>
<div class="determine-the-shelf">
Determine the shelf life of your product in approximately half
the time with Integrated Labs accelerated stability testing
services.
</div>
</div>
</div>
<div class="reliable-testing-fast-child">
<div class="test-with-confidence-parent">
<h1 class="get-results-faster-container" id="title5" title5="15">
Test with Confidence
</h1>
<div class="tired-of-dealing">
Get lab results you can trust with our 17025 certified U.S.
based lab. Know your product’s shelf-life to maintain peak
quality and improve repeat sales.
</div>
</div>
</div>
<div class="reliable-testing-fast-inner1">
<div class="get-results-faster-parent">
<h1
class="get-results-faster-container"
id="titlecontainer3"
container3="17"
>
Pricing That Grows With You
</h1>
<div class="unlike-other-labs">
Unlike other labs we offer flexible, volume based pricing that
helps you save as you grow.
</div>
</div>
</div>
<div class="reliable-testing-fast-inner2">
<div class="get-results-faster-parent">
<h1
class="get-results-faster-container"
id="titleconatiner4"
container4="17"
>
Talk Directly with Experts
</h1>
<div class="unlike-other-labs">
We assign a certified lab technician to every account to provide
you with the knowledge and expertise you deserve.
</div>
</div>
</div>
</div>
</section>
<div class="frame-parent15">
<div class="arrow-down-left-2-parent">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<div class="what-people-say">FAQ</div>
</div>
<div class="frame-parent16">
<div class="frame-parent17">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">
How long does the entire process take?
</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="tired-of-dealing">
The process depends on the expected shelf life of the product.
Real time stability usually takes the longest as it encompasses
real time data and provides the most accurate shelf-life.
Accelerated stability takes almost half the time than the real
time stability and simulates what a product may appear at the end
of the expected shelf-life.
</div>
</div>
<div class="frame-parent18">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">
What types of products can you test?
</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="tired-of-dealing">
<p class="integrated-labs-provide">Food & Beverage</p>
<p class="integrated-labs-provide">Pharmaceuticals</p>
<p class="integrated-labs-provide">Dietary Supplements</p>
</div>
</div>
<div class="frame-parent18">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">How much does it cost?</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="tired-of-dealing">Pricing starts at $250</div>
</div>
<div class="frame-parent18">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">
What are some examples of the shelf life of different products?
</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="here-are-a-container">
<p class="here-are-a">
Here are a few shelf life duration guidelines that we have
collected over the years, which may give you some idea of how
long your product will need to be tested for.
</p>
<p class="stability-testing-is">
<span class="beef-jerky">Beef Jerky:</span>
<span class="months-1-year"> 9 months-1 year</span>
</p>
<p class="stability-testing-is">
<span class="pasteurized-dairy-products"
>Dietary Supplements:</span
>
<span class="years"> 3 years</span>
</p>
<p class="stability-testing-is">
<span class="beef-jerky">BBQ Sauces:</span>
<span class="months-1-year"> 4 months-6 months</span>
</p>
<p class="stability-testing-is">
<span class="pasteurized-dairy-products"
>Pasteurized Dairy Products:</span
>
<span class="years"> 3 weeks</span>
</p>
<p class="stability-testing-is">
<span class="pasteurized-dairy-products">Raw Juices:</span>
<span class="years"> 5 days</span>
</p>
<p class="stability-testing-is">
<span class="beef-jerky"
>Cakes, Cookies & Other Bakery Goods WITH Preservatives:
</span>
<span class="months-1-year"
>30 days (This can be higher for cookies with preservatives.
Can go up to 6 months)</span
>
</p>
<p class="integrated-labs-provide">
<span class="beef-jerky">Salsa:</span>
<span class="months-1-year"> 3 months-4 months</span>
</p>
</div>
</div>
<div class="frame-parent18">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">
Is laboratory testing necessary to determine my product’s shelf
life?
</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="tired-of-dealing">
Lab testing is the only method to determine an accurate shelf life
for a food product. Lab testing can be expensive and time
consuming; however, there is no way around it. If a food
manufacturer, big or small, needs to determine an accurate best-by
date for their product, then testing in a lab must be done.
</div>
</div>
<div class="frame-parent18">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">
How can I extend my product’s shelf life?
</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="tired-of-dealing">
There are multiple ways to extend Product’s shelf life. The
simplest way is to have them packaged really well such that it is
well protected from the moisture, humidity and temperature from
the surrounding environment. Another way is to reduce water
activity in your product as higher water activity is responsible
for the growth of microorganisms in the food products.
</div>
</div>
<div class="frame-parent18">
<div class="how-long-does-the-entire-proce-parent">
<div class="how-long-does">
Do you do accelerated shelf life testing?
</div>
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-6.png"
/>
</div>
<div class="tired-of-dealing">
Yes, Integrated Labs provide accelerated stability services to
determine the product's shelf-life in just half the time of its
original shelf-life. Our accelerated stability program simulates
the environmental conditions (temperature and humidity) that the
product may face for 3 years and delivers results in half the
time.
</div>
</div>
</div>
</div>
<img
class="screenshot-2023-08-04-at-1454"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/Screenshot-2023-08-04-at-14.54-1.png"
/>
<div class="frame-parent24">
<div class="frame-parent25">
<div class="arrow-down-left-2-parent">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<div class="what-people-say">What You Can Test</div>
</div>
<div class="component-4">
<div class="component-4-inner">
<div class="get-results-faster-parent">
<div class="get-results-faster">Food & Beverage</div>
<div class="determine-the-shelf">
Determine the shelf life of your product in approximately half
the time with Integrated Labs accelerated stability testing
services.
</div>
</div>
</div>
<div class="component-4-child">
<div class="get-results-faster-parent">
<div class="get-results-faster">Cosmetics</div>
<div class="unlike-other-labs">
Get lab results you can trust with our 17025 certified U.S.
based lab.
</div>
</div>
</div>
<div class="component-4-inner1">
<div class="get-results-faster-parent">
<div class="get-results-faster">Pharmaceuticals</div>
<div class="unlike-other-labs">
Unlike other labs we offer flexible, volume based pricing that
helps you save as you grow.
</div>
</div>
</div>
<div class="component-4-inner2">
<div class="get-results-faster-parent">
<div class="get-results-faster">Supplements</div>
<div class="unlike-other-labs">
We assign a certified lab technician to every account to
provide you with the knowledge and expertise you deserve.
</div>
</div>
</div>
</div>
</div>
<div class="what-you-can-test">
<div class="arrow-down-left-3-container">
<img
class="arrow-down-left-2-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/arrow-down-left-3.png"
/>
<div class="what-people-say">What You Can Test</div>
</div>
<img
class="icon4"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/12.png"
/>
<div class="check-parent2">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">APC</div>
</div>
<div class="check-parent3">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">Y & M</div>
</div>
<div class="check-parent4">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">Salmonella</div>
</div>
<div class="check-parent5">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">Staphylococcus</div>
</div>
<div class="check-parent6">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">Water Activity</div>
</div>
<div class="check-parent7">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">Moisture Content</div>
</div>
<div class="check-parent8">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">pH and Acidity</div>
</div>
<div class="check-parent9">
<img
class="arrow-down-6-icon"
alt=""
src="https://martapavlivna.com/wp-content/uploads/2023/09/check.png"
/>
<div class="how-long-does">Coliform / E. coli</div>
</div>
</div>
</div>
</div>
</body>
</html>