CINXE.COM
Packaging Archives - IFFCO
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- <script async src="assets/js/modernizr.min.js"></script> --> <!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> --> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("consent", "default", { ad_user_data: "denied", ad_personalization: "denied", ad_storage: "denied", analytics_storage: "denied", functionality_storage: "denied", personalization_storage: "denied", security_storage: "granted", wait_for_update: 500, }); gtag("set", "ads_data_redaction", true); </script> <script type="text/javascript" id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="d6a1aa34-b5d0-42d4-b4a3-afa55e94c561" async ></script> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" href="https://iffco.com/brands-category/packaging/" hreflang="en" /> <link rel="alternate" href="https://iffco.com/ar/brands-category/packaging-en/" hreflang="ar" /> <!-- This site is optimized with the Yoast SEO plugin v23.7 - https://yoast.com/wordpress/plugins/seo/ --> <title>Packaging Archives - IFFCO</title> <link rel="canonical" href="https://iffco.com/brands-category/packaging/" /> <meta property="og:locale" content="en_US" /> <meta property="og:locale:alternate" content="ar_AR" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Packaging Archives - IFFCO" /> <meta property="og:url" content="https://iffco.com/brands-category/packaging/" /> <meta property="og:site_name" content="IFFCO" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"CollectionPage","@id":"https://iffco.com/brands-category/packaging/","url":"https://iffco.com/brands-category/packaging/","name":"Packaging Archives - IFFCO","isPartOf":{"@id":"https://iffco.com/#website"},"breadcrumb":{"@id":"https://iffco.com/brands-category/packaging/#breadcrumb"},"inLanguage":"en-US"},{"@type":"BreadcrumbList","@id":"https://iffco.com/brands-category/packaging/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://iffco.com/"},{"@type":"ListItem","position":2,"name":"Packaging"}]},{"@type":"WebSite","@id":"https://iffco.com/#website","url":"https://iffco.com/","name":"IFFCO","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://iffco.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//iffco.com' /> <link rel="alternate" type="application/rss+xml" title="IFFCO » Feed" href="https://iffco.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="IFFCO » Comments Feed" href="https://iffco.com/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="IFFCO » Packaging Category Feed" href="https://iffco.com/brands-category/packaging/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/iffco.com\/wp-includes\/js\/wp-emoji.js","twemoji":"https:\/\/iffco.com\/wp-includes\/js\/twemoji.js"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel="stylesheet" href="https://iffco.com/wp-content/cache/minify/52347.css" media="all" /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel="stylesheet" href="https://iffco.com/wp-content/cache/minify/4c431.css" media="all" /> <style id='contact-form-7-inline-css' type='text/css'> .wpcf7 .wpcf7-recaptcha iframe {margin-bottom: 0;}.wpcf7 .wpcf7-recaptcha[data-align="center"] > div {margin: 0 auto;}.wpcf7 .wpcf7-recaptcha[data-align="right"] > div {margin: 0 0 0 auto;} </style> <link rel="stylesheet" href="https://iffco.com/wp-content/cache/minify/e57b6.css" media="all" /> <style id='heateor_sss_frontend_css-inline-css' type='text/css'> .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}div.heateor_sss_horizontal_sharing a.heateor_sss_button_instagram span{background:#DC1818!important;}div.heateor_sss_standard_follow_icons_container a.heateor_sss_button_instagram span{background:#DC1818}.heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{background-color:#DC1818!important;background:#DC1818!important;color:#fff;border-width:0px;border-style:solid;border-color:transparent}.heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{border-color:transparent;}.heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{color:#fff;border-width:0px;border-style:solid;border-color:transparent;}.heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{border-color:transparent;}@media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}}div.heateor_sss_mobile_footer{display:none;}@media screen and (max-width:783px){div.heateor_sss_bottom_sharing .heateorSssTCBackground{background-color:white}div.heateor_sss_bottom_sharing{width:100%!important;left:0!important;}div.heateor_sss_bottom_sharing a{width:11.111111111111% !important;}div.heateor_sss_bottom_sharing .heateor_sss_svg{width: 100% !important;}div.heateor_sss_bottom_sharing div.heateorSssTotalShareCount{font-size:1em!important;line-height:28px!important}div.heateor_sss_bottom_sharing div.heateorSssTotalShareText{font-size:.7em!important;line-height:0px!important}div.heateor_sss_mobile_footer{display:block;height:40px;}.heateor_sss_bottom_sharing{padding:0!important;display:block!important;width:auto!important;bottom:-2px!important;top: auto!important;}.heateor_sss_bottom_sharing .heateor_sss_square_count{line-height:inherit;}.heateor_sss_bottom_sharing .heateorSssSharingArrow{display:none;}.heateor_sss_bottom_sharing .heateorSssTCBackground{margin-right:1.1em!important}}div.heateor_sss_sharing_title{text-align:center}div.heateor_sss_sharing_ul{width:100%;text-align:center;}div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a{float:none!important;display:inline-block;} </style> <script src="https://iffco.com/wp-content/cache/minify/c7035.js"></script> <script src="https://iffco.com/wp-content/cache/minify/34f31.js"></script> <link rel="https://api.w.org/" href="https://iffco.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://iffco.com/wp-json/wp/v2/brands-category/87" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://iffco.com/xmlrpc.php?rsd" /> <script type="text/javascript"> var ajaxurl = "https://iffco.com/wp-admin/admin-ajax.php"; </script><link rel="icon" href="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-270x270.jpg" /> </head> <body class="archive tax-brands-category term-packaging term-87" id="parent-page-1349"> <header> <div class="top__nav"> <div class="container"> <div class="top__nav__inner"> <div class="top__nav__left"> <!--<div class="global__toggle__btn">--> <!-- <button type="button">--> <!-- <img src="" alt="" />--> <!-- <span>Global</span>--> <!-- </button>--> <!--</div>--> <div class="global__toggle__btn"> <button type="button"> <img src="https://iffco.com/wp-content/uploads/2023/12/globe-1.svg" alt="" /> <span>English</span> </button> <select name="lang_choice_1" id="lang_choice_1" class="pll-switcher-select"> <option value="https://iffco.com/brands-category/packaging/" lang="en-US" selected='selected'>English</option> <option value="https://iffco.com/ar/brands-category/packaging-en/" lang="ar">العربية</option> </select> <script type="text/javascript"> document.getElementById( "lang_choice_1" ).addEventListener( "change", function ( event ) { location.href = event.currentTarget.value; } ) </script> <ul></ul> </div> <!--<label for="lowcarbonmode" class="low__carbon__mode__toggle">--> <!-- <input type="checkbox" id="lowcarbonmode" name="lowcarbonmode" />--> <!-- <div class="low__carbon__mode__toggle__btn"></div>Low carbon mode--> <!--</label>--> </div> <div class="top__nav__right"> <nav aria-label="quick navigation"> <ul> <li> <a href="https://iffco.com/search-jobs/"> <img src="https://iffco.com/wp-content/uploads/2023/12/Vector.svg" alt="" /> Careers </a> </li> <li> <a href="https://iffco.com/contact-us/"> <img src="https://iffco.com/wp-content/uploads/2023/12/phone.svg" alt="" /> Contact Us </a> </li> </ul> </nav> </div> </div> </div> </div> <div class="header__outer__wrap"> <div class="container"> <!-- @format --> <div class="header__inner"> <a href="https://iffco.com" class="site__logo"> <img src="https://iffco.com/wp-content/uploads/2023/12/logo.svg" alt="" /> </a> <nav aria-label="Primary navigation"> <ul> <li class="top__header__quick__access__cta"> <div class="top__nav"> <div class="container"> <div class="top__nav__inner"> <div class="top__nav__left"> <script type="text/javascript"> document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('.pll-switcher-select').forEach(function (select) { select.addEventListener('change', function (event) { location.href = event.currentTarget.value; }); }); }); </script> <div class="global__toggle__btn"> <button type="button"> <img src="https://iffco.com/wp-content/themes/iffco/assets/img/icons/globe.svg" alt="" /> <span>English</span> </button> <ul></ul> </div> <!--<label for="lowcarbonmode2" class="low__carbon__mode__toggle">--> <!-- <input type="checkbox" id="lowcarbonmode2" name="lowcarbonmode2" />--> <!-- <div class="low__carbon__mode__toggle__btn"></div>Low carbon mode--> <!--</label>--> </div> <div class="top__nav__right"> <nav aria-label="quick navigation"> <ul> <li> <a href="https://iffco.com/search-jobs/"> <img src="https://iffco.com/wp-content/themes/iffco/assets/img/icons/Vector.svg" alt="" /> Careers </a> </li> <li> <a href="https://iffco.com/contact-us/"> <img src="https://iffco.com/wp-content/themes/iffco/assets/img/icons/phone.svg" alt="" /> Contact Us </a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-581"> <a href="https://iffco.com/about/quick-facts/">About</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>About </h4> <p></p> <a href="https://iffco.com/video/" class="cta__primary" target="_self">Watch Video <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/about/quick-facts/">Quick Facts</a> </li> <li> <a href="https://iffco.com/history/">History</a> </li> <li> <a href="https://iffco.com/about/values/">Values</a> </li> <li> <a href="https://iffco.com/about/food-safety-and-quality/">Food Safety and Quality</a> </li> <li> <a href="https://iffco.com/about/innovation/">Innovation</a> </li> <li> <a href="https://iffco.com/about/company-policies/">Company Policies</a> </li> <li> <a href="https://iffco.com/about/international-operations/">International Operations</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-585"> <a href="https://iffco.com/brands/">Our Brands</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>Our Brands </h4> <p>Our brands span over 20 food and personal care categories.</p> <a href="https://iffco.com/brands/" class="cta__primary" target="_self">See All Brands <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/brands-category/agri-business/">Agri</a> </li> <li> <a href="https://iffco.com/brands-category/personal-home-care/">Personal & Home Care</a> </li> <li> <a href="https://iffco.com/brands-category/culinary/">Culinary</a> </li> <li> <a href="https://iffco.com/brands-category/impulse-foods/">Impulse Foods</a> </li> <li> <a href="https://iffco.com/brands-category/oils-and-fats/">Oils and Fats</a> </li> <li> <a href="https://iffco.com/brands-category/packaging/">Packaging</a> </li> <li> <a href="https://iffco.com/brands-category/sales-distribution/">Sales & Distribution</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-0"> <a href="https://iffco.com/sustainability/">Sustainability</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>Sustainability </h4> <p>Our products are a part of consumers daily lives. What affects them affects us. Protecting the environment is an extension of caring for our consumers.</p> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/sustainability/achievements/">Achievements</a> </li> <li> <a href="https://iffco.com/sustainability/milestones/">Milestones</a> </li> <li> <a href="https://iffco.com/sustainability/strategy/">Strategy</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-3676"> <a href="https://iffco.com/partners/">Partners</a> </li> <li id="parent-page-2208"> <a href="https://iffco.com/stories/">Stories</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>Stories </h4> <p>Step into the world of stories at the IFFCO Group and discover the experience of people who make IFFCO a thriving community.</p> <a href="https://iffco.com/stories/" class="cta__primary" target="_self">Stories <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/storiess/how-does-good-hygiene-affect-your-life/">How does good Hygiene affect your life?</a> </li> <li> <a href="https://iffco.com/storiess/how-food-awakens-childhood-memories/">How food awakens childhood memories</a> </li> <li> <a href="https://iffco.com/storiess/why-is-your-work-environment-important/">Why is your work environment important?</a> </li> <li> <a href="https://iffco.com/storiess/why-is-climate-change-dangerous/">Why is climate change dangerous?</a> </li> <li> <a href="https://iffco.com/storiess/iffco-professional-customer-engagement-centre-a-true-experience-of-excellence/">IFFCO Professional Customer Engagement Centre</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-2216"> <a href="https://iffco.com/news/">News & Events</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>News & Events </h4> <p>Welcome to our News & Events page and stay up-to-date on our dynamic organization’s latest developments, milestones, and noteworthy events.</p> <a href="https://iffco.com/news/" class="cta__primary" target="_self">News & Events <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/news-category/press-releases/">Press Releases</a> </li> <li> <a href="https://iffco.com/news-category/events-en/">Events</a> </li> <li> <a href="https://iffco.com/news-category/media-coverage/">Media Coverage</a> </li> <li> <a href="https://iffco.com/press-kit/">Press Kit</a> </li> </ul> </nav> </div> </div> </div> </div> </li> </ul> <button class="search__toggle" type="button" id="search__bar__toggle"> Search <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.5 16.5C11.2879 16.5 12.0682 16.3448 12.7961 16.0433C13.5241 15.7417 14.1855 15.2998 14.7427 14.7426C15.2998 14.1855 15.7418 13.5241 16.0433 12.7961C16.3448 12.0681 16.5 11.2879 16.5 10.5C16.5 9.71207 16.3448 8.93185 16.0433 8.2039C15.7418 7.47595 15.2998 6.81451 14.7427 6.25736C14.1855 5.70021 13.5241 5.25825 12.7961 4.95672C12.0682 4.65519 11.2879 4.5 10.5 4.5C8.90872 4.5 7.38259 5.13214 6.25737 6.25736C5.13216 7.38258 4.50002 8.9087 4.50002 10.5C4.50002 12.0913 5.13216 13.6174 6.25737 14.7426C7.38259 15.8679 8.90872 16.5 10.5 16.5ZM16.82 15.406L20.4 18.986C20.4955 19.0783 20.5716 19.1887 20.6239 19.3108C20.6762 19.4328 20.7037 19.564 20.7048 19.6968C20.7058 19.8296 20.6804 19.9613 20.63 20.0841C20.5797 20.207 20.5053 20.3186 20.4114 20.4124C20.3174 20.5062 20.2057 20.5804 20.0828 20.6306C19.9599 20.6808 19.8282 20.706 19.6954 20.7047C19.5626 20.7035 19.4314 20.6758 19.3095 20.6233C19.1875 20.5708 19.0772 20.4946 18.985 20.399L15.405 16.819C13.7975 18.0668 11.7748 18.6552 9.74877 18.4642C7.72273 18.2732 5.84562 17.3173 4.49957 15.7911C3.15351 14.2648 2.4397 12.2829 2.50344 10.2489C2.56718 8.2149 3.40368 6.28162 4.84266 4.84265C6.28164 3.40367 8.21492 2.56717 10.2489 2.50343C12.283 2.43968 14.2648 3.1535 15.7911 4.49955C17.3173 5.8456 18.2732 7.72271 18.4642 9.74875C18.6552 11.7748 18.0669 13.7975 16.819 15.405L16.82 15.406Z" fill="black" /> </svg> </button> <!-- <ul class="hamburger__menu" id="hamburger__menu__toggle"> <li></li> <li></li> <li></li> </ul> --> <button class="hamburger hamburger--squeeze" id="hamburger__menu__toggle" type="button"> <span class="hamburger-box"> <span class="hamburger-inner"></span> </span> </button> </nav> </div> </div> </div> <div class="search__bar"> <div class="container"> <form action="https://iffco.com" method="get" value=""> <div class="search__bar__wrap"> <input type="search" name="s" placeholder="Enter keyword..." /> <input type="hidden" name="lang" value="en" /> <!-- Add language attribute --> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.5 16.5C11.2879 16.5 12.0682 16.3448 12.7961 16.0433C13.5241 15.7417 14.1855 15.2998 14.7427 14.7426C15.2998 14.1855 15.7418 13.5241 16.0433 12.7961C16.3448 12.0681 16.5 11.2879 16.5 10.5C16.5 9.71207 16.3448 8.93185 16.0433 8.2039C15.7418 7.47595 15.2998 6.81451 14.7427 6.25736C14.1855 5.70021 13.5241 5.25825 12.7961 4.95672C12.0682 4.65519 11.2879 4.5 10.5 4.5C8.90872 4.5 7.38259 5.13214 6.25737 6.25736C5.13216 7.38258 4.50002 8.9087 4.50002 10.5C4.50002 12.0913 5.13216 13.6174 6.25737 14.7426C7.38259 15.8679 8.90872 16.5 10.5 16.5ZM16.82 15.406L20.4 18.986C20.4955 19.0783 20.5716 19.1887 20.6239 19.3108C20.6762 19.4328 20.7037 19.564 20.7048 19.6968C20.7058 19.8296 20.6804 19.9613 20.63 20.0841C20.5797 20.207 20.5053 20.3186 20.4114 20.4124C20.3174 20.5062 20.2057 20.5804 20.0828 20.6306C19.9599 20.6808 19.8282 20.706 19.6954 20.7047C19.5626 20.7035 19.4314 20.6758 19.3095 20.6233C19.1875 20.5708 19.0772 20.4946 18.985 20.399L15.405 16.819C13.7975 18.0668 11.7748 18.6552 9.74877 18.4642C7.72273 18.2732 5.84562 17.3173 4.49957 15.7911C3.15351 14.2648 2.4397 12.2829 2.50344 10.2489C2.56718 8.2149 3.40368 6.28162 4.84266 4.84265C6.28164 3.40367 8.21492 2.56717 10.2489 2.50343C12.283 2.43968 14.2648 3.1535 15.7911 4.49955C17.3173 5.8456 18.2732 7.72271 18.4642 9.74875C18.6552 11.7748 18.0669 13.7975 16.819 15.405L16.82 15.406Z" fill="black" /> </svg> </div> </form> </div> </div> </header> <div class="bread__crumbs_outer"> <div class="container"> <ul id="tsh_breadcrumbs" class="bread__crumbs"><li class="item-home"><a class="bread-link bread-home" href="https://iffco.com" title="Home">Home</a></li><li class="item-cat item-custom-post-type-brands"><div class="bread-cat bread-custom-post-type-brands" title="Category"><a href="">News</a></div></li><li class="item-current item-archive"><strong class="bread-current bread-archive">Packaging</strong></li></ul> </div> </div> <section class="hero__banner " style="--bg-color: #ee2e24;"> <div class="container"> <div class="hero__banner__content"> <h1> Packaging </h1> <p> Our brands span over 20 food and personal care categories. We also have significant presence in packaging, sales and distribution, chemicals and logistics. </p> </div> </div> <img src="https://iffco.com/wp-content/uploads/2023/12/qfbnr-1-1.png" alt="" /> <div class="overlay__grid__wrap"> <div class="overlay__grid__wrap__item " style="--card-bg: ;--line-color:; --empty-color: "> <img src="https://iffco.com/wp-content/uploads/2024/03/Quick-Facts-Banners-1440X159-A-04.webp" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> </div> <div class="overlay__grid__wrap__item__footer__icon ms-auto "> </div> </div> <div class="overlay__grid__wrap__item overlay__grid__wrap__item--empty--card3 overlay__grid__wrap__item--lines " style="--card-bg: #db2129;--line-color:#f36b64; --empty-color:#db2129 "> <div class="overlay__grid__wrap__item__header"> <div class="custom__hero__carousel"> <div class="custom__hero__carousel__item "> <h3> <span class="counters" data-number="50"> 50 </span> + </h3> <h5 class="text-white">Countries</h5> </div> <div class="custom__hero__carousel__item hidden"> <h3> <span class="counters" data-number="80"> 80 </span> + </h3> <h5 class="text-white">Brands</h5> </div> <div class="custom__hero__carousel__item hidden"> <h3> <span class="counters" data-number="12,000"> 12,000 </span> + </h3> <h5 class="text-white">People</h5> </div> </div> </div> <div class="overlay__grid__wrap__item__footer__icon "> <div class="overlay__grid__wrap__item__footer__icon__carousel"> <div class="overlay__grid__wrap__item__footer__icon__carousel__item "> <img src="https://iffco.com/wp-content/uploads/2024/03/Asset-3@4x-1.webp" alt="" /> </div> <div class="overlay__grid__wrap__item__footer__icon__carousel__item hidden "> <img src="https://iffco.com/wp-content/uploads/2023/12/badge.svg" alt="" /> </div> <div class="overlay__grid__wrap__item__footer__icon__carousel__item hidden "> <img src="https://iffco.com/wp-content/uploads/2023/12/people-1.svg" alt="" /> </div> </div> </div> </div> <div class="overlay__grid__wrap__item " style="--card-bg: ;--line-color:; --empty-color: "> <img src="https://iffco.com/wp-content/uploads/2024/06/shutterstock_2401756441-scaled.jpg" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> </div> <div class="overlay__grid__wrap__item__footer__icon "> </div> </div> <div class="overlay__grid__wrap__item " style="--card-bg: ;--line-color:; --empty-color: "> <img src="https://iffco.com/wp-content/uploads/2024/03/img11.webp" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> </div> <div class="overlay__grid__wrap__item__footer__icon "> </div> </div> </div> </section> <section class="brands__you__trust"> <div class="container"> <div class="brands__filter__form"> <div class="filter__by__name" action="/" method="get" autocomplete="off"> <input type="text" placeholder="Search by product name" name="s" id="keyword" onkeyup="mukto_search_fetch()"> </div> <div class="filter__by__category" id="category-filter-form"> <select name="brand__categry" id="category-filter"> <option value="" selected="selected" disabled="disabled">By Category</option> <option value="all" data-href="https://iffco.com/brands/">All Category</option> <!-- <option value="all" data-href="/brands">All Category</option> --> <option class="category-option" data-href="https://iffco.com/brands-category/agri-business/" >Agri</option> <option class="category-option" data-href="https://iffco.com/brands-category/oils-and-fats/" >Oils and Fats</option> <option class="category-option" data-href="https://iffco.com/brands-category/culinary/" >Culinary</option> <option class="category-option" data-href="https://iffco.com/brands-category/personal-home-care/" >Personal & Home Care</option> <option class="category-option" data-href="https://iffco.com/brands-category/impulse-foods/" >Impulse Foods</option> <option class="category-option" data-href="https://iffco.com/brands-category/sales-distribution/" >Sales & Distribution</option> <option class="category-option" data-href="https://iffco.com/brands-category/packaging/" selected="selected" >Packaging</option> </select> </div> </div> <div class="row brands__grid__row" id="datafetch"> <div class="col-12 col-md-6 col-xl-4"> <a href="https://iffco.com/brands/iffco-packaging/" class="brands__card"> <img src="https://iffco.com/wp-content/uploads/2023/12/Artboard-1@3x-1.png" alt="IFFCO Packaging"> <div class="brands__card__content"> <h4>IFFCO Packaging</h4> <p>Packaging powered by research and development.</p> </div> </a> </div> </div> </div> </section> <section class="enduring__values" style="--bg-color:#f7f6f6 "> <div class="container"> <h2 class="title__secondary text-center"> Enduring Values, Enhancing Lives </h2> <h5 class="sub__title text-center"> The preferred provider of sustainable value-added products and services for everyone, everywhere & every day. </h5> <a class="cta__primary mx-auto" href="https://iffco.com/contact-us/" target="_self">Contact Us <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg></a> </div> </section> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script> $(document).ready(function () { $('#category-filter').on('change', function () { var href = $(this).find('option:selected').data('href'); if (href && href !== "") { window.location.href = href; } }); }); </script> <footer> <div class="container"> <div class="row"> <div class="col-12 col-lg-6 col-xl-3"> <a href="https://iffco.com" class="footer__logo"> <img src="https://iffco.com/wp-content/uploads/2023/12/logo.svg" alt=""> </a> <!--<h3>One of the leading and most diversified business groups in the Middle East.</h3>--> <div class="news__letter__signup__form"> </div> <div class="footer__navigation"> <h5>Connect with us</h5> <ul class="social__media__links"> <li> <a target="_blank" href="https://www.facebook.com/IFFCO"> <img src="https://iffco.com/wp-content/uploads/2024/02/facebook.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.instagram.com/iffco_group/"> <img src="https://iffco.com/wp-content/uploads/2024/02/instagram-1.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.linkedin.com/company/iffco/"> <img src="https://iffco.com/wp-content/uploads/2024/02/linkedin-1.png" alt=""> </a> </li> <li> <a target="_blank" href="https://twitter.com/IFFCOGROUP"> <img src="https://iffco.com/wp-content/uploads/2024/02/x.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.youtube.com/@iffco_group"> <img src="https://iffco.com/wp-content/uploads/2024/02/Vector-1.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.tiktok.com/@iffcogroup"> <img src="https://iffco.com/wp-content/uploads/2024/02/tiktok-1.png" alt=""> </a> </li> </ul> </div> </div> <div class="col-12 col-lg-6 col-xl-9"> <div class="row"> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5> <a href="https://iffco.com/about/"> About </a> </h5> <ul> <li> <a href="https://iffco.com/about/" target="_self">Quick Facts</a> </li> <li> <a href="https://iffco.com/about/history/" target="_self">History</a> </li> <li> <a href="https://iffco.com/about/values/" target="_self">Values</a> </li> <li> <a href="https://iffco.com/about/food-safety-and-quality/" target="_self">Food Safety and Quality</a> </li> <li> <a href="https://iffco.com/about/innovation/" target="_self">Innovation</a> </li> <li> <a href="https://iffco.com/about/company-policies/" target="_self">Company Policies</a> </li> <li> <a href="https://iffco.com/about/international-operations/" target="_self">International Operations</a> </li> </ul> </div> </div> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5> <a href="https://iffco.com/brands/"> Our Brands </a> </h5> <ul> <li> <a href="https://iffco.com/brands-category/agri-business/" target="_self">Agri</a> </li> <li> <a href="https://iffco.com/brands-category/personal-home-care/" target="_self">Personal & Home Care</a> </li> <li> <a href="https://iffco.com/brands-category/culinary/" target="_self">Culinary</a> </li> <li> <a href="https://iffco.com/brands-category/impulse-foods/" target="_self">Impulse Foods</a> </li> <li> <a href="https://iffco.com/brands-category/logistics/" target="_self">Logistics</a> </li> <li> <a href="https://iffco.com/brands-category/oils-and-fats/" target="_self">Oils and Fats</a> </li> <li> <a href="https://iffco.com/brands-category/packaging/" target="_self">Packaging Solutions</a> </li> <li> <a href="https://iffco.com/brands-category/sales-distribution/" target="_self">Sales & Distribution</a> </li> </ul> </div> </div> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5> <a href="https://iffco.com/sustainability/achievements/"> Sustainabilty </a> </h5> <ul> <li> <a href="https://iffco.com/sustainability/achievements/" target="_self">Achievements</a> </li> <li> <a href="https://iffco.com/sustainability/strategy/" target="_self">Strategy</a> </li> <li> <a href="https://iffco.com/sustainability/milestones/" target="_self">Milestones</a> </li> </ul> </div> </div> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5>Others</h5> <ul> <li> <a href="https://iffco.com/news/" target="_self">News & Events</a> </li> <li> <a href="https://iffco.com/stories/" target="_self">Stories</a> </li> <li> <a href="https://iffco.com/partners/" target="_self">Partners</a> </li> <li> <a href="https://iffco.com/search-jobs/" target="_self">Careers</a> </li> <li> <a href="https://iffco.com/contact-us/" target="_self">Contact Us</a> </li> </ul> </div> </div> <!--<div class="col-12 col-sm-6 col-lg-4- col-xl-3">--> <!--</div>--> </div> </div> <!--<div class="col-12 col-lg-6 col-xl-3"></div>--> <div class="col-12 col- col-xl-90"> <div class="footer__bottom"> <!--<p><//?php the_field('footer_bottom_title','options'); ?></p>--> <p>IFFCO 2024. All rights reserved</p> <ul> <li> <a href="https://iffco.com/privacy-policy/" target="_self">Privacy Policy</a> </li> <li> <a href="https://iffco.com/cookie-policy/" target="_self">Cookie Policy</a> </li> </ul> </div> </div> </div> </div> </footer> <script type="text/javascript"> function mukto_search_fetch() { jQuery.ajax({ url: 'https://iffco.com/wp-admin/admin-ajax.php', type: 'post', data: { action: 'data_fetch', keyword: jQuery('#keyword').val() }, success: function (data) { jQuery('#datafetch').html(data); } }); } </script> <style> :root { -webkit-user-select: none; -webkit-touch-callout: none; -ms-user-select: none; -moz-user-select: none; user-select: none; } </style> <script type="text/javascript"> /*<![CDATA[*/ document.oncontextmenu = function(event) { if (event.target.tagName != 'INPUT' && event.target.tagName != 'TEXTAREA') { event.preventDefault(); } }; document.ondragstart = function() { if (event.target.tagName != 'INPUT' && event.target.tagName != 'TEXTAREA') { event.preventDefault(); } }; /*]]>*/ </script> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script src="https://iffco.com/wp-content/cache/minify/85094.js"></script> <script src="https://iffco.com/wp-content/cache/minify/26e4a.js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script src="https://iffco.com/wp-content/cache/minify/1f540.js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/iffco.com\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; /* ]]> */ </script> <script src="https://iffco.com/wp-content/cache/minify/b68ea.js"></script> <script src="https://iffco.com/wp-content/cache/minify/ba953.js"></script> <script src="https://iffco.com/wp-content/cache/minify/37fa1.js"></script> <script src="https://iffco.com/wp-content/cache/minify/af1d5.js"></script> <script src="https://iffco.com/wp-content/cache/minify/63013.js"></script> <script src="https://iffco.com/wp-content/cache/minify/8370e.js"></script> <script src="https://iffco.com/wp-content/cache/minify/38db6.js"></script> <script src="https://iffco.com/wp-content/cache/minify/079da.js"></script> <script src="https://iffco.com/wp-content/cache/minify/b64ae.js"></script> <script type="text/javascript" id="heateor_sss_sharing_js-js-before"> /* <![CDATA[ */ function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://iffco.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://iffco.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://iffco.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 1;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")} /* ]]> */ </script> <script src="https://iffco.com/wp-content/cache/minify/16f71.js"></script> <script type="text/javascript"> (function() { var expirationDate = new Date(); expirationDate.setTime( expirationDate.getTime() + 31536000 * 1000 ); document.cookie = "pll_language=en; expires=" + expirationDate.toUTCString() + "; path=/; secure; SameSite=Lax"; }()); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Page Caching using Disk: Enhanced Minified using Disk Served from: example.com @ 2024-11-23 20:43:00 by W3 Total Cache -->