CINXE.COM

Home — Institute of Packaging, Ghana

<!DOCTYPE html> <html dir="ltr" lang="en-US" prefix="og: https://ogp.me/ns#" class="no-js"> <head> <meta name="MobileOptimized" content="width" /> <meta name="HandheldFriendly" content="true" /> <meta name="generator" content="Drupal 10 (https://www.drupal.org)" /> <meta charset="UTF-8"> <link rel="profile" href="https://gmpg.org/xfn/11"> <!-- browser-theme-color for WordPress --> <meta name="theme-color" content="#009240"> <meta name="msapplication-navbutton-color" content="#009240"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> 'use strict'; (function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script> <title>Home — Institute of Packaging, Ghana</title> <style> .pro-wccp:before { content: "\f160"; top: 3px; } .pro-wccp:before{ color:#02CA03 !important } .pro-wccp { transform: rotate(45deg); } </style> <script id="wccp_pro_disable_selection"> var image_save_msg = 'You are not allowed to save images!'; var no_menu_msg = 'Context menu disabled!'; var smessage = "<b>Alert:</b> Sorry, IOPG is protected!!"; "use strict"; /* This because search property "includes" does not supported by IE*/ if (!String.prototype.includes) { String.prototype.includes = function(search, start) { if (typeof start !== 'number') { start = 0; } if (start + search.length > this.length) { return false; } else { return this.indexOf(search, start) !== -1; } }; } /*////////////////////////////////////*/ let canCall = true; function call_disable_copy_WithDelay(e) { if (canCall) { canCall = false; disable_copy(e); setTimeout(() => { canCall = true; }, 1000); } } function disable_copy(e) { window.wccp_pro_iscontenteditable_flag = false; wccp_pro_log_to_console_if_allowed("function", "disable_copy"); var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; var elemtype = e.target.nodeName; elemtype = elemtype.toUpperCase(); if (apply_class_exclusion(e) == "Yes") return true; if(wccp_pro_iscontenteditable(e) == true) {return true;} if(is_content_editable_element(current_clicked_element) == true) { return true; } else { if (smessage !== "" && e.detail == 2) show_wccp_pro_message(smessage); if (isSafari) { return true; } else { //wccp_pro_clear_any_selection(); return false; } } /*disable context menu when shift + right click is pressed*/ var shiftPressed = 0; var evt = e?e:window.event; if (parseInt(navigator.appVersion)>3) { if (document.layers && navigator.appName=="Netscape") shiftPressed = (e.modifiers-0>3); else shiftPressed = e.shiftKey; if (shiftPressed) { if (smessage !== "") show_wccp_pro_message(smessage); var isFirefox = typeof InstallTrigger !== 'undefined'; /* Firefox 1.0+ */ if (isFirefox) { evt.cancelBubble = true; if (evt.stopPropagation) evt.stopPropagation(); if (evt.preventDefault()) evt.preventDefault(); show_wccp_pro_message (smessage); wccp_pro_clear_any_selection(); return false; } wccp_pro_clear_any_selection(); return false; } } if(e.which === 2 ){ var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName; show_wccp_pro_message(smessage); wccp_pro_clear_any_selection(); return false; } var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor); var checker_IMG = 'checked'; if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;} //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys if (is_content_editable_element(elemtype) == false) { if (smessage !== "" && e.detail == 2) show_wccp_pro_message(smessage); if (isSafari) { return true; } else { wccp_pro_clear_any_selection(); return false; } } else { return true; } } //////////////////////////// function disable_copy_ie() { wccp_pro_log_to_console_if_allowed("function", "disable_copy_ie_function_started"); var e = e || window.event; /*also there is no e.target property in IE.*/ /*instead IE uses window.event.srcElement*/ var target = e.target || e.srcElement; var elemtype = window.event.srcElement.nodeName; elemtype = elemtype.toUpperCase(); if(wccp_pro_iscontenteditable(e) == true) return true; if (apply_class_exclusion(e) == "Yes") return true; if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;} //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys if (is_content_editable_element(elemtype) == false) { return false; } } function disable_drag_text(e) { wccp_pro_log_to_console_if_allowed("function", "disable_drag_text"); /*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/ /*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/ var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/ var target = e.target || e.srcElement; /*For contenteditable tags*/ if (apply_class_exclusion(e) == "Yes") return true; var elemtype = e.target.nodeName; elemtype = elemtype.toUpperCase(); var disable_drag_text_drop = 'checked'; if (disable_drag_text_drop != "checked") return true; if (window.location.href.indexOf("/user/") > -1) { return true; /*To allow users to drag & drop images when editing thier profiles*/ } return false; } /*/////////////////special for safari Start////////////////*/ var onlongtouch; var timer; var touchduration = 1000; /*length of time we want the user to touch before we do something*/ var elemtype = ""; function touchstart(e) { wccp_pro_log_to_console_if_allowed("function", "touchstart"); var e = e || window.event; /*also there is no e.target property in IE.*/ /*instead IE uses window.event.srcElement*/ var target = e.target || e.srcElement; elemtype = window.event.srcElement.nodeName; elemtype = elemtype.toUpperCase(); if(!wccp_pro_is_passive()) e.preventDefault(); if (!timer) { timer = setTimeout(onlongtouch, touchduration); } } function touchend() { wccp_pro_log_to_console_if_allowed("function", "touchend"); /*stops short touches from firing the event*/ if (timer) { clearTimeout(timer); timer = null; } onlongtouch(); } onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/ { wccp_pro_log_to_console_if_allowed("function", "onlongtouch"); if (is_content_editable_element(elemtype) == false) { if (window.getSelection) { if (window.getSelection().empty) { /*Chrome*/ window.getSelection().empty(); } else if (window.getSelection().removeAllRanges) { /*Firefox*/ window.getSelection().removeAllRanges(); } } else if (document.selection) { /*IE?*/ var textRange = document.body.createTextRange(); textRange.moveToElementText(element); textRange.select(); document.selection.empty(); } return false; } }; document.addEventListener("DOMContentLoaded", function(event) { window.addEventListener("touchstart", touchstart, false); window.addEventListener("touchend", touchend, false); }); function wccp_pro_is_passive() { wccp_pro_log_to_console_if_allowed("function", "wccp_pro_is_passive"); var cold = false, hike = function() {}; try { var aid = Object.defineProperty({}, 'passive', { get() {cold = true} }); window.addEventListener('test', hike, aid); window.removeEventListener('test', hike, aid); } catch (e) {} return cold; } /*/////////////////////////////////////////////////////////////////*/ function reEnable() { return true; } if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE { document.ondragstart = disable_drag_text; document.onselectstart = call_disable_copy_WithDelay; document.onselectionchange = call_disable_copy_WithDelay; //document.onmousedown = disable_copy; //document.addEventListener('click', disable_copy, false); //document.addEventListener('click', set_current_clicked_element, false); document.addEventListener('mousedown', set_current_clicked_element, false); //document.onclick = reEnable; }else { document.onselectstart = disable_copy_ie; } var current_clicked_element = ""; var current_clicked_object = null; function set_current_clicked_element(e) { var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; var elemtype = e.target.nodeName; elemtype = elemtype.toUpperCase(); current_clicked_element = elemtype; console.log("current_clicked_element = " + current_clicked_element); } </script> <script id="wccp_pro_disable_hot_keys"> /*****************For contenteditable tags***************/ var wccp_pro_iscontenteditable_flag = false; function wccp_pro_iscontenteditable(e) { var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; var iscontenteditable = "false"; if(typeof target.getAttribute!="undefined" ) { iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string if(typeof target.hasAttribute!="undefined") { if(target.hasAttribute("contenteditable")) iscontenteditable = true; } } console.log("iscontenteditable:" + iscontenteditable); var iscontenteditable2 = false; if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable; if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true) { if(typeof target.style!="undefined" ) target.style.cursor = "text"; //wccp_pro_log_to_console_if_allowed("", iscontenteditable + " " + iscontenteditable2); wccp_pro_iscontenteditable_flag = true; wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: true"); return true; } wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: false"); //wccp_pro_iscontenteditable_flag = false; } /******************************************************/ function wccp_pro_clear_any_selection() { if(window.wccp_pro_iscontenteditable_flag == true) return; wccp_pro_log_to_console_if_allowed("function", "wccp_pro_clear_any_selection"); var myName = wccp_pro_clear_any_selection.caller.toString(); myName = myName.substr('function '.length); myName = myName.substr(0, myName.indexOf('(')); console.log("called_by: " + myName); if (window.getSelection) { if (window.getSelection().empty) { // Chrome window.getSelection().empty(); } else if (window.getSelection().removeAllRanges) { // Firefox window.getSelection().removeAllRanges(); } } else if (document.selection) { // IE? document.selection.empty(); } //show_wccp_pro_message("You are not allowed to make this operation"); } /*Is content_editable element*/ function is_content_editable_element(element_name = "") { if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK") { wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: true >>" + element_name); return true; } wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: false >>" + element_name); return false; } /*Is selection enabled element*/ /* function is_selection_enabled_element(element_name = "") { if (is_content_editable_element == true) { wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: true >>" + element_name); return true; } wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: false >>" + element_name); return false; } */ /*Hot keys function */ function disable_hot_keys(e) { wccp_pro_log_to_console_if_allowed("function", "disable_hot_keys"); e = e || window.event; //console.log(e); if (!e) return; var key; if(window.event) key = window.event.keyCode; /*IE*/ else if (e.hasOwnProperty("which")) key = e.which; /*firefox (97)*/ wccp_pro_log_to_console_if_allowed("Data:", key); if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } var elemtype = e.target.tagName; elemtype = elemtype.toUpperCase(); var sel = getSelectionTextAndContainerElement(); if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */ /*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/ if (is_content_editable_element(elemtype) == true) { elemtype = 'TEXT'; } if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT'; if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/ { copyTextToClipboard(""); show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (e.ctrlKey || e.metaKey) { if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43)) { show_wccp_pro_message('<b>Alert:</b> You are not allowed to copy content or view source'); return false; } if (elemtype!= 'TEXT') { if (key == 65) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 67) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 88) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 86) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } } if (key == 85) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 80) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 44) { copyTextToClipboard("no"); show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 73)//F12 chrome developer key disable { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } if (key == 83) { show_wccp_pro_message('You are not allowed to print or save this page!!'); return false; } } return true; } window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function() { jQuery(document).bind("keyup keydown", disable_hot_keys); }); }); </script> <style> .wccp_pro_copy_code_button { line-height: 6px; width: auto; font-size: 8pt; font-family: tahoma; margin-top: 1px; margin-right: 2px; position:absolute; top:0; right:0; border-radius: 4px; opacity: 100%; margin-top: -30px; } .wccp_pro_copy_code_button:hover { opacity: 100%; } .wccp_pro_copy_code_button[disabled] { opacity: 40%; border-color: red; } code,pre { overflow: visible; white-space: pre-line; } </style> <script id="wccp_pro_disable_Right_Click"> function nocontext(e) { wccp_pro_log_to_console_if_allowed("function", "nocontext"); e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement if (apply_class_exclusion(e) == 'Yes') return true; var exception_tags = 'NOTAG,'; var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName; console.log("clickedTag: " + clickedTag); var target = e.target || e.srcElement; var parent_tag = ""; var parent_of_parent_tag = ""; if(target.parentElement != null) { parent_tag = target.parentElement.tagName; if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName; } var checker = 'checked'; if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') { if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG); return false; }else {exception_tags = exception_tags + 'IMG,';} checker = ''; if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') { if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO); return false; }else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';} checker = ''; if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') { if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A); return false; }else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";} checker = 'checked'; if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" || clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') { if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB); return false; }else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';} checker = 'checked'; if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') { if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT); return false; }else {exception_tags = exception_tags + 'INPUT,PASSWORD,';} checker = 'checked'; if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') { if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H); return false; }else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';} checker = 'checked'; if (clickedTag == "TEXTAREA" && checker == 'checked') { if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA); return false; }else {exception_tags = exception_tags + 'TEXTAREA,';} checker = 'checked'; if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') { if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces); return false; } else { if (exception_tags.indexOf(clickedTag)!=-1) { return true; } else return false; } } function disable_drag_images(e) { wccp_pro_log_to_console_if_allowed("function", "disable_drag_images"); var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; //For contenteditable tags if (apply_class_exclusion(e) == "Yes") return true; var elemtype = e.target.nodeName; if (elemtype != "IMG") {return;} elemtype = elemtype.toUpperCase(); var disable_drag_drop_images = 'checked'; if (disable_drag_drop_images != "checked") return true; if (window.location.href.indexOf("/user/") > -1) { return true; //To allow users to drag & drop images when editing thier profiles } show_wccp_pro_message(alertMsg_IMG); return false; } var alertMsg_IMG = "<b>Alert:</b> Sorry! IOPG has Protected this image"; var alertMsg_A = "<b>Alert:</b> Sorry! IOPG has protected this link"; var alertMsg_PB = "<b>Alert:</b> Sorry! IOPG has disabled Right click on text!"; var alertMsg_INPUT = "<b>Alert:</b> Sorry! IOPG is protected!"; var alertMsg_H = "<b>Alert:</b> Sorry! IOPG has protected this headline"; var alertMsg_TEXTAREA = "<b>Alert:</b> Sorry! IOPG is protected!"; var alertMsg_EmptySpaces = "<b>Alert:</b> Sorry! IOPG has disabled Right click on empty spaces!"; var alertMsg_VIDEO = "<b>Alert:</b> Sorry! IOPG has protected this Video"; document.oncontextmenu=null; document.oncontextmenu = nocontext; document.addEventListener("contextmenu",nocontext); window.addEventListener("contextmenu",nocontext); </script> <script id="wccp_pro_disable_drag_images"> document.ondragstart = disable_drag_images; window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function(){ jQuery('img').each(function() { jQuery(this).attr('draggable', false); }); }); }); </script> <style id="wccp_pro_style1"> img{ -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -khtml-user-select: none; user-select: none; -webkit-user-drag: none; } </style> <script id="wccp_pro_css_disable_selection"> function wccp_pro_msieversion() { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE"); var msie2 = ua.indexOf("Edge"); var msie3 = ua.indexOf("Trident"); if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number { return "IE"; } else // If another browser, return 0 { return "otherbrowser"; } } var e = document.getElementsByTagName('H1')[0]; if(e && wccp_pro_msieversion() == "IE") { e.setAttribute('unselectable',"on"); } </script> <script> window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function() { jQuery("a:has(img)").each(function() { var attr_href = jQuery(this).attr("href"); if (attr_href.endsWith("jpg") || attr_href.endsWith("png") || attr_href.endsWith("gif") || attr_href.endsWith("webp") || attr_href.endsWith("bmp")) { jQuery(this).replaceWith(jQuery(this).children()); } }); }); }); </script> <script id="wccp_pro_class_exclusion"> function copyToClipboard(elem) { // create hidden text element, if it doesn't already exist var targetId = "_wccp_pro_hiddenCopyText_"; { // must use a temporary form element for the selection and copy target = document.getElementById(targetId); if (!target) { var target = document.createElement("textarea"); target.style.position = "absolute"; target.style.left = "-9999px"; target.style.top = "0"; target.id = targetId; document.body.appendChild(target); } target.textContent = elem.textContent; } // select the content var currentFocus = document.activeElement; target.focus(); target.setSelectionRange(0, target.value.length); // copy the selection var succeed; try { succeed = document.execCommand("copy"); } catch(e) { succeed = false; } // restore original focus if (currentFocus && typeof currentFocus.focus === "function") { currentFocus.focus(); } // clear temporary content target.textContent = ""; document.getElementsByTagName('span')[0].innerHTML = " "; return succeed; } /**************************************************/ function wccp_pro_log_to_console_if_allowed(title = "title", data = "") { var myName = ""; if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString(); myName = myName.substr('function '.length); myName = myName.substr(0, myName.indexOf('(')); //console.log("function_name: " + myName); } /**************************************************/ function fallbackCopyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand("copy"); var msg = successful ? "successful" : "unsuccessful"; console.log("Fallback: Copying text command was " + msg); } catch (err) { console.error("Fallback: Oops, unable to copy", err); } document.body.removeChild(textArea); } /*****************************************/ function copyTextToClipboard(text) { if (!navigator.clipboard) { fallbackCopyTextToClipboard(text); return; } navigator.clipboard.writeText(text).then( function() { console.log("Async: Copying to clipboard was successful!"); }, function(err) { console.error("Async: Could not copy text: ", err); } ); } /*****************************************/ /*getSelectionTextAndContainerElement*/ function getSelectionTextAndContainerElement() { var text = "", containerElement = null; if (typeof window.getSelection != "undefined") { var sel = window.getSelection(); if (sel.rangeCount) { var node = sel.getRangeAt(0).commonAncestorContainer; containerElement = node.nodeType == 1 ? node : node.parentNode; if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement; text = sel.toString(); } } else if (typeof document.selection != "undefined" && document.selection.type != "Control") { var textRange = document.selection.createRange(); containerElement = textRange.parentElement(); text = textRange.text; } return { text: text, containerElement: containerElement }; } function getSelectionParentElement() { var parentEl = null, sel; if (window.getSelection) { sel = window.getSelection(); if (sel.rangeCount) { parentEl = sel.getRangeAt(0).commonAncestorContainer; //sel.getRangeAt(0).startContainer.parentNode; if (parentEl.nodeType != 1) { parentEl = parentEl.parentNode; } } } else if ( (sel = document.selection) && sel.type != "Control") { parentEl = sel.createRange().parentElement(); } let arr = new Array(); arr["nodeName"] = "cant_find_parent_element"; if(parentEl != null) return parentEl; else return arr; } /*****************************************/ function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } /*****************************************/ </script> <script id="apply_class_exclusion"> function apply_class_exclusion(e) { wccp_pro_log_to_console_if_allowed("function", "apply_class_exclusion" + e); var my_return = 'No'; var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement || 'nothing'; //if(target.parentElement != null) console.log (target.parentElement.className); var excluded_classes = '' + ''; var class_to_exclude = ""; if(target.parentElement != null) { class_to_exclude = target.className + ' ' + target.parentElement.className || ''; }else{ class_to_exclude = target.className; } var class_to_exclude_array = Array(); //console.log(class_to_exclude); if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" "); //console.log (class_to_exclude_array); class_to_exclude_array.forEach(function(item) { if(item != '' && excluded_classes.indexOf(item)>=0) { //target.style.cursor = "text"; //console.log ('Yes'); my_return = 'Yes'; } }); try { class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || ''; } catch(err) { class_to_exclude = ''; } if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0) { //target.style.cursor = "text"; my_return = 'Yes'; } return my_return; } </script> <style id="wccp_pro_style2" data-asas-style=""> *[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/ -webkit-user-select: auto !important; cursor: text !important; user-select: text !important; pointer-events: auto !important; } /* *[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;} *[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;} input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;} input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;} */ a{ cursor: pointer ; pointer-events: auto !important;} </style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- All in One SEO 4.7.8 - aioseo.com --> <meta name="description" content="INSTITUTE OF PACKAGING, GHANA Our Background Work Overview Duties The Institute of Packaging, Ghana (IOPG), is a registered professional body operating in Ghana. Following its inauguration on 3rd November 2003, the IOPG has been at the forefront of promoting packaging practice in Ghana and in the West Africa sub-region. This is through the provision of" /> <meta name="robots" content="max-image-preview:large" /> <link rel="canonical" href="https://iopghana.org/" /> <meta property="og:locale" content="en_US" /> <meta property="og:site_name" content="Institute of Packaging, Ghana — Better Packaging for Better Quality of Life" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Home — Institute of Packaging, Ghana" /> <meta property="og:description" content="INSTITUTE OF PACKAGING, GHANA Our Background Work Overview Duties The Institute of Packaging, Ghana (IOPG), is a registered professional body operating in Ghana. Following its inauguration on 3rd November 2003, the IOPG has been at the forefront of promoting packaging practice in Ghana and in the West Africa sub-region. This is through the provision of" /> <meta property="og:url" content="https://iopghana.org/" /> <meta property="og:image" content="https://iopghana.org/storage/2021/03/NEW-LOGO-MAIN.png" /> <meta property="og:image:secure_url" content="https://iopghana.org/storage/2021/03/NEW-LOGO-MAIN.png" /> <meta property="article:published_time" content="2021-02-24T18:54:42+00:00" /> <meta property="article:modified_time" content="2024-10-06T03:17:41+00:00" /> <meta property="article:publisher" content="https://facebook.com/iopghana" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@iopghana" /> <meta name="twitter:title" content="Home — Institute of Packaging, Ghana" /> <meta name="twitter:description" content="INSTITUTE OF PACKAGING, GHANA Our Background Work Overview Duties The Institute of Packaging, Ghana (IOPG), is a registered professional body operating in Ghana. Following its inauguration on 3rd November 2003, the IOPG has been at the forefront of promoting packaging practice in Ghana and in the West Africa sub-region. This is through the provision of" /> <meta name="twitter:creator" content="@iopghana" /> <meta name="twitter:image" content="https://iopghana.org/storage/2021/03/NEW-LOGO-MAIN.png" /> <script type="application/ld+json" class="aioseo-schema"> {"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/iopghana.org\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/iopghana.org\/#listItem","position":1,"name":"Home"}]},{"@type":"Organization","@id":"https:\/\/iopghana.org\/#organization","name":"Institute of Packaging, Ghana","description":"Better Packaging for Better Quality of Life","url":"https:\/\/iopghana.org\/","telephone":"+233302816260","logo":{"@type":"ImageObject","url":"https:\/\/iopghana.org\/storage\/2021\/03\/NEW-LOGO-MAIN.png","@id":"https:\/\/iopghana.org\/#organizationLogo"},"image":{"@id":"https:\/\/iopghana.org\/#organizationLogo"},"sameAs":["https:\/\/facebook.com\/iopghana","https:\/\/x.com\/iopghana","https:\/\/instagram.com\/iopghana","https:\/\/pinterest.com\/iopghana","https:\/\/youtube.com\/iopghana"]},{"@type":"WebPage","@id":"https:\/\/iopghana.org\/#webpage","url":"https:\/\/iopghana.org\/","name":"Home \u2014 Institute of Packaging, Ghana","description":"INSTITUTE OF PACKAGING, GHANA Our Background Work Overview Duties The Institute of Packaging, Ghana (IOPG), is a registered professional body operating in Ghana. Following its inauguration on 3rd November 2003, the IOPG has been at the forefront of promoting packaging practice in Ghana and in the West Africa sub-region. This is through the provision of","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/iopghana.org\/#website"},"breadcrumb":{"@id":"https:\/\/iopghana.org\/#breadcrumblist"},"datePublished":"2021-02-24T18:54:42+00:00","dateModified":"2024-10-06T03:17:41+00:00"},{"@type":"WebSite","@id":"https:\/\/iopghana.org\/#website","url":"https:\/\/iopghana.org\/","name":"Institute of Packaging, Ghana","description":"Better Packaging for Better Quality of Life","inLanguage":"en-US","publisher":{"@id":"https:\/\/iopghana.org\/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/iopghana.org\/?s={search_term_string}"},"query-input":"required name=search_term_string"}}]} </script> <!-- All in One SEO --> <link rel='dns-prefetch' href='//translate.google.com' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="Institute of Packaging, Ghana &raquo; Feed" href="https://iopghana.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Institute of Packaging, Ghana &raquo; Comments Feed" href="https://iopghana.org/comments/feed/" /> <!-- This site uses the Google Analytics by MonsterInsights plugin v9.2.4 - Using Analytics tracking - https://www.monsterinsights.com/ --> <!-- Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel. --> <!-- No tracking code set --> <!-- / Google Analytics by MonsterInsights --> <script> /* <![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":{"concatemoji":"https:\/\/iopghana.org\/lib\/js\/wp-emoji-release.min.js"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <style id='wp-emoji-styles-inline-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> <style id='classic-theme-styles-inline-css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-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' id='google-language-translator-css' href='https://iopghana.org/core/modules/6bf30d63de/css/style.css' media='' /> <link rel='stylesheet' id='glt-toolbar-styles-css' href='https://iopghana.org/core/modules/6bf30d63de/css/toolbar.css' media='' /> <link rel='stylesheet' id='font-awesome-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/font-awesome/css/font-awesome.min.css' media='all' /> <link rel='stylesheet' id='themify-css' href='https://iopghana.org/core/modules/e3dec6f7ec/icon-picker/icon-libraries/themify-icons/themify-icons.css' media='all' /> <link rel='stylesheet' id='sgicon-css' href='https://iopghana.org/core/modules/e3dec6f7ec/icon-picker/icon-libraries/stroke-gap-icons/style.css' media='all' /> <link rel='stylesheet' id='vc_linecons-css' href='https://iopghana.org/core/modules/041dc5d622/assets/css/lib/vc-linecons/vc_linecons_icons.min.css' media='all' /> <link rel='stylesheet' id='themestek_liviza_business_icon-css' href='https://iopghana.org/core/modules/e3dec6f7ec/icon-picker/icon-libraries/themestek-liviza-icons/flaticon.css' media='all' /> <link rel='stylesheet' id='themestek-cs-google-fonts-css' href='//fonts.googleapis.com/css?family=Arial%3A400%7CRoboto%3A100%2C100italic%2C300%2C300italic%2C400%2Citalic%2C500%2C500italic%2C700%2C700italic%2C900%2C900italic%7COswald%3A700%7CNunito+Sans%3A700' media='all' /> <link rel='stylesheet' id='liviza-base-icons-css' href='https://iopghana.org/core/views/df66152b2d/libraries/themestek-liviza-icons/css/themestek-liviza-icons.css' media='all' /> <link rel='stylesheet' id='perfect-scrollbar-css' href='https://iopghana.org/core/views/df66152b2d/libraries/perfect-scrollbar/perfect-scrollbar.min.css' media='all' /> <link rel='stylesheet' id='chrisbracco-tooltip-css' href='https://iopghana.org/core/views/df66152b2d/libraries/chrisbracco-tooltip/chrisbracco-tooltip.min.css' media='all' /> <link rel='stylesheet' id='multi-columns-row-css' href='https://iopghana.org/core/views/df66152b2d/css/multi-columns-row.css' media='all' /> <link rel='stylesheet' id='select2-css' href='https://iopghana.org/core/views/df66152b2d/libraries/select2/select2.min.css' media='all' /> <link rel='stylesheet' id='flexslider-css' href='https://iopghana.org/core/views/df66152b2d/libraries/flexslider/flexslider.css' media='all' /> <link rel='stylesheet' id='slick-css' href='https://iopghana.org/core/views/df66152b2d/libraries/slick/slick.css' media='all' /> <link rel='stylesheet' id='slick-theme-css' href='https://iopghana.org/core/views/df66152b2d/libraries/slick/slick-theme.css' media='all' /> <link rel='stylesheet' id='prettyphoto-css' href='https://iopghana.org/core/modules/041dc5d622/assets/lib/vendor/prettyphoto/css/prettyPhoto.min.css' media='all' /> <link rel='stylesheet' id='flag-icon-css-css' href='https://iopghana.org/core/views/df66152b2d/libraries/flag-icon-css/css/flag-icon.min.css' media='all' /> <link rel='stylesheet' id='wpca-frontend-0-css' href='https://iopghana.org/core/modules/4daf83416d/modules/core/css/wpca-core.min.css' media='all' /> <link rel='stylesheet' id='wpca-frontend-1-css' href='https://iopghana.org/core/modules/4daf83416d/modules/automate-replace/css/wpca-automate-replace.min.css' media='all' /> <link rel='stylesheet' id='wpca-frontend-css' href='https://iopghana.org/core/modules/4daf83416d/modules/frontend/css/wpca-frontend.min.css' media='all' /> <style id='wpca-frontend-inline-css'> /* WeePie Cookie Allow Plugin - V3.4.8 */ button.wpca-btn-accept{background:rgba(124,223,70,1);color:#FFFFFF} button.wpca-btn-accept:hover,button.wpca-btn-accept:focus,button.wpca-btn-accept:active{background:rgba(116,216,58,1);color:#FFFFFF} button.wpca-btn-decline{background:rgba(208,76,32, 1); color:#FFFFFF} button.wpca-btn-decline:hover,button.wpca-btn-decline:focus,button.wpca-btn-decline:active{background:rgba(209,58,8,1);color:#FFFFFF} button.wpca-btn-reset-consent{background:rgba(208,76,32,1);color:#FFFFFF} button.wpca-btn-reset-consent:hover,button.wpca-btn-reset-consent:focus,button.wpca-btn-reset-consent:active{background:rgba(209,58,8,1);color:#FFFFFF} button.wpca-btn-delete-consent{background:rgba(255,165,0,1);color:#FFFFFF} button.wpca-btn-delete-consent:hover,button.wpca-btn-delete-consent:focus,button.wpca-btn-delete-consent:active{background:rgba(247,136,0,1);color:#FFFFFF} button.wpca-btn-cc-settings{background:rgba(204,204,204,1);color:#FFFFFF} button.wpca-btn-cc-settings:hover,button.wpca-btn-cc-settings:focus,button.wpca-btn-cc-settings:active{background:rgba(185,184,184,1);color:#FFFFFF} #wpca-popup-modal{max-width:calc(100% - 50px);max-height:calc(100% - 50px)} .wpca-cc-sett-box{background-color:#ECECEC;border-radius:4px;padding:17px;color:#444444} .wpca-cc-sett-box *{color:#444444} .wpca-cc-sett-box a{color:#7DE047} .wpca-cc-sett-box a{color:#54CB2E} .wpca-cc-sett-box .wpca-btn-accept{background:rgba(61,159,196,1);color:#FFFFFF} .wpca-cc-sett-box .wpca-btn-accept:hover,.wpca-cc-sett-box .wpca-btn-accept:focus,.wpca-cc-sett-box .wpca-btn-accept:active {background:rgba(33,152,196,1);color:#FFFFFF} .wpca-cc-sett-box .wpca-btn-cc-save-sett{background:rgba(124,223,70,1);color:#FFFFFF} .wpca-cc-sett-box .wpca-btn-cc-save-sett:hover,.wpca-cc-sett-box .wpca-btn-cc-save-sett:focus,.wpca-cc-sett-box .wpca-btn-cc-save-sett:active{background:rgba(116,216,58,1);color:#FFFFFF} .wpie-switch label{width:40px;height:23px;top:0px} .wpie-switch-slider{border-radius:23px;background-color:#CCCCCC} .wpie-switch-slider:before{height:17px;width:17px;background-color:#FFFFFF} input:checked+.wpie-switch-slider{background-color:#7CDF46} input:checked+.wpie-switch-slider:before{background-color:#FFFFFF;-webkit-transform: translateX(17px);-ms-transform: translateX(17px);transform: translateX(17px)} input:disabled:checked+.wpie-switch-slider{background-color:#CCCCCC} input:disabled:checked+.wpie-switch-slider:before{background-color:#a7a3a3} #wpca-box{width:40%;min-height:10%;border-radius:4px;margin:10px;} #wpca-box{background:rgba(68,68,68,0.95);filter: alpha(opacity=95);} #wpca-box-content, #wpca-box-content > p{color:#FFFFFF} #wpca-box a{color:#7DE047} #wpca-box a:hover{color:#54CB2E} #wpca-trans-layer{background:#000000;opacity:0.75;filter:alpha(opacity=75);} .wpca-replacement-elem{min-width:75px;min-height:75px} #wpca-reconsider-icon{bottom:17px} #wpca-reconsider-icon svg{width:35px;height:35px} #wpca-reconsider-icon.wpca-rci-bl{left:17px} #wpca-reconsider-icon.wpca-rci-br{right:17px} @media screen and (max-width: 640px) { #wpca-reconsider-icon{bottom:calc(0.5 * 17px)} #wpca-reconsider-icon svg{width:max(10px, calc(0.8 * 35px));height:max(10px, calc(0.8 * 35px))} #wpca-reconsider-icon.wpca-rci-bl{left:calc(0.5 * 17px)} #wpca-reconsider-icon.wpca-rci-br{right:calc(0.5 * 17px)} } </style> <link rel='stylesheet' id='css-protect.css-css' href='https://iopghana.org/core/modules/cf7099100b/css-protect.css?wccp_ver_num=1' media='all' /> <link rel='stylesheet' id='print-protection.css-css' href='https://iopghana.org/core/modules/cf7099100b/css/print-protection.css?wccp_ver_num=1' media='all' /> <link rel='stylesheet' id='bootstrap-css' href='https://iopghana.org/core/views/df66152b2d/css/bootstrap.min.css' media='all' /> <link rel='stylesheet' id='bootstrap-theme-css' href='https://iopghana.org/core/views/df66152b2d/css/bootstrap-theme.min.css' media='all' /> <link rel='stylesheet' id='liviza-core-style-css' href='https://iopghana.org/core/views/df66152b2d/css/core.min.css' media='all' /> <link rel='stylesheet' id='js_composer_front-css' href='https://iopghana.org/core/modules/041dc5d622/assets/css/js_composer.min.css' media='all' /> <link rel='stylesheet' id='liviza-master-style-css' href='https://iopghana.org/core/views/df66152b2d/css/master.min.css' media='all' /> <link rel='stylesheet' id='liviza-responsive-style-css' href='https://iopghana.org/core/views/df66152b2d/css/responsive.min.css' media='all' /> <link rel='stylesheet' id='tste-liviza-theme-style-css' href='https://iopghana.org/core/tste-liviza-css/theme-style.min.css' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/eicons/css/elementor-icons.min.css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/frontend.min.css' media='all' /> <link rel='stylesheet' id='elementor-post-5287-css' href='https://iopghana.org/storage/elementor/css/post-5287.css' media='all' /> <link rel='stylesheet' id='wpforms-classic-full-css' href='https://iopghana.org/core/modules/6825163933/assets/css/frontend/classic/wpforms-full.min.css' media='all' /> <link rel='stylesheet' id='pp-extensions-css' href='https://iopghana.org/core/modules/3e857f275e/assets/css/min/extensions.min.css' media='all' /> <link rel='stylesheet' id='pp-tooltip-css' href='https://iopghana.org/core/modules/3e857f275e/assets/css/min/tooltip.min.css' media='all' /> <link rel='stylesheet' id='widget-text-editor-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-text-editor.min.css' media='all' /> <link rel='stylesheet' id='widget-animated-headline-css' href='https://iopghana.org/core/modules/ccc473c329/assets/css/widget-animated-headline.min.css' media='all' /> <link rel='stylesheet' id='widget-spacer-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-spacer.min.css' media='all' /> <link rel='stylesheet' id='e-animation-bob-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/animations/styles/e-animation-bob.min.css' media='all' /> <link rel='stylesheet' id='widget-heading-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-heading.min.css' media='all' /> <link rel='stylesheet' id='widget-counter-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-counter.min.css' media='all' /> <link rel='stylesheet' id='bdt-uikit-css' href='https://iopghana.org/core/modules/4ed5873fa0/assets/css/bdt-uikit.css' media='all' /> <link rel='stylesheet' id='ep-helper-css' href='https://iopghana.org/core/modules/4ed5873fa0/assets/css/ep-helper.css' media='all' /> <link rel='stylesheet' id='ep-qrcode-css' href='https://iopghana.org/core/modules/4ed5873fa0/assets/css/ep-qrcode.css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/swiper/v8/css/swiper.min.css' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/conditionals/e-swiper.min.css' media='all' /> <link rel='stylesheet' id='widget-image-carousel-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-image-carousel.min.css' media='all' /> <link rel='stylesheet' id='elementor-post-14562-css' href='https://iopghana.org/storage/elementor/css/post-14562.css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=auto' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/font-awesome/css/fontawesome.min.css' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/font-awesome/css/brands.min.css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script id="jquery-core-js-extra"> /* <![CDATA[ */ var pp = {"ajax_url":"https:\/\/iopghana.org\/ajax"}; /* ]]> */ </script> <script src="https://iopghana.org/lib/js/jquery/jquery.min.js" id="jquery-core-js"></script> <script src="https://iopghana.org/lib/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script> <script src="//iopghana.org/core/modules/revslider/sr6/assets/js/rbtools.min.js" async id="tp-tools-js"></script> <script src="//iopghana.org/core/modules/revslider/sr6/assets/js/rs6.min.js" async id="revmin-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/jquery-observe/jquery-observe.min.js" id="jquery-observe-js"></script> <script></script><link rel='shortlink' href='https://iopghana.org/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://iopghana.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fiopghana.org%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://iopghana.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fiopghana.org%2F&#038;format=xml" /> <style>#google_language_translator a{display:none!important;}div.skiptranslate.goog-te-gadget{display:inline!important;}.goog-te-gadget{color:transparent!important;}.goog-te-gadget{font-size:0px!important;}.goog-branding{display:none;}.goog-tooltip{display: none!important;}.goog-tooltip:hover{display: none!important;}.goog-text-highlight{background-color:transparent!important;border:none!important;box-shadow:none!important;}#google_language_translator select.goog-te-combo{color:#32373c;}div.skiptranslate{display:none!important;}body{top:0px!important;}#goog-gt-{display:none!important;}font font{background-color:transparent!important;box-shadow:none!important;position:initial!important;}#glt-translate-trigger{left:20px;right:auto;}#glt-translate-trigger > span{color:#ffffff;}#glt-translate-trigger{background:#009240;}</style><!-- Inline CSS Start --><!-- Inline CSS End --> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <link rel="icon" href="https://iopghana.org/storage/2021/02/cropped-LOGO-3-1X1-1-32x32.png" sizes="32x32" /> <link rel="icon" href="https://iopghana.org/storage/2021/02/cropped-LOGO-3-1X1-1-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://iopghana.org/storage/2021/02/cropped-LOGO-3-1X1-1-180x180.png" /> <meta name="msapplication-TileImage" content="https://iopghana.org/storage/2021/02/cropped-LOGO-3-1X1-1-270x270.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head> <body class="home page-template-default page page-id-14562 themestek-headerstyle-infostack themestek-wide themestek-sidebar-true themestek-sidebar-right unselectable wpb-js-composer js-comp-ver-8.2 vc_responsive elementor-default elementor-template-full-width elementor-kit-5287 elementor-page elementor-page-14562"> <div id="themestek-home"></div> <div class="main-holder"> <div id="page" class="hfeed site"> <header id="masthead" class=" themestek-header-style-infostack themestek-main-menu-total-6"> <div class="themestek-header-block themestek-mmenu-active-color-custom themestek-dmenu-active-color-custom"> <div class="themestek-search-overlay"> <div class="themestek-form-title">Hi, How Can We Help You?</div> <div class="themestek-icon-close"></div> <div class="themestek-search-outer"> <div class="themestek-search-logo"><img src="https://iopghana.org/storage/2021/02/LOGO-3-1X1-1.png" alt="Institute of Packaging, Ghana" /></div> <form method="get" class="themestek-site-searchform" action="https://iopghana.org"> <input type="search" class="field searchform-s" name="s" placeholder="Type Word Then Press Enter" /> <button type="submit" title="Search"><span class="themestek-liviza-icon-search"></span></button> </form> </div> </div> <div id="site-header" class="site-header themestek-bgcolor-white themestek-sticky-bgcolor-white themestek-above-content-yes"> <div class="site-header-main themestek-table"> <div class="themestek-header-top-wrapper container"> <div class="themestek-header-top-wrapper-inner"> <div class="site-branding"> <div class="headerlogo themestek-logotype-image themestek-stickylogo-yes"><h1 class="site-title"><span class="logo-link-text">Institute of Packaging, Ghana - Better Packaging for Better Quality of Life</span><a class="home-link" href="https://iopghana.org/" title="Institute of Packaging, Ghana" rel="home"><span class="themestek-sc-logo themestek-sc-logo-type-image"><img class="themestek-logo-img standardlogo" alt="Institute of Packaging, Ghana" src=" https://iopghana.org/storage/2021/03/NEW-LOGO-MAIN-a.png"><img class="themestek-logo-img stickylogo" alt="Institute of Packaging, Ghana" src="https://iopghana.org/storage/2021/03/NEW-LOGO-MAIN-a.png"></span></a></h1><h2 class="site-description">Better Packaging for Better Quality of Life</h2></div> </div><!-- .site-branding --> <div class="themestek-infostack-right-content"> <div class="info-widget"> <div class="info-widget-inner"> <div class="media-top"><i class=" themestek-liviza-icon-location-pin"></i><h3>Manna Plaza Building, Spintex Road</h3><div class="media-bottom">P. O. Box Co 2234, Tema</div></div> </div> </div> <div class="info-widget"> <div class="info-widget-inner"> <div class="media-top"><i class="themestek-liviza-icon-envelope"></i><h3>info@iopghana.org</h3><div class="media-bottom">Office Hour: 09:00am - 4:00pm</div></div> </div> </div> <div class="info-widget"> <div class="info-widget-inner"> <div class="media-top"><i class="themestek-liviza-icon-phone-call"></i><h3>+233 244 663914</h3><div class="media-bottom">Call Us</div></div> </div> </div> </div> </div> </div><!-- .themestek-header-top-wrapper --> <div class="container"> <div id="themestek-stickable-header-w" class="themestek-stickable-header-w themestek-stickable-header themestek-header-menu-bg-color-skincolor themestek-bgcolor-skincolor themestek-sticky-bgcolor-skincolor" style="height:65px"> <div id="site-header-menu" class="site-header-menu "> <div class="site-header-menu-inner"> <div class="site-header-menu-middle themestek-header-menu-bg-color-skincolor themestek-bgcolor-skincolor themestek-sticky-bgcolor-skincolor"> <div class="container "> <nav id="site-navigation" class="main-navigation" aria-label="Primary Menu" data-sticky-height="90"> <button id="menu-toggle" class="menu-toggle"> <span class="themestek-hide">Toggle menu</span><i class="themestek-liviza-icon-bars"></i> </button> <div class="nav-menu"><ul id="menu-main-menu" class="nav-menu"><li id="menu-item-14683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-14562 current_page_item menu-item-14683"><a href="https://iopghana.org/" aria-current="page">Home</a></li> <li id="menu-item-14684" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14684"><a href="#">About Us</a> <ul class="sub-menu"> <li id="menu-item-13833" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13833"><a href="https://iopghana.org/about-us/who-we-are/">Who We Are</a></li> <li id="menu-item-14177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14177"><a href="https://iopghana.org/about-us/mission-and-vision/">Mission &#038; Vision</a></li> <li id="menu-item-14178" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14178"><a href="https://iopghana.org/about-us/objective-target-beneficiaries/">Objectives &#038; Target Beneficiaries</a></li> <li id="menu-item-14179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14179"><a href="https://iopghana.org/about-us/operational-areas-courses-offered/">Operational Areas &#038; Courses Offered</a></li> <li id="menu-item-16274" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16274"><a href="https://iopghana.org/about-us/international-communities/">International Communities</a></li> <li id="menu-item-13824" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13824"><a href="https://iopghana.org/about-us/human-resource-and-team-members/">Human Resource &#038; Team Members</a></li> <li id="menu-item-14171" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14171"><a href="https://iopghana.org/storage/2021/02/FINAL-REPORT-ON-PACKAGING-RESEARCH-AND-INNOVATION-CHALLENGE_JULY-2019.pdf">Download Report</a></li> </ul> </li> <li id="menu-item-14752" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14752"><a href="#">Portfolio</a> <ul class="sub-menu"> <li id="menu-item-14192" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14192"><a href="https://iopghana.org/our-portfolio/notable-achievements/">Notable Achievements</a></li> <li id="menu-item-14191" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14191"><a href="https://iopghana.org/our-portfolio/training/">Training</a></li> <li id="menu-item-15808" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15808"><a href="https://iopghana.org/our-portfolio/work-done/">Work Done</a></li> <li id="menu-item-15265" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15265"><a href="https://iopghana.org/our-portfolio/areas-of-future-collaboration/">Areas of Future Collaboration</a></li> <li id="menu-item-15805" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15805"><a href="https://iopghana.org/storage/2021/03/PACKAGING-DIRECTORY.pdf">Packaging Directory</a></li> <li id="menu-item-15803" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15803"><a href="https://iopghana.org/storage/2021/03/PLASTIC-PACKAGING-AND-FOOD-SAFETY.pdf">Plastic Packaging &#038; Food Safety</a></li> </ul> </li> <li id="menu-item-14220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-14220"><a href="https://iopghana.org/membership/">Membership</a> <ul class="sub-menu"> <li id="menu-item-15833" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15833"><a href="https://iopghana.org/membership/individual-members/">Individual Members</a></li> <li id="menu-item-16266" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16266"><a href="https://iopghana.org/corporate-members-partners/">Corporate Members &#038; Partners</a></li> <li id="menu-item-15924" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15924"><a href="https://iopghana.org/membership/membership-form-online/">Membership Form (Online)</a></li> <li id="menu-item-14172" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14172"><a href="https://iopghana.org/storage/2023/03/IOPG-Application-form.docx">Membership Form (Offline)</a></li> </ul> </li> <li id="menu-item-14193" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14193"><a href="https://iopghana.org/contact-us/">Contact Us</a></li> <li id="menu-item-14197" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14197"><a href="#">Media</a> <ul class="sub-menu"> <li id="menu-item-14198" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14198"><a href="https://iopghana.org/images/">Images</a></li> <li id="menu-item-15811" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15811"><a href="https://iopghana.org/videos/">Videos</a></li> <li id="menu-item-16364" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16364"><a href="https://iopghana.org/blog-news/">Blog / News</a></li> </ul> </li> </ul></div> </nav><!-- .main-navigation --> <div class="themestek-header-right"> <div class="themestek-header-icons "><span class="themestek-header-icon themestek-header-search-link"><a title="Search" href="#"><i class="themestek-liviza-icon-search-2"></i></a></span></div> <div class="themestek-header-text-area themestek-header-button-w"> <div class="themestek-vc_btn3-container themestek-vc_btn3-inline"><a class="themestek-vc_general themestek-vc_btn3 themestek-vc_btn3-size-md themestek-vc_btn3-shape-square themestek-vc_btn3-style-outline themestek-vc_btn3-weight-yes themestek-vc_btn3-color-transparent" href="http://worldpackaging.org" title=""><span>World Packaging Org.</span></a></div></div> </div> </div> </div> </div> </div><!-- .site-header-menu --> </div> </div> </div><!-- .site-header-main --> </div> <div class="themestek-slider-wrapper"> <div class="themestek-slider-wide"> <!-- START IOPG Home REVOLUTION SLIDER 6.7.28 --><p class="rs-p-wp-fix"></p> <rs-module-wrap id="rev_slider_3_1_wrapper" data-source="gallery" style="visibility:hidden;background:#222d35;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;"> <rs-module id="rev_slider_3_1" style="" data-version="6.7.28"> <rs-slides style="overflow: hidden; position: absolute;"> <rs-slide style="position: absolute;" data-key="rs-7" data-title="Slide" data-thumb="//iopghana.org/storage/2021/02/IOPG-Slider-001a-50x100.jpg" data-anim="ms:1000;r:0;" data-in="o:0;" data-out="a:false;"> <img fetchpriority="high" src="//iopghana.org/core/modules/revslider/sr6/assets/assets/dummy.png" alt="IOPG Slider #001a" title="IOPG Slider #001a" width="1230" height="400" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="//iopghana.org/storage/2021/02/IOPG-Slider-001a.jpg" data-bg="p:right top;" data-no-retina> <!-- --><rs-layer id="slider-3-slide-7-layer-0" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:30px;y:193px;" data-text="s:57;l:60;fw:700;" data-frame_0="y:50;" data-frame_1="st:1500;sp:1000;sR:1500;" data-frame_999="o:0;st:w;sR:6500;" style="z-index:8;font-family:'Roboto';" >Consultancy services </rs-layer><!-- --><a id="slider-3-slide-7-layer-2" class="rs-layer" href="https://iopghana.org/about-us/operational-areas-courses-offered/" target="_self" rel="nofollow" data-type="button" data-color="#ffffff" data-rsp_ch="on" data-xy="x:27px;y:283px;" data-text="w:normal;s:25;l:55;a:center;" data-dim="w:60px;h:60px;minw:60px;minh:60px;" data-border="bos:solid;boc:#ffffff;bow:2px,2px,2px,2px;bor:50%,50%,50%,50%;" data-frame_0="y:50;" data-frame_1="st:2500;sp:1000;sR:2500;" data-frame_999="o:0;st:w;sR:5500;" style="z-index:10;background-color:rgba(255,255,255,0);font-family:'Roboto';text-transform:uppercase;" ><i class="fa-angle-right"></i> </a><!-- --><a id="slider-3-slide-7-layer-3" class="rs-layer" href="https://iopghana.org/about-us/operational-areas-courses-offered/" target="_self" rel="nofollow" data-type="text" data-color="#ffffff" data-xy="x:98px;y:302px;" data-text="w:normal;s:15;ls:1px;fw:500;" data-vbility="t,f,f,f" data-frame_0="y:-100%;" data-frame_0_mask="u:t;" data-frame_1="st:2500;sp:1200;sR:2500;" data-frame_1_mask="u:t;" data-frame_999="o:0;st:w;sR:5300;" style="z-index:11;font-family:'Roboto';" >Discover more </a><!-- --><rs-layer id="slider-3-slide-7-layer-8" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:30px;y:138px;" data-text="w:nowrap;s:34;l:61;fw:100;" data-frame_0="x:38px;" data-frame_1="st:1000;sp:1000;sR:1000;" data-frame_999="o:0;st:w;sR:7000;" style="z-index:9;font-family:'Roboto';" >Research, Development & Packaging </rs-layer><!-- --> </rs-slide> <rs-slide style="position: absolute;" data-key="rs-14" data-title="Slide" data-thumb="//iopghana.org/storage/2021/02/IOPG-Slider-004a-50x100.jpg" data-anim="ms:1000;r:0;" data-in="o:0;" data-out="a:false;"> <img src="//iopghana.org/core/modules/revslider/sr6/assets/assets/dummy.png" alt="IOPG Slider #004a" title="IOPG Slider #004a" width="1230" height="400" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="//iopghana.org/storage/2021/02/IOPG-Slider-004a.jpg" data-bg="p:right top;" data-no-retina> <!-- --><rs-layer id="slider-3-slide-14-layer-0" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:27px;y:90px;" data-text="s:57;l:80;ls:0px;fw:700;" data-frame_0="x:50;" data-frame_1="st:1000;sp:1000;sR:1000;" data-frame_999="o:0;st:w;sR:7000;" style="z-index:10;font-family:'Roboto';" >Our Vision </rs-layer><!-- --><a id="slider-3-slide-14-layer-2" class="rs-layer" href="https://iopghana.org/about-us/mission-and-vision/" target="_self" rel="nofollow" data-type="button" data-color="#ffffff" data-rsp_ch="on" data-xy="x:26px;y:283px;" data-text="w:normal;s:25;l:55;a:center;" data-dim="w:60px;h:60px;minw:60px;minh:60px;" data-border="bos:solid;boc:#ffffff;bow:2px,2px,2px,2px;bor:50%,50%,50%,50%;" data-frame_0="y:50;" data-frame_1="st:2500;sp:1000;sR:2500;" data-frame_999="o:0;st:w;sR:5500;" style="z-index:11;background-color:rgba(255,255,255,0);font-family:'Roboto';text-transform:uppercase;" ><i class="fa-angle-right"></i> </a><!-- --><a id="slider-3-slide-14-layer-3" class="rs-layer" href="https://iopghana.org/about-us/mission-and-vision/" target="_self" rel="nofollow" data-type="text" data-color="#ffffff" data-xy="x:98px;y:302px;" data-text="w:normal;s:15;ls:1px;fw:500;" data-vbility="t,f,f,f" data-frame_0="y:-100%;" data-frame_0_mask="u:t;" data-frame_1="st:2500;sp:1200;sR:2500;" data-frame_1_mask="u:t;" data-frame_999="o:0;st:w;sR:5300;" style="z-index:12;font-family:'Roboto';" >Discover more </a><!-- --><rs-layer id="slider-3-slide-14-layer-4" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:29px;y:225px;" data-text="w:normal;s:32;fw:100;" data-frame_0="y:50;" data-frame_1="st:1500;sp:1000;sR:1500;" data-frame_999="o:0;st:w;sR:6500;" style="z-index:8;font-family:'Roboto';" >and development of packaging expertise </rs-layer><!-- --><rs-layer id="slider-3-slide-14-layer-8" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:30px;y:162px;" data-text="w:nowrap;s:32;l:75;fw:100;" data-frame_0="y:50;" data-frame_1="st:1500;sp:1000;sR:1500;" data-frame_999="o:0;st:w;sR:6500;" style="z-index:9;font-family:'Roboto';" >To become a sub-regional centre for training <br /> </rs-layer><!-- --> </rs-slide> <rs-slide style="position: absolute;" data-key="rs-15" data-title="Slide" data-thumb="//iopghana.org/storage/2021/02/IOPG-Slider-005a-50x100.jpg" data-anim="ms:1000;r:0;" data-in="o:0;" data-out="a:false;"> <img src="//iopghana.org/core/modules/revslider/sr6/assets/assets/dummy.png" alt="IOPG Slider #005a" title="IOPG Slider #005a" width="1230" height="400" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="//iopghana.org/storage/2021/02/IOPG-Slider-005a.jpg" data-bg="p:right top;" data-no-retina> <!-- --><rs-layer id="slider-3-slide-15-layer-0" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:27px;y:120px;" data-text="s:57;l:80;ls:0px;fw:700;" data-frame_0="x:50;" data-frame_1="st:1000;sp:1000;sR:1000;" data-frame_999="o:0;st:w;sR:7000;" style="z-index:10;font-family:'Roboto';" >Operational Areas: </rs-layer><!-- --><a id="slider-3-slide-15-layer-2" class="rs-layer" href="https://iopghana.org/about-us/operational-areas-courses-offered/" target="_self" rel="nofollow" data-type="button" data-color="#ffffff" data-rsp_ch="on" data-xy="x:27px;y:283px;" data-text="w:normal;s:25;l:55;a:center;" data-dim="w:60px;h:60px;minw:60px;minh:60px;" data-border="bos:solid;boc:#ffffff;bow:2px,2px,2px,2px;bor:50%,50%,50%,50%;" data-frame_0="y:50;" data-frame_1="st:2500;sp:1000;sR:2500;" data-frame_999="o:0;st:w;sR:5500;" style="z-index:11;background-color:rgba(255,255,255,0);font-family:'Roboto';text-transform:uppercase;" ><i class="fa-angle-right"></i> </a><!-- --><a id="slider-3-slide-15-layer-3" class="rs-layer" href="https://iopghana.org/about-us/operational-areas-courses-offered/" target="_self" rel="nofollow" data-type="text" data-color="#ffffff" data-xy="x:98px;y:302px;" data-text="w:normal;s:15;ls:1px;fw:500;" data-vbility="t,f,f,f" data-frame_0="y:-100%;" data-frame_0_mask="u:t;" data-frame_1="st:2500;sp:1200;sR:2500;" data-frame_1_mask="u:t;" data-frame_999="o:0;st:w;sR:5300;" style="z-index:12;font-family:'Roboto';" >Discover more </a><!-- --><rs-layer id="slider-3-slide-15-layer-8" data-type="text" data-color="#ffffff" data-rsp_ch="on" data-xy="x:30px;y:178px;" data-text="w:nowrap;s:34;l:80;fw:100;" data-frame_0="y:50;" data-frame_1="st:1500;sp:1000;sR:1500;" data-frame_999="o:0;st:w;sR:6500;" style="z-index:9;font-family:'Roboto';" >Finance & Administration <i class="material-icons">add_box</i> more </rs-layer><!-- --> </rs-slide> </rs-slides> </rs-module> <script> setREVStartSize({c: 'rev_slider_3_1',rl:[1240,1024,778,480],el:[400],gw:[1230],gh:[400],type:'standard',justify:'',layout:'fullwidth',mh:"0"});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules["revslider31"]!==undefined) {window.RS_MODULES.modules["revslider31"].once = false;window.revapi3 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()} </script> </rs-module-wrap> <!-- END REVOLUTION SLIDER --> </div> </div> </div> </header><!-- .site-header --> <div id="content-wrapper" class="site-content-wrapper"> <div id="content" class="site-content container"> <div id="content-inner" class="site-content-inner row multi-columns-row"> <div data-elementor-type="wp-page" data-elementor-id="14562" class="elementor elementor-14562" data-elementor-settings="{&quot;element_pack_global_tooltip_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;element_pack_global_tooltip_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;element_pack_global_tooltip_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;element_pack_global_tooltip_padding&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true},&quot;element_pack_global_tooltip_padding_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true},&quot;element_pack_global_tooltip_padding_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true},&quot;element_pack_global_tooltip_border_radius&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true},&quot;element_pack_global_tooltip_border_radius_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true},&quot;element_pack_global_tooltip_border_radius_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true}}" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-9c48a54 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9c48a54" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e4267c2" data-id="e4267c2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-dc6441f elementor-widget elementor-widget-text-editor" data-id="dc6441f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>INSTITUTE OF PACKAGING, GHANA</p> </div> </div> <div class="elementor-element elementor-element-aa025ef elementor-headline--style-rotate elementor-widget elementor-widget-animated-headline" data-id="aa025ef" data-element_type="widget" data-settings="{&quot;headline_style&quot;:&quot;rotate&quot;,&quot;animation_type&quot;:&quot;clip&quot;,&quot;rotating_text&quot;:&quot;Background\nWork\nOverview\nDuties&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;rotate_iteration_delay&quot;:2500}" data-widget_type="animated-headline.default"> <div class="elementor-widget-container"> <h3 class="elementor-headline elementor-headline-animation-type-clip"> <span class="elementor-headline-plain-text elementor-headline-text-wrapper">Our</span> <span class="elementor-headline-dynamic-wrapper elementor-headline-text-wrapper"> <span class="elementor-headline-dynamic-text elementor-headline-text-active"> Background </span> <span class="elementor-headline-dynamic-text"> Work </span> <span class="elementor-headline-dynamic-text"> Overview </span> <span class="elementor-headline-dynamic-text"> Duties </span> </span> </h3> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e004d53" data-id="e004d53" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-cdfe08a elementor-widget elementor-widget-text-editor" data-id="cdfe08a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>The Institute of Packaging, Ghana (IOPG), is a registered professional body operating in Ghana. Following its inauguration on 3rd November 2003, the IOPG has been at the forefront of promoting packaging practice in Ghana and in the West Africa sub-region. This is through the provision of training, advocacy, business advisory, research, and consultancy services to the packaging, industrial, and commercial sectors. IOPG is a member of the World Packaging Organization and collaborates with the International Trade Centre, Greek Packaging Association, EU/Pro-invest, Thai Packaging Centre, South Africa, India, America, and UK Institutes of Packaging.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2d9e086 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2d9e086" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6561ea3" data-id="6561ea3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2736d60 elementor-widget elementor-widget-spacer" data-id="2736d60" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-796d180 elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon" data-id="796d180" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <div class="elementor-icon elementor-animation-bob"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"><g> <g> <path d="M251.371,432.79c-1.86-1.86-4.44-2.931-7.07-2.931s-5.21,1.07-7.07,2.931c-1.86,1.859-2.93,4.439-2.93,7.069 c0,2.641,1.07,5.21,2.93,7.07c1.86,1.87,4.44,2.93,7.07,2.93s5.21-1.06,7.07-2.93c1.86-1.86,2.93-4.439,2.93-7.07 C254.301,437.229,253.23,434.649,251.371,432.79z"></path> </g></g><g> <g> <path d="M298.983,340.539v-73.582c0-3.322-1.65-6.428-4.403-8.287c-2.753-1.859-6.25-2.229-9.333-0.989l-172.313,69.397h-55.5 c-31.668,0-57.433,25.765-57.433,57.435c0,31.67,25.765,57.435,57.435,57.435h6.609V502c0,5.522,4.477,10,10,10h40.824 c5.523,0,10-4.478,10-10v-55.228l160.383,64.506c1.203,0.484,2.47,0.723,3.73,0.723c1.968,0,3.922-0.581,5.6-1.714 c2.752-1.859,4.401-4.965,4.401-8.286V428.42c20.054-4.563,35.072-22.525,35.072-43.94 C334.055,363.065,319.037,345.102,298.983,340.539z M104.868,492H84.045v-50.053h20.824V492z M104.87,421.947H57.436 c-20.642,0-37.435-16.793-37.435-37.434c0-20.642,16.793-37.435,37.435-37.435h47.438L104.87,421.947z M278.984,487.199h-0.001 l-154.109-61.983V343.83l109.427-44.07V399c0,5.522,4.477,10,10,10c5.523,0,10-4.478,10-10V291.705l24.683-9.941V487.199z M298.983,407.464v-45.97c8.861,3.87,15.072,12.714,15.072,22.985C314.055,394.75,307.845,403.594,298.983,407.464z"></path> </g></g><g> <g> <path d="M429.453,374.775h-56.618c-5.523,0-10,4.478-10,10c0,5.522,4.477,10,10,10h56.618c5.523,0,10-4.478,10-10 C439.453,379.253,434.976,374.775,429.453,374.775z"></path> </g></g><g> <g> <path d="M383.02,301.498c-3.905-3.904-10.237-3.904-14.143,0l-19.53,19.53c-3.905,3.905-3.905,10.237,0,14.143 c1.954,1.952,4.513,2.929,7.072,2.929c2.559,0,5.119-0.977,7.071-2.929l19.53-19.53 C386.925,311.736,386.925,305.404,383.02,301.498z"></path> </g></g><g> <g> <path d="M383.754,452.976l-20.183-20.184c-3.905-3.904-10.237-3.904-14.143,0c-3.905,3.905-3.905,10.237,0,14.143l20.184,20.184 c1.953,1.952,4.512,2.929,7.071,2.929s5.119-0.977,7.071-2.929C387.659,463.214,387.659,456.882,383.754,452.976z"></path> </g></g><g> <g> <path d="M472.001,0h-186c-22.056,0-40,17.944-40,40v4h-168c-13.234,0-24,10.767-24,24v158c0,13.233,10.766,24,24,24h10.333v30.667 c0,4.045,2.437,7.691,6.173,9.239c1.237,0.512,2.536,0.761,3.825,0.761c2.602,0,5.16-1.016,7.073-2.929L143.143,250h198.638 c13.234,0,24-10.767,24-24v-30h106.22c22.056,0,40-17.944,40-40V40C512,17.944,494.057,0,472.001,0z M345.781,226 c0,2.206-1.794,4-4,4h-202.78c-2.652,0-5.196,1.054-7.071,2.929l-23.595,23.596V240c0-5.522-4.477-10-10-10H78.001 c-2.206,0-4-1.794-4-4V68c0-2.206,1.794-4,4-4h168v92c0,22.056,17.944,40,40,40h59.78V226z M492.001,156c0,11.028-8.972,20-20,20 h-186c-11.028,0-20-8.972-20-20V40c0-11.028,8.972-20,20-20h186c11.028,0,20,8.972,20,20V156z"></path> </g></g><g> <g> <path d="M419.176,89.34l-68.44-39.514c-3.094-1.787-6.906-1.787-10,0c-3.094,1.786-5,5.088-5,8.66v79.027 c0,3.572,1.906,6.874,5,8.66c1.547,0.894,3.273,1.34,5,1.34s3.453-0.446,5-1.34l68.44-39.514c3.094-1.786,5-5.088,5-8.66 C424.176,94.427,422.271,91.126,419.176,89.34z M355.736,120.193V75.807L394.176,98L355.736,120.193z"></path> </g></g><g> <g> <path d="M214.512,105h-100c-5.523,0-10,4.478-10,10c0,5.522,4.477,10,10,10h100c5.523,0,10-4.478,10-10 C224.512,109.478,220.035,105,214.512,105z"></path> </g></g><g> <g> <path d="M221.581,163.93c-1.86-1.861-4.44-2.93-7.07-2.93s-5.21,1.069-7.07,2.93c-1.86,1.86-2.93,4.44-2.93,7.07 s1.07,5.21,2.93,7.069c1.86,1.86,4.44,2.931,7.07,2.931c2.64,0,5.21-1.07,7.07-2.931c1.86-1.859,2.93-4.439,2.93-7.069 S223.441,165.79,221.581,163.93z"></path> </g></g><g> <g> <path d="M177.001,161h-62.489c-5.523,0-10,4.478-10,10c0,5.522,4.477,10,10,10h62.489c5.523,0,10-4.478,10-10 C187.001,165.478,182.524,161,177.001,161z"></path> </g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg> </div> </div> </div> </div> <div class="elementor-element elementor-element-b8bcf75 elementor-widget elementor-widget-spacer" data-id="b8bcf75" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-e63e304 elementor-widget elementor-widget-heading" data-id="e63e304" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Awareness &amp; Interest</h2> </div> </div> <div class="elementor-element elementor-element-fb0f59f elementor-widget elementor-widget-spacer" data-id="fb0f59f" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-0f7d680 elementor-widget elementor-widget-text-editor" data-id="0f7d680" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We create awareness and generate interest in</p> </div> </div> <div class="elementor-element elementor-element-284af8f elementor-widget elementor-widget-text-editor" data-id="284af8f" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>good and effective packaging practices.</p> </div> </div> <div class="elementor-element elementor-element-1cab68f elementor-widget elementor-widget-spacer" data-id="1cab68f" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-3ecfeaa elementor-widget elementor-widget-spacer" data-id="3ecfeaa" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-5e161c8 elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon" data-id="5e161c8" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <div class="elementor-icon elementor-animation-bob"> <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" height="512" viewBox="0 0 512 512" width="512"><g><g><g><g><path d="m379.655 170.335c-5.522 0-10-4.478-10-10v-68.379c0-5.522 4.478-10 10-10s10 4.478 10 10v68.379c0 5.522-4.477 10-10 10z"></path></g></g><g><g><circle cx="379.612" cy="59.778" r="10"></circle></g></g><g><path d="m484.648 105.057c0-57.929-47.119-105.057-105.037-105.057-23.973 0-46.095 8.074-63.793 21.646h-252.073c-20.067 0-36.393 16.325-36.393 36.393v363.773c0 20.067 16.326 36.394 36.393 36.394h31.731v17.4c0 20.067 16.326 36.394 36.393 36.394h261.461c20.067 0 36.393-16.326 36.393-36.394v-138.702c0-5.522-4.478-10-10-10s-10 4.478-10 10v138.702c0 9.039-7.354 16.394-16.393 16.394h-261.461c-9.039 0-16.393-7.354-16.393-16.394v-17.4h209.731c20.067 0 36.394-16.326 36.394-36.394v-213.244c5.854 1.016 11.871 1.546 18.011 1.546 10.461 0 20.57-1.538 30.112-4.399v40.778c0 5.522 4.478 10 10 10s10-4.478 10-10v-49.125c32.692-17.826 54.924-52.52 54.924-92.311zm-143.047 316.756c0 9.039-7.354 16.394-16.394 16.394h-261.462c-9.039 0-16.393-7.354-16.393-16.394v-363.774c0-9.039 7.354-16.393 16.393-16.393h232.171c-12.552 16.533-20.326 36.883-21.248 58.974h-170.291c-5.522 0-10 4.478-10 10v42.234c0 5.522 4.478 10 10 10h180.198c2.273 0 4.369-.759 6.049-2.037 11.946 19.004 29.806 33.931 50.977 42.179zm-67.026-301.193v22.234h-160.198v-22.234zm105.036 69.493c-46.889 0-85.036-38.156-85.036-85.057 0-46.9 38.147-85.057 85.036-85.057 46.89 0 85.037 38.156 85.037 85.057s-38.147 85.057-85.037 85.057z"></path><g><g><path d="m419.72 301.52c-4.12 0-7.897-2.637-9.349-6.482-1.491-3.946-.27-8.586 3.009-11.255 3.285-2.673 8.014-2.994 11.617-.758 3.596 2.232 5.437 6.635 4.464 10.764-1.053 4.466-5.146 7.731-9.741 7.731z"></path></g></g></g><g><g><g><g><path d="m284.575 217.633h-180.198c-5.522 0-10-4.477-10-10 0-5.522 4.478-10 10-10h180.198c5.522 0 10 4.478 10 10s-4.477 10-10 10z"></path></g></g><g><g><path d="m284.575 265.063h-180.198c-5.522 0-10-4.478-10-10 0-5.523 4.478-10 10-10h180.198c5.522 0 10 4.477 10 10 0 5.522-4.477 10-10 10z"></path></g></g><g><g><path d="m284.575 312.493h-180.198c-5.522 0-10-4.478-10-10s4.478-10 10-10h180.198c5.522 0 10 4.478 10 10 0 5.523-4.477 10-10 10z"></path></g></g><g><g><path d="m284.575 359.923h-180.198c-5.522 0-10-4.478-10-10 0-5.523 4.478-10 10-10h180.198c5.522 0 10 4.477 10 10 0 5.522-4.477 10-10 10z"></path></g></g></g></g></g></g></svg> </div> </div> </div> </div> <div class="elementor-element elementor-element-543bb66 elementor-widget elementor-widget-spacer" data-id="543bb66" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-acf9774 elementor-widget elementor-widget-heading" data-id="acf9774" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Disseminate information</h2> </div> </div> <div class="elementor-element elementor-element-b0e3609 elementor-widget elementor-widget-spacer" data-id="b0e3609" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-dd8e8f8 elementor-widget elementor-widget-text-editor" data-id="dd8e8f8" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We disseminate information on packaging trends</p> </div> </div> <div class="elementor-element elementor-element-c04ea75 elementor-widget elementor-widget-text-editor" data-id="c04ea75" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>and developments.</p> </div> </div> <div class="elementor-element elementor-element-1a96580 elementor-widget elementor-widget-spacer" data-id="1a96580" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-83e1921" data-id="83e1921" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a9c74ac elementor-widget elementor-widget-spacer" data-id="a9c74ac" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-050a30b elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon" data-id="050a30b" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <div class="elementor-icon elementor-animation-bob"> <svg xmlns="http://www.w3.org/2000/svg" id="Layer_5" height="512" viewBox="0 0 64 64" width="512"><path d="m15 1v10.295c-.634-.19-1.305-.295-2-.295-3.859 0-7 3.14-7 7 0 2.237 1.058 4.226 2.696 5.509-4.456 1.406-7.696 5.577-7.696 10.491v7c0 2.206 1.794 4 4 4h1v14c0 2.206 1.794 4 4 4 1.201 0 2.266-.542 3-1.382.734.84 1.799 1.382 3 1.382 2.206 0 4-1.794 4-4v-24.735c0-.433.056-.857.162-1.265h42.838v-32zm-7 17c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5zm5.965 14.621-.965.965-.965-.965.635-7.621h.33.33zm4.035 1.644v24.735c0 1.103-.897 2-2 2s-2-.897-2-2v-18h-2v18c0 1.103-.897 2-2 2s-2-.897-2-2v-27h-2v11h-1c-1.103 0-2-.897-2-2v-7c0-4.504 3.329-8.235 7.654-8.888l-.69 8.267 3.036 3.035 3.035-3.035-.699-8.379h2.965c1.297 0 2.565-.359 3.669-1.039l10.99-6.763c.212-.13.454-.198.702-.198.737 0 1.338.601 1.338 1.338v.39c0 .456-.229.875-.611 1.124l-13.192 8.536c-2.002 1.295-3.197 3.492-3.197 5.877zm11-17.265c0-5.177 3.954-9.446 9-9.949v10.363l7.324 7.324c-1.725 1.412-3.927 2.262-6.324 2.262-2.762 0-5.336-1.113-7.216-3.081l3.691-2.388c.955-.618 1.525-1.666 1.525-2.803v-.39c0-1.84-1.497-3.338-3.338-3.338-.618 0-1.224.171-1.75.495l-2.9 1.784c-.002-.093-.012-.186-.012-.279zm17.738 6.324-5.324-5.324h7.535c-.2 2.008-.998 3.843-2.211 5.324zm-6.738-7.324v-8.949c4.717.471 8.479 4.232 8.949 8.949zm21 15h-39.78c.306-.354.659-.672 1.063-.934l7.807-5.052c2.276 2.536 5.467 3.986 8.91 3.986 6.617 0 12-5.383 12-12s-5.383-12-12-12-12 5.383-12 12c0 .487.04.974.099 1.457l-6.177 3.801c-.788.486-1.694.742-2.62.742h-.412c1.3-1.272 2.11-3.042 2.11-5 0-2.373-1.189-4.47-3-5.736v-9.264h44z"></path><path d="m55.975 47.755c1.825-1.265 3.025-3.372 3.025-5.755 0-3.859-3.141-7-7-7s-7 3.141-7 7c0 2.383 1.2 4.49 3.025 5.755-2.673 1.041-4.837 3.093-6.025 5.689-1.188-2.596-3.352-4.649-6.025-5.689 1.825-1.265 3.025-3.372 3.025-5.755 0-3.859-3.141-7-7-7s-7 3.141-7 7c0 2.383 1.2 4.49 3.025 5.755-4.104 1.598-7.025 5.582-7.025 10.245v5h20 2 20v-5c0-4.663-2.921-8.647-7.025-10.245zm-8.975-5.755c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5zm-20 0c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5zm14 19h-3v-8h-2v8h-8v-8h-2v8h-3v-3c0-4.963 4.037-9 9-9s9 4.037 9 9zm20 0h-3v-8h-2v8h-8v-8h-2v8h-3v-3c0-4.963 4.037-9 9-9s9 4.037 9 9z"></path><path d="m56 23h-5v3c0 1.654 1.346 3 3 3h2c1.654 0 3-1.346 3-3s-1.346-3-3-3zm0 4h-2c-.552 0-1-.449-1-1v-1h3c.552 0 1 .449 1 1s-.448 1-1 1z"></path><path d="m22 11h5v-3c0-1.654-1.346-3-3-3h-2c-1.654 0-3 1.346-3 3s1.346 3 3 3zm0-4h2c.552 0 1 .449 1 1v1h-3c-.552 0-1-.449-1-1s.448-1 1-1z"></path><path d="m53 5h6v2h-6z"></path><path d="m53 9h6v2h-6z"></path><path d="m53 13h6v2h-6z"></path><path d="m53 17h6v2h-6z"></path></svg> </div> </div> </div> </div> <div class="elementor-element elementor-element-ebe9f13 elementor-widget elementor-widget-spacer" data-id="ebe9f13" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-b4c1d1f elementor-widget elementor-widget-heading" data-id="b4c1d1f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Professional Training</h2> </div> </div> <div class="elementor-element elementor-element-da247aa elementor-widget elementor-widget-spacer" data-id="da247aa" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-6ed7ad2 elementor-widget elementor-widget-text-editor" data-id="6ed7ad2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We provide professional packaging training</p> </div> </div> <div class="elementor-element elementor-element-3186eb5 elementor-widget elementor-widget-text-editor" data-id="3186eb5" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>to industry and individuals.</p> </div> </div> <div class="elementor-element elementor-element-d3b1771 elementor-widget elementor-widget-spacer" data-id="d3b1771" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-2bbb4ba elementor-widget elementor-widget-spacer" data-id="2bbb4ba" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-161127b elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon" data-id="161127b" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <div class="elementor-icon elementor-animation-bob"> <svg xmlns="http://www.w3.org/2000/svg" height="512pt" viewBox="0 0 512 512.001" width="512pt"><path d="m505.425781 344.152344-76.945312-76.957032c18.589843-24.496093 30.195312-53.859374 33.171875-84.644531 3.644531-37.78125-5.765625-75.953125-26.5-107.488281-2.277344-3.460938-6.929688-4.421875-10.386719-2.144531-3.460937 2.277343-4.421875 6.929687-2.144531 10.390625 39.238281 59.671875 31.007812 139.699218-19.570313 190.28125-59.074219 59.078125-155.1875 59.078125-214.257812 0-59.074219-59.078125-59.074219-155.207032 0-214.285156 59.070312-59.078126 155.1875-59.078126 214.238281-.019532l.410156.414063c2.921875 2.9375 7.667969 2.957031 10.605469.035156 2.941406-2.917969 2.957031-7.667969.039063-10.605469l-.429688-.433594c-64.921875-64.925781-170.550781-64.925781-235.472656 0-2.039063 2.039063-4.011719 4.117188-5.921875 6.234376h-164.761719c-4.140625 0-7.5 3.359374-7.5 7.5v33.171874c0 4.144532 3.359375 7.503907 7.5 7.503907 4.144531 0 7.5-3.359375 7.5-7.503907v-25.667968h145.230469c-5.730469 8.050781-10.660157 16.496094-14.789063 25.234375h-93.441406c-4.140625 0-7.5 3.355469-7.5 7.5s3.359375 7.5 7.5 7.5h87.234375c-2.152344 6.023437-3.945313 12.144531-5.382813 18.335937h-81.851562c-4.140625 0-7.5 3.355469-7.5 7.5 0 4.140625 3.359375 7.5 7.5 7.5h79.078125c-.839844 6.082032-1.34375 12.203125-1.511719 18.332032h-77.566406c-4.140625 0-7.5 3.359374-7.5 7.503906 0 4.140625 3.359375 7.5 7.5 7.5h77.828125c1.351563 21.789062 6.941406 43.359375 16.789063 63.347656h-12.613282c-4.144531 0-7.5 3.359375-7.5 7.503906v222.03125c0 4.144532 3.355469 7.503906 7.5 7.503906h60c4.144532 0 7.5-3.359374 7.5-7.503906v-166.097656c6.753906 4.652344 13.773438 8.753906 21 12.296875v153.800781c0 4.144532 3.359375 7.503906 7.5 7.503906h60c4.144532 0 7.5-3.359374 7.5-7.503906v-136.84375c5.847656-.058594 11.6875-.414062 17.503906-1.078125v115.855469c0 4.144531 3.355469 7.503906 7.5 7.503906 4.140626 0 7.5-3.359375 7.5-7.503906v-118.269531c23.707032-4.921875 46.539063-15.039063 66.65625-30.355469l76.929688 76.941406c4.253906 4.25 9.90625 6.59375 15.914062 6.59375 6.011719 0 11.664063-2.34375 15.914063-6.59375 8.769531-8.765625 8.773437-23.039062.003906-31.820312zm-318.921875 118.070312h-45v-207.03125h13.511719c6.488281 10.300782 14.207031 20.042969 23.167969 29.007813 2.703125 2.703125 5.484375 5.285156 8.320312 7.761719zm51.003906 0v-139.847656c14.546876 5.425781 29.703126 8.746094 45 9.972656v129.875zm257.3125-96.859375c-1.417968 1.417969-3.304687 2.199219-5.308593 2.199219-2.003907 0-3.890625-.78125-5.304688-2.199219l-75.980469-75.984375c1.839844-1.683594 3.652344-3.402344 5.429688-5.179687 1.773438-1.773438 3.5-3.582031 5.183594-5.429688l75.972656 75.988281c2.925781 2.925782 2.929688 7.6875.007812 10.605469zm0 0"></path><path d="m322.507812 472.496094c-4.140624 0-7.5 3.355468-7.5 7.5v17.003906h-300.007812v-368.890625c0-4.144531-3.355469-7.5-7.5-7.5-4.140625 0-7.5 3.355469-7.5 7.5v376.390625c0 4.144531 3.359375 7.5 7.5 7.5h315.007812c4.144532 0 7.5-3.355469 7.5-7.5v-24.503906c0-4.144532-3.355468-7.5-7.5-7.5zm0 0"></path><path d="m32.5 307.695312v162.027344c0 4.140625 3.359375 7.5 7.5 7.5h60.003906c4.140625 0 7.5-3.359375 7.5-7.5v-162.027344c0-4.140624-3.359375-7.5-7.5-7.5h-60.003906c-4.140625 0-7.5 3.359376-7.5 7.5zm15 7.503907h45.003906v147.019531h-45.003906zm0 0"></path><path d="m108.082031 210.183594c4.144531 0 7.5-3.359375 7.5-7.503906 0-4.140626-3.355469-7.5-7.5-7.5h-56.082031c-4.140625 0-7.5 3.359374-7.5 7.5 0 4.144531 3.359375 7.503906 7.5 7.503906zm0 0"></path><path d="m295.921875 29.988281c-36.5 0-70.78125 14.179688-96.523437 39.925781-25.742188 25.746094-39.921876 60.03125-39.921876 96.535157 0 36.503906 14.179688 70.789062 39.921876 96.535156 25.746093 25.746094 60.023437 39.925781 96.523437 39.925781s70.777344-14.179687 96.523437-39.925781c25.742188-25.746094 39.917969-60.03125 39.917969-96.535156 0-36.503907-14.175781-70.789063-39.917969-96.535157-25.746093-25.746093-60.023437-39.925781-96.523437-39.925781zm85.914063 222.386719c-22.910157 22.914062-53.421876 35.53125-85.914063 35.53125-32.496094 0-63.003906-12.617188-85.914063-35.53125-22.914062-22.914062-35.53125-53.429688-35.53125-85.925781 0-32.5 12.617188-63.015625 35.53125-85.929688 23.683594-23.6875 54.800782-35.535156 85.914063-35.535156s62.230469 11.847656 85.914063 35.535156c22.910156 22.914063 35.527343 53.429688 35.527343 85.929688 0 32.496093-12.617187 63.011719-35.527343 85.925781zm0 0"></path></svg> </div> </div> </div> </div> <div class="elementor-element elementor-element-9e23034 elementor-widget elementor-widget-spacer" data-id="9e23034" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-98459e2 elementor-widget elementor-widget-heading" data-id="98459e2" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Research &amp; Development</h2> </div> </div> <div class="elementor-element elementor-element-3d59fe7 elementor-widget elementor-widget-spacer" data-id="3d59fe7" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-a367a60 elementor-widget elementor-widget-text-editor" data-id="a367a60" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We encourage research &amp; the development of cost-effective &amp; environmentally friendly</p> </div> </div> <div class="elementor-element elementor-element-9cd2040 elementor-widget elementor-widget-text-editor" data-id="9cd2040" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>packaging.</p> </div> </div> <div class="elementor-element elementor-element-d4f147d elementor-widget elementor-widget-spacer" data-id="d4f147d" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e9b96f4" data-id="e9b96f4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-fb8deb2 elementor-widget elementor-widget-spacer" data-id="fb8deb2" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-106f468 elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon" data-id="106f468" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <div class="elementor-icon elementor-animation-bob"> <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" height="512" viewBox="0 0 512 512" width="512"><g><g><path d="m444.555 191.141h-238c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h238c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m444.555 248.474h-238c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h238c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m444.555 305.807h-238c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h238c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5z"></path><path d="m468.378 125.549h-285.646c-24.053 0-43.622 19.568-43.622 43.622v179.617c0 24.053 19.568 43.622 43.622 43.622h200.211c2.141 0 4.13.963 5.458 2.644l64.655 81.853c2.548 3.226 6.266 4.984 10.159 4.984 1.447 0 2.919-.243 4.363-.745 5.327-1.85 8.769-6.689 8.769-12.328v-77.153c20.225-3.778 35.653-21.659 35.653-42.877v-179.618c0-24.053-19.568-43.621-43.622-43.621zm28.622 223.239c0 15.577-12.673 28.412-28.25 28.61-4.104.053-7.404 3.395-7.404 7.5v78.305l-61.174-77.447c-4.189-5.305-10.469-8.347-17.229-8.347h-200.211c-15.782 0-28.622-12.84-28.622-28.622v-179.617c0-15.782 12.839-28.622 28.622-28.622h285.646c15.782 0 28.622 12.84 28.622 28.622z"></path><path d="m110.494 249.561c-5.13.728-9.724 3.369-12.936 7.435l-51.521 65.226v-65.371c0-4.105-3.3-7.447-7.404-7.5-13.031-.166-23.633-10.903-23.633-23.935v-156.361c0-13.203 10.742-23.945 23.945-23.945h248.663c13.203 0 23.945 10.742 23.945 23.945v28.932c0 4.142 3.358 7.5 7.5 7.5s7.5-3.358 7.5-7.5v-28.932c0-21.474-17.471-38.945-38.945-38.945h-248.663c-21.474 0-38.945 17.471-38.945 38.945v156.361c0 18.667 13.371 34.438 31.038 38.124v66.366c0 5.328 3.252 9.901 8.286 11.649 1.365.474 2.755.704 4.123.704 3.677 0 7.192-1.662 9.599-4.709l56.284-71.256c.812-1.029 1.975-1.697 3.273-1.882 4.101-.582 6.954-4.379 6.371-8.48-.582-4.101-4.373-6.956-8.48-6.371z"></path></g></g></svg> </div> </div> </div> </div> <div class="elementor-element elementor-element-385333a elementor-widget elementor-widget-spacer" data-id="385333a" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-91439d7 elementor-widget elementor-widget-heading" data-id="91439d7" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Technical Advice</h2> </div> </div> <div class="elementor-element elementor-element-ac1f400 elementor-widget elementor-widget-spacer" data-id="ac1f400" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-68c5d2a elementor-widget elementor-widget-text-editor" data-id="68c5d2a" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We provide technical advice on packaging </p> </div> </div> <div class="elementor-element elementor-element-db5fd43 elementor-widget elementor-widget-text-editor" data-id="db5fd43" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>standards and related issues.</p> </div> </div> <div class="elementor-element elementor-element-60628ba elementor-widget elementor-widget-spacer" data-id="60628ba" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-cacbbd3 elementor-widget elementor-widget-spacer" data-id="cacbbd3" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-6a6fbc4 elementor-view-stacked elementor-shape-circle elementor-widget elementor-widget-icon" data-id="6a6fbc4" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <div class="elementor-icon elementor-animation-bob"> <svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" height="512" viewBox="0 0 512 512" width="512"><g><g><path d="m256 47.089c-74.594 0-135.28 60.686-135.28 135.28s60.686 135.28 135.28 135.28 135.28-60.686 135.28-135.28-60.686-135.28-135.28-135.28zm0 255.579c-66.333 0-120.299-53.966-120.299-120.299s53.966-120.299 120.299-120.299 120.299 53.966 120.299 120.299-53.966 120.299-120.299 120.299z"></path><path d="m256.001 0c-.003 0 .002 0 0 0-48.455 0-94.034 18.673-128.328 52.574-34.3 33.907-53.488 79.263-54.03 127.712-.415 37.181 10.288 73.064 30.953 103.769 20.151 29.942 48.368 53.052 81.6 66.832 6.719 2.786 12.302 7.455 16.144 13.5l17.336 27.284h-35.213c-8.068 0-15.469 4.732-18.855 12.056l-11.714 25.338c-1.736 3.755-.099 8.206 3.656 9.943 3.755 1.736 8.206.099 9.943-3.656l11.714-25.339c.944-2.042 3.007-3.361 5.257-3.361h44.732l10.615 16.706c3.539 5.57 9.591 8.895 16.19 8.895s12.651-3.325 16.19-8.895l10.615-16.706h44.732c2.25 0 4.313 1.319 5.257 3.361l36.422 78.782c1.201 2.598.136 4.747-.377 5.551-.514.803-2.017 2.671-4.88 2.671h-215.918c-2.862 0-4.366-1.868-4.88-2.671-.514-.804-1.579-2.952-.377-5.551l10.134-21.92c1.736-3.755.099-8.206-3.656-9.942-3.757-1.738-8.207-.099-9.943 3.656l-10.134 21.92c-2.989 6.464-2.483 13.906 1.354 19.906 3.836 6 10.379 9.583 17.501 9.583h215.916c7.122 0 13.664-3.582 17.501-9.583 3.837-6 4.343-13.442 1.354-19.907l-36.422-78.782c-3.385-7.324-10.787-12.056-18.855-12.056h-35.213l17.335-27.282c3.84-6.044 9.442-10.721 16.198-13.525 32.899-13.654 60.916-36.487 81.021-66.032 20.602-30.274 31.491-65.706 31.491-102.465.002-100.555-81.808-182.366-182.366-182.366zm64.113 337.03c-9.613 3.99-17.6 10.673-23.099 19.327l-37.469 58.969c-1.117 1.758-2.851 1.948-3.545 1.948s-2.429-.19-3.546-1.948l-37.47-58.972c-5.501-8.658-13.472-15.333-23.05-19.305-30.504-12.648-56.407-33.866-74.91-61.358-18.961-28.174-28.782-61.107-28.402-95.237.497-44.479 18.106-86.111 49.581-117.226 31.474-31.113 73.308-48.248 117.797-48.248 92.298 0 167.387 75.091 167.387 167.388 0 67.917-40.538 128.625-103.274 154.662z"></path><path d="m233.716 142.522c14.845 0 26.922-12.077 26.922-26.922s-12.077-26.922-26.922-26.922c-14.844 0-26.922 12.077-26.922 26.922s12.077 26.922 26.922 26.922zm0-38.863c6.584 0 11.941 5.357 11.941 11.941s-5.357 11.941-11.941 11.941-11.94-5.357-11.94-11.941 5.356-11.941 11.94-11.941z"></path><path d="m291.446 205.061c-12.778 0-23.174 10.396-23.174 23.174 0 .815-.663 1.478-1.478 1.478s-1.479-.663-1.479-1.478v-11.266c0-4.137-3.354-7.491-7.491-7.491s-7.49 3.354-7.49 7.491v11.266c0 9.075 7.384 16.459 16.46 16.459 9.075 0 16.459-7.383 16.459-16.459 0-4.518 3.675-8.193 8.193-8.193s8.193 3.675 8.193 8.193c0 18.11-14.734 32.844-32.845 32.844s-32.845-14.734-32.845-32.844v-36.031c0-4.137-3.354-7.49-7.491-7.49h-5.904c-4.518 0-8.193-3.675-8.193-8.193s3.675-8.193 8.193-8.193h21.587c4.518 0 8.193 3.675 8.193 8.193v5.849c0 4.137 3.354 7.49 7.49 7.49 4.137 0 7.491-3.354 7.491-7.49v-5.849c0-12.778-10.395-23.174-23.174-23.174h-21.587c-12.778 0-23.174 10.396-23.174 23.174 0 12.245 9.547 22.302 21.587 23.12v28.595c0 26.371 21.455 47.825 47.826 47.825s47.826-21.454 47.826-47.825c0-12.779-10.395-23.175-23.173-23.175z"></path></g></g></svg> </div> </div> </div> </div> <div class="elementor-element elementor-element-03ac9f4 elementor-widget elementor-widget-spacer" data-id="03ac9f4" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-4d53cc4 elementor-widget elementor-widget-heading" data-id="4d53cc4" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Focal Point</h2> </div> </div> <div class="elementor-element elementor-element-2e1080c elementor-widget elementor-widget-spacer" data-id="2e1080c" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <div class="elementor-element elementor-element-20218a8 elementor-widget elementor-widget-text-editor" data-id="20218a8" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>We serve as a focal point for packaging-related </p> </div> </div> <div class="elementor-element elementor-element-4b91c80 elementor-widget elementor-widget-text-editor" data-id="4b91c80" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>information and advice.</p> </div> </div> <div class="elementor-element elementor-element-8b1cb2e elementor-widget elementor-widget-spacer" data-id="8b1cb2e" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-124688f elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="124688f" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-8c462cf" data-id="8c462cf" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-15e82ea elementor-widget elementor-widget-counter" data-id="15e82ea" data-element_type="widget" data-widget_type="counter.default"> <div class="elementor-widget-container"> <div class="elementor-counter"> <div class="elementor-counter-title">PARTNER INSTITUTIONS</div> <div class="elementor-counter-number-wrapper"> <span class="elementor-counter-number-prefix"></span> <span class="elementor-counter-number" data-duration="2000" data-to-value="12" data-from-value="0" data-delimiter=",">0</span> <span class="elementor-counter-number-suffix">+</span> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-8f99642" data-id="8f99642" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-915f4ec elementor-widget elementor-widget-counter" data-id="915f4ec" data-element_type="widget" data-widget_type="counter.default"> <div class="elementor-widget-container"> <div class="elementor-counter"> <div class="elementor-counter-title">NOTABLE ACHIEVEMENTS</div> <div class="elementor-counter-number-wrapper"> <span class="elementor-counter-number-prefix"></span> <span class="elementor-counter-number" data-duration="2000" data-to-value="20" data-from-value="0" data-delimiter=",">0</span> <span class="elementor-counter-number-suffix">+</span> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-04dbfa0" data-id="04dbfa0" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b76745f elementor-widget elementor-widget-counter" data-id="b76745f" data-element_type="widget" data-widget_type="counter.default"> <div class="elementor-widget-container"> <div class="elementor-counter"> <div class="elementor-counter-title">COURSES OFFERED</div> <div class="elementor-counter-number-wrapper"> <span class="elementor-counter-number-prefix"></span> <span class="elementor-counter-number" data-duration="2000" data-to-value="15" data-from-value="0" data-delimiter=",">0</span> <span class="elementor-counter-number-suffix">+</span> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-4d84bb8" data-id="4d84bb8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8d887c8 elementor-widget elementor-widget-counter" data-id="8d887c8" data-element_type="widget" data-widget_type="counter.default"> <div class="elementor-widget-container"> <div class="elementor-counter"> <div class="elementor-counter-title">TARGET BENEFICIARIES</div> <div class="elementor-counter-number-wrapper"> <span class="elementor-counter-number-prefix"></span> <span class="elementor-counter-number" data-duration="2000" data-to-value="10" data-from-value="0" data-delimiter=",">0</span> <span class="elementor-counter-number-suffix">+</span> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-0b676e8" data-id="0b676e8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bb08f09 elementor-widget elementor-widget-counter" data-id="bb08f09" data-element_type="widget" data-widget_type="counter.default"> <div class="elementor-widget-container"> <div class="elementor-counter"> <div class="elementor-counter-title">OPERATIONAL AREAS</div> <div class="elementor-counter-number-wrapper"> <span class="elementor-counter-number-prefix"></span> <span class="elementor-counter-number" data-duration="2000" data-to-value="6" data-from-value="0" data-delimiter=",">0</span> <span class="elementor-counter-number-suffix">+</span> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-e12bfde elementor-section-stretched elementor-hidden-tablet elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e12bfde" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6b5ba97" data-id="6b5ba97" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8c5186a elementor-headline--style-rotate elementor-widget elementor-widget-animated-headline" data-id="8c5186a" data-element_type="widget" data-settings="{&quot;headline_style&quot;:&quot;rotate&quot;,&quot;animation_type&quot;:&quot;swirl&quot;,&quot;rotating_text&quot;:&quot;APPLICATION FORMS\nREGISTRATION FORMS&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;rotate_iteration_delay&quot;:2500}" data-widget_type="animated-headline.default"> <div class="elementor-widget-container"> <h3 class="elementor-headline elementor-headline-animation-type-swirl elementor-headline-letters"> <span class="elementor-headline-plain-text elementor-headline-text-wrapper">Membership</span> <span class="elementor-headline-dynamic-wrapper elementor-headline-text-wrapper"> <span class="elementor-headline-dynamic-text elementor-headline-text-active"> APPLICATION&nbsp;FORMS </span> <span class="elementor-headline-dynamic-text"> REGISTRATION&nbsp;FORMS </span> </span> </h3> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-aa1c35e" data-id="aa1c35e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2c0532d elementor-widget elementor-widget-text-editor" data-id="2c0532d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;">DOWNLOAD FORMS</p> </div> </div> <div class="elementor-element elementor-element-b47652f elementor-widget elementor-widget-bdt-qrcode" data-id="b47652f" data-element_type="widget" data-widget_type="bdt-qrcode.default"> <div class="elementor-widget-container"> <div class="bdt-qrcode" data-settings="{&quot;render&quot;:&quot;canvas&quot;,&quot;ecLevel&quot;:&quot;H&quot;,&quot;minVersion&quot;:6,&quot;fill&quot;:&quot;#000000&quot;,&quot;text&quot;:&quot;https:\/\/iopghana.org\/storage\/2023\/03\/IOPG-Application-form-1.docx&quot;,&quot;size&quot;:150,&quot;radius&quot;:0.5,&quot;mode&quot;:4,&quot;mSize&quot;:0.14,&quot;mPosX&quot;:0.5,&quot;mPosY&quot;:0.5,&quot;background&quot;:&quot;transparent&quot;}"></div> <img decoding="async" src="https://iopghana.org/storage/2021/02/LOGO-3-1X1-1.png" class="bdt-hidden bdt-qrcode-image" alt=""> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-e2f7f04" data-id="e2f7f04" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5dd4d1e elementor-widget elementor-widget-text-editor" data-id="5dd4d1e" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>OR</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-859b439" data-id="859b439" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b93d482 elementor-align-center elementor-hidden-tablet elementor-hidden-phone elementor-widget elementor-widget-button" data-id="b93d482" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="https://iopghana.org/membership/membership-form-online/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fab fa-wpforms"></i> </span> <span class="elementor-button-text">REGISTER ONLINE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2afb3d4 elementor-section-stretched elementor-hidden-desktop elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2afb3d4" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-943e8ca" data-id="943e8ca" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-21cc4f3 elementor-headline--style-rotate elementor-widget elementor-widget-animated-headline" data-id="21cc4f3" data-element_type="widget" data-settings="{&quot;headline_style&quot;:&quot;rotate&quot;,&quot;animation_type&quot;:&quot;swirl&quot;,&quot;rotating_text&quot;:&quot;APPLICATION FORMS\nREGISTRATION FORMS&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;rotate_iteration_delay&quot;:2500}" data-widget_type="animated-headline.default"> <div class="elementor-widget-container"> <h3 class="elementor-headline elementor-headline-animation-type-swirl elementor-headline-letters"> <span class="elementor-headline-plain-text elementor-headline-text-wrapper">Membership</span> <span class="elementor-headline-dynamic-wrapper elementor-headline-text-wrapper"> <span class="elementor-headline-dynamic-text elementor-headline-text-active"> APPLICATION&nbsp;FORMS </span> <span class="elementor-headline-dynamic-text"> REGISTRATION&nbsp;FORMS </span> </span> </h3> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-67a0e16" data-id="67a0e16" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0d754c7 elementor-align-center elementor-widget elementor-widget-button" data-id="0d754c7" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="https://iopghana.org/membership/membership-form-online/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fab fa-wpforms"></i> </span> <span class="elementor-button-text">REGISTER ONLINE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-7dfa206 elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7dfa206" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-9fa9120" data-id="9fa9120" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-38748db elementor-headline--style-rotate elementor-widget elementor-widget-animated-headline" data-id="38748db" data-element_type="widget" data-settings="{&quot;headline_style&quot;:&quot;rotate&quot;,&quot;animation_type&quot;:&quot;swirl&quot;,&quot;rotating_text&quot;:&quot;APPLICATION FORMS\nREGISTRATION FORMS&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;rotate_iteration_delay&quot;:2500}" data-widget_type="animated-headline.default"> <div class="elementor-widget-container"> <h3 class="elementor-headline elementor-headline-animation-type-swirl elementor-headline-letters"> <span class="elementor-headline-plain-text elementor-headline-text-wrapper">Membership</span> <span class="elementor-headline-dynamic-wrapper elementor-headline-text-wrapper"> <span class="elementor-headline-dynamic-text elementor-headline-text-active"> APPLICATION&nbsp;FORMS </span> <span class="elementor-headline-dynamic-text"> REGISTRATION&nbsp;FORMS </span> </span> </h3> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e14f4a8" data-id="e14f4a8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-231badf elementor-align-center elementor-widget elementor-widget-button" data-id="231badf" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-lg" href="https://iopghana.org/membership/membership-form-online/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fab fa-wpforms"></i> </span> <span class="elementor-button-text">REGISTER ONLINE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f1098fe elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f1098fe" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9b1cb9b" data-id="9b1cb9b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d250eb5 elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel" data-id="d250eb5" data-element_type="widget" data-settings="{&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500}" data-widget_type="image-carousel.default"> <div class="elementor-widget-container"> <div class="elementor-image-carousel-wrapper swiper" role="region" aria-roledescription="carousel" aria-label="Image Carousel" dir="ltr"> <div class="elementor-image-carousel swiper-wrapper" aria-live="off"> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="1 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/03/CSIR-–-Food-Research-Institute-a-300x105.png" alt="CSIR – Food Research Institute-a" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="2 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/Food-and-Drugs-Authority-300x105.png" alt="Food and Drugs Authority" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="3 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/Ghana-Education-Service-300x105.png" alt="Ghana Education Service" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="4 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/Ghana-Export-Promotion-Authority-1-300x105.png" alt="Ghana Export Promotion Authority" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="5 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/GSA-LOGO-300x105.png" alt="GSA - LOGO" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="6 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/Kwame-Nkrumah-University-of-Science-and-Technology-1-300x105.png" alt="Kwame Nkrumah University of Science and Technology" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="7 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/National-Board-for-Small-Scale-Industries-1-300x105.png" alt="National Board for Small Scale Industries" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="8 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/P-Ministry-of-Food-and-Agriculture-300x105.png" alt="P - Ministry of Food and Agriculture" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="9 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/P-TRADE-INDUSTRY-300x105.png" alt="P - TRADE &amp; INDUSTRY" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="10 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/Rural-Enterprises-Project-300x105.png" alt="Rural Enterprises Project" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="11 of 11"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://iopghana.org/storage/2021/02/UG-300x105.png" alt="UG" /></figure></div> </div> <div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0"> <i aria-hidden="true" class="eicon-chevron-left"></i> </div> <div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0"> <i aria-hidden="true" class="eicon-chevron-right"></i> </div> <div class="swiper-pagination"></div> </div> </div> </div> </div> </div> </div> </section> </div> </div><!-- .site-content-inner --> </div><!-- .site-content --> </div><!-- .site-content-wrapper --> <footer id="colophon" class="site-footer "> <div class="footer_inner_wrapper footer themestek-bg themestek-bgcolor-transparent themestek-bgimage-yes"> <div class="site-footer-bg-layer themestek-bg-layer"></div> <div class="site-footer-w"> <div class="footer-rows"> <div class="footer-rows-inner"> <div id="second-footer" class="sidebar-container second-footer themestek-bg themestek-bgcolor-transparent themestek-textcolor-white themestek-bgimage-no themestek-second-footer-col-12" role="complementary"> <div class="second-footer-bg-layer themestek-bg-layer"></div> <div class="container"> <div class="second-footer-inner"> <div class="row multi-columns-row"> <div class="widget-area col-xs-12 col-sm-6 col-md-12 col-lg-12 second-widget-area"> <aside id="elementortemplate_widget-3" class="widget widget_elementortemplate_widget"> <div data-elementor-type="section" data-elementor-id="15416" class="elementor elementor-15416" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-7cda4540 elementor-section-stretched elementor-hidden-tablet elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7cda4540" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4edfd199" data-id="4edfd199" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-71d05e8c elementor-widget elementor-widget-image" data-id="71d05e8c" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="300" height="85" src="https://iopghana.org/storage/2021/03/New-Email-Logo-a-300x85.png" class="attachment-medium size-medium wp-image-16010" alt="" srcset="https://iopghana.org/storage/2021/03/New-Email-Logo-a-300x85.png 300w, https://iopghana.org/storage/2021/03/New-Email-Logo-a.png 450w" sizes="(max-width: 300px) 100vw, 300px" /> </div> </div> <div class="elementor-element elementor-element-4001ddb1 elementor-widget elementor-widget-text-editor" data-id="4001ddb1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>The Institute of Packaging, Ghana (IOPG) is a non-profit, non-governmental organization registered under the Companies Code, 1963 (Act 179) of the Republic of Ghana in Accra on 16th July 2003, Certificate of Registration No. G11, 804, as a company limited by guarantee. Following its inauguration on 3rd November 2003, IOPG has been at the forefront of promoting professional packaging practice.</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-1e70148" data-id="1e70148" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-099dade elementor-nav-menu__align-start elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="099dade" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-background e--animation-shutter-in-horizontal"> <ul id="menu-1-099dade" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-14562 current_page_item menu-item-15403"><a href="https://iopghana.org/" aria-current="page" class="elementor-item elementor-item-active">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15404"><a href="https://iopghana.org/about-us/who-we-are/" class="elementor-item">Who We Are</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15406"><a href="https://iopghana.org/our-portfolio/notable-achievements/" class="elementor-item">Notable Achievements</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15405"><a href="https://iopghana.org/membership/" class="elementor-item">Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15407"><a href="https://iopghana.org/contact-us/" class="elementor-item">Contact Us</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-099dade" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-14562 current_page_item menu-item-15403"><a href="https://iopghana.org/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15404"><a href="https://iopghana.org/about-us/who-we-are/" class="elementor-item" tabindex="-1">Who We Are</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15406"><a href="https://iopghana.org/our-portfolio/notable-achievements/" class="elementor-item" tabindex="-1">Notable Achievements</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15405"><a href="https://iopghana.org/membership/" class="elementor-item" tabindex="-1">Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15407"><a href="https://iopghana.org/contact-us/" class="elementor-item" tabindex="-1">Contact Us</a></li> </ul> </nav> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-59bb6ab3" data-id="59bb6ab3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5f3b08f elementor-widget elementor-widget-image" data-id="5f3b08f" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://worldpackaging.org" target="_blank"> <img width="206" height="300" src="https://iopghana.org/storage/2021/03/WPO-BLUEaa1-206x300.jpg" class="elementor-animation-pulse attachment-medium size-medium wp-image-16023" alt="" srcset="https://iopghana.org/storage/2021/03/WPO-BLUEaa1-206x300.jpg 206w, https://iopghana.org/storage/2021/03/WPO-BLUEaa1.jpg 344w" sizes="(max-width: 206px) 100vw, 206px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4493ef77" data-id="4493ef77" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6c3a5e8 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="6c3a5e8" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 368.16 368.16" style="enable-background:new 0 0 368.16 368.16;" xml:space="preserve"><g> <g> <g> <path d="M184.08,0c-74.992,0-136,61.008-136,136c0,24.688,11.072,51.24,11.536,52.36c3.576,8.488,10.632,21.672,15.72,29.4 l93.248,141.288c3.816,5.792,9.464,9.112,15.496,9.112s11.68-3.32,15.496-9.104l93.256-141.296 c5.096-7.728,12.144-20.912,15.72-29.4c0.464-1.112,11.528-27.664,11.528-52.36C320.08,61.008,259.072,0,184.08,0z M293.8,182.152c-3.192,7.608-9.76,19.872-14.328,26.8l-93.256,141.296c-1.84,2.792-2.424,2.792-4.264,0L88.696,208.952 c-4.568-6.928-11.136-19.2-14.328-26.808C74.232,181.816,64.08,157.376,64.08,136c0-66.168,53.832-120,120-120 c66.168,0,120,53.832,120,120C304.08,157.408,293.904,181.912,293.8,182.152z"></path> <path d="M184.08,64.008c-39.704,0-72,32.304-72,72c0,39.696,32.296,72,72,72c39.704,0,72-32.304,72-72 C256.08,96.312,223.784,64.008,184.08,64.008z M184.08,192.008c-30.872,0-56-25.12-56-56s25.128-56,56-56s56,25.12,56,56 S214.952,192.008,184.08,192.008z"></path> </g> </g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg> </span> <span class="elementor-icon-list-text">C/O Gs1, Manna Plaza Building, Spintex Road, Co.18 Junction, Accra</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-mail-bulk"></i> </span> <span class="elementor-icon-list-text">P. O. Box Co 2234, Tema</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-headphones-alt"></i> </span> <span class="elementor-icon-list-text">+233302816260 +233244663914 +233208184358 +233208180613 +233206525111</span> </li> </ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2c1143f elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2c1143f" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-bcda183" data-id="bcda183" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-04f33fd elementor-hidden-desktop elementor-hidden-phone elementor-widget elementor-widget-image" data-id="04f33fd" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="200" height="269" src="https://iopghana.org/storage/2021/03/LOGO-3-1X1-white.png" class="attachment-large size-large wp-image-15575" alt="" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6242cfe elementor-hidden-desktop elementor-hidden-phone" data-id="6242cfe" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9be99b8 elementor-widget elementor-widget-text-editor" data-id="9be99b8" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>The Institute of Packaging, Ghana (IOPG) is a non-profit, non-governmental organization registered under the Companies Code, 1963 (Act 179) of the Republic of Ghana in Accra on 16th July 2003, Certificate of Registration No. G11, 804, as a company limited by guarantee. Following its inauguration on 3rd November 2003, IOPG has been at the forefront of promoting professional packaging practice.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-71dcf10 elementor-section-stretched elementor-hidden-desktop elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="71dcf10" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-aa8b128" data-id="aa8b128" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d5b3e01 elementor-nav-menu__align-center elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="d5b3e01" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-background e--animation-shutter-in-horizontal"> <ul id="menu-1-d5b3e01" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-14562 current_page_item menu-item-15403"><a href="https://iopghana.org/" aria-current="page" class="elementor-item elementor-item-active">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15404"><a href="https://iopghana.org/about-us/who-we-are/" class="elementor-item">Who We Are</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15406"><a href="https://iopghana.org/our-portfolio/notable-achievements/" class="elementor-item">Notable Achievements</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15405"><a href="https://iopghana.org/membership/" class="elementor-item">Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15407"><a href="https://iopghana.org/contact-us/" class="elementor-item">Contact Us</a></li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-d5b3e01" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-14562 current_page_item menu-item-15403"><a href="https://iopghana.org/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">Home</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15404"><a href="https://iopghana.org/about-us/who-we-are/" class="elementor-item" tabindex="-1">Who We Are</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15406"><a href="https://iopghana.org/our-portfolio/notable-achievements/" class="elementor-item" tabindex="-1">Notable Achievements</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15405"><a href="https://iopghana.org/membership/" class="elementor-item" tabindex="-1">Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15407"><a href="https://iopghana.org/contact-us/" class="elementor-item" tabindex="-1">Contact Us</a></li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-781ab93 elementor-section-stretched elementor-hidden-desktop elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="781ab93" data-element_type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-f9e7c9a" data-id="f9e7c9a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a760bd1 elementor-widget elementor-widget-image" data-id="a760bd1" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://worldpackaging.org" target="_blank"> <img width="206" height="300" src="https://iopghana.org/storage/2021/03/WPO-BLUEaa1-206x300.jpg" class="elementor-animation-pulse attachment-medium size-medium wp-image-16023" alt="" srcset="https://iopghana.org/storage/2021/03/WPO-BLUEaa1-206x300.jpg 206w, https://iopghana.org/storage/2021/03/WPO-BLUEaa1.jpg 344w" sizes="(max-width: 206px) 100vw, 206px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d26c28a" data-id="d26c28a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0b0eea0 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="0b0eea0" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 368.16 368.16" style="enable-background:new 0 0 368.16 368.16;" xml:space="preserve"><g> <g> <g> <path d="M184.08,0c-74.992,0-136,61.008-136,136c0,24.688,11.072,51.24,11.536,52.36c3.576,8.488,10.632,21.672,15.72,29.4 l93.248,141.288c3.816,5.792,9.464,9.112,15.496,9.112s11.68-3.32,15.496-9.104l93.256-141.296 c5.096-7.728,12.144-20.912,15.72-29.4c0.464-1.112,11.528-27.664,11.528-52.36C320.08,61.008,259.072,0,184.08,0z M293.8,182.152c-3.192,7.608-9.76,19.872-14.328,26.8l-93.256,141.296c-1.84,2.792-2.424,2.792-4.264,0L88.696,208.952 c-4.568-6.928-11.136-19.2-14.328-26.808C74.232,181.816,64.08,157.376,64.08,136c0-66.168,53.832-120,120-120 c66.168,0,120,53.832,120,120C304.08,157.408,293.904,181.912,293.8,182.152z"></path> <path d="M184.08,64.008c-39.704,0-72,32.304-72,72c0,39.696,32.296,72,72,72c39.704,0,72-32.304,72-72 C256.08,96.312,223.784,64.008,184.08,64.008z M184.08,192.008c-30.872,0-56-25.12-56-56s25.128-56,56-56s56,25.12,56,56 S214.952,192.008,184.08,192.008z"></path> </g> </g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg> </span> <span class="elementor-icon-list-text">C/O Gs1, Manna Plaza Building, Spintex Road, Co.18 Junction, Accra</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-mail-bulk"></i> </span> <span class="elementor-icon-list-text">P. O. Box Co 2234, Tema</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-headphones-alt"></i> </span> <span class="elementor-icon-list-text">+233 302816260, +233244663914, +233208184358, +233208180613, +233206525111</span> </li> </ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-c32c8ba elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c32c8ba" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-111d019" data-id="111d019" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-38ecb3a elementor-widget elementor-widget-image" data-id="38ecb3a" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img width="450" height="128" src="https://iopghana.org/storage/2021/03/New-Email-Logo-a.png" class="attachment-large size-large wp-image-16010" alt="" srcset="https://iopghana.org/storage/2021/03/New-Email-Logo-a.png 450w, https://iopghana.org/storage/2021/03/New-Email-Logo-a-300x85.png 300w" sizes="(max-width: 450px) 100vw, 450px" /> </div> </div> <div class="elementor-element elementor-element-a118ccb elementor-widget elementor-widget-text-editor" data-id="a118ccb" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>The Institute of Packaging, Ghana (IOPG) is a non-profit, non-governmental organization registered under the Companies Code, 1963 (Act 179) of the Republic of Ghana in Accra on 16th July 2003, Certificate of registration No. G11, 804, as a company limited by guarantee. Following its inauguration on 3rd November, 2003, IOPG has been at the forefront of promoting professional packaging practice.</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-b240278 elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b240278" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9892355" data-id="9892355" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c766406 elementor-widget elementor-widget-image" data-id="c766406" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://worldpackaging.org" target="_blank"> <img width="344" height="500" src="https://iopghana.org/storage/2021/03/WPO-BLUEaa1.jpg" class="elementor-animation-pulse-grow attachment-large size-large wp-image-16023" alt="" srcset="https://iopghana.org/storage/2021/03/WPO-BLUEaa1.jpg 344w, https://iopghana.org/storage/2021/03/WPO-BLUEaa1-206x300.jpg 206w" sizes="(max-width: 344px) 100vw, 344px" /> </a> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6ee591c elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6ee591c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fe0b97c" data-id="fe0b97c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-931b4e0 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="931b4e0" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Capa_1" x="0px" y="0px" viewBox="0 0 368.16 368.16" style="enable-background:new 0 0 368.16 368.16;" xml:space="preserve"><g> <g> <g> <path d="M184.08,0c-74.992,0-136,61.008-136,136c0,24.688,11.072,51.24,11.536,52.36c3.576,8.488,10.632,21.672,15.72,29.4 l93.248,141.288c3.816,5.792,9.464,9.112,15.496,9.112s11.68-3.32,15.496-9.104l93.256-141.296 c5.096-7.728,12.144-20.912,15.72-29.4c0.464-1.112,11.528-27.664,11.528-52.36C320.08,61.008,259.072,0,184.08,0z M293.8,182.152c-3.192,7.608-9.76,19.872-14.328,26.8l-93.256,141.296c-1.84,2.792-2.424,2.792-4.264,0L88.696,208.952 c-4.568-6.928-11.136-19.2-14.328-26.808C74.232,181.816,64.08,157.376,64.08,136c0-66.168,53.832-120,120-120 c66.168,0,120,53.832,120,120C304.08,157.408,293.904,181.912,293.8,182.152z"></path> <path d="M184.08,64.008c-39.704,0-72,32.304-72,72c0,39.696,32.296,72,72,72c39.704,0,72-32.304,72-72 C256.08,96.312,223.784,64.008,184.08,64.008z M184.08,192.008c-30.872,0-56-25.12-56-56s25.128-56,56-56s56,25.12,56,56 S214.952,192.008,184.08,192.008z"></path> </g> </g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg> </span> <span class="elementor-icon-list-text">c/o Gs1, Manna Plaza Building, Spintex Road, Co.18 Junction, Accra</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-mail-bulk"></i> </span> <span class="elementor-icon-list-text">P. O. Box Co 2234, Tema</span> </li> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-headphones-alt"></i> </span> <span class="elementor-icon-list-text">+233302 816260, +233244663914, +233208184358, +233208180613, +233206525111</span> </li> </ul> </div> </div> </div> </div> </div> </section> </div> </aside> </div><!-- .widget-area --> </div><!-- .row.multi-columns-row --> </div><!-- .second-footer-inner --> </div><!-- --> </div><!-- #secondary --> </div><!-- .footer-inner --> </div><!-- .footer --> <div id="bottom-footer-text" class="bottom-footer-text themestek-bottom-footer-text site-info themestek-bg themestek-bgcolor-custom themestek-textcolor-white themestek-bgimage-no"> <div class="bottom-footer-bg-layer themestek-bg-layer"></div> <div class="container"> <div class="bottom-footer-inner"> <div class="row multi-columns-row"> <div class="col-xs-12 col-sm-12 themestek-footer2-left "> © 2025 Institute of Packaging, Ghana | Powered by <a href="http://lambentdigitech.com">Lambent DigiTech</a> </div><!-- footer left --> </div><!-- .row.multi-columns-row --> </div><!-- .bottom-footer-inner --> </div><!-- --> </div><!-- .footer-text --> </div><!-- .footer-inner-wrapper --> </div><!-- .site-footer-inner --> </footer><!-- .site-footer --> </div><!-- #page .site --> </div><!-- .main-holder --> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = false; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <div id="glt-translate-trigger"><span class="translate">Change Language »</span></div><div id="glt-toolbar"></div><div id="flags" style="display:none" class="size18"><ul id="sortable" class="ui-sortable"><li id="Afrikaans"><a href="#" title="Afrikaans" class="nturl notranslate af flag Afrikaans"></a></li><li id="Arabic"><a href="#" title="Arabic" class="nturl notranslate ar flag Arabic"></a></li><li id="Chinese (Simplified)"><a href="#" title="Chinese (Simplified)" class="nturl notranslate zh-CN flag Chinese (Simplified)"></a></li><li id="Chinese (Traditional)"><a href="#" title="Chinese (Traditional)" class="nturl notranslate zh-TW flag Chinese (Traditional)"></a></li><li id="English"><a href="#" title="English" class="nturl notranslate en flag English"></a></li><li id="Filipino"><a href="#" title="Filipino" class="nturl notranslate tl flag Filipino"></a></li><li id="French"><a href="#" title="French" class="nturl notranslate fr flag French"></a></li><li id="German"><a href="#" title="German" class="nturl notranslate de flag German"></a></li><li id="Greek"><a href="#" title="Greek" class="nturl notranslate el flag Greek"></a></li><li id="Hausa"><a href="#" title="Hausa" class="nturl notranslate ha flag Hausa"></a></li><li id="Hebrew"><a href="#" title="Hebrew" class="nturl notranslate iw flag Hebrew"></a></li><li id="Indonesian"><a href="#" title="Indonesian" class="nturl notranslate id flag Indonesian"></a></li><li id="Italian"><a href="#" title="Italian" class="nturl notranslate it flag Italian"></a></li><li id="Japanese"><a href="#" title="Japanese" class="nturl notranslate ja flag Japanese"></a></li><li id="Korean"><a href="#" title="Korean" class="nturl notranslate ko flag Korean"></a></li><li id="Persian"><a href="#" title="Persian" class="nturl notranslate fa flag Persian"></a></li><li id="Portuguese"><a href="#" title="Portuguese" class="nturl notranslate pt flag Portuguese"></a></li><li id="Russian"><a href="#" title="Russian" class="nturl notranslate ru flag Russian"></a></li><li id="Serbian"><a href="#" title="Serbian" class="nturl notranslate sr flag Serbian"></a></li><li id="Spanish"><a href="#" title="Spanish" class="nturl notranslate es flag Spanish"></a></li><li id="Swahili"><a href="#" title="Swahili" class="nturl notranslate sw flag Swahili"></a></li><li id="Swedish"><a href="#" title="Swedish" class="nturl notranslate sv flag Swedish"></a></li><li id="Telugu"><a href="#" title="Telugu" class="nturl notranslate te flag Telugu"></a></li><li id="Thai"><a href="#" title="Thai" class="nturl notranslate th flag Thai"></a></li><li id="Turkish"><a href="#" title="Turkish" class="nturl notranslate tr flag Turkish"></a></li><li id="Xhosa"><a href="#" title="Xhosa" class="nturl notranslate xh flag Xhosa"></a></li><li id="Yoruba"><a href="#" title="Yoruba" class="nturl notranslate yo flag Yoruba"></a></li><li id="Zulu"><a href="#" title="Zulu" class="nturl notranslate zu flag Zulu"></a></li></ul></div><div id='glt-footer'><div id="google_language_translator" class="default-language-en"></div></div><script>function GoogleLanguageTranslatorInit() { new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages:'af,ar,zh-CN,zh-TW,en,tl,fr,de,el,ha,iw,id,it,ja,ko,fa,pt,ru,sr,es,sw,sv,te,th,tr,xh,yo,zu', layout: google.translate.TranslateElement.InlineLayout.HORIZONTAL, autoDisplay: false}, 'google_language_translator');}</script> <script id="wccp_pro_alert_message"> window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign window.addEventListener('load', function (){ // Create the first div element with the "oncontextmenu" attribute const wccp_pro_mask = document.createElement('div'); wccp_pro_mask.setAttribute('oncontextmenu', 'return false;'); wccp_pro_mask.setAttribute('id', 'wccp_pro_mask'); // Create the second div element with the "msgmsg-box-wpcp hideme" classes const wpcp_error_message = document.createElement('div'); wpcp_error_message.setAttribute('id', 'wpcp-error-message'); wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme'); // Add a span element with the "error: " text inside the second div const error_span = document.createElement('span'); error_span.innerText = 'error: '; wpcp_error_message.appendChild(error_span); // Add the error message text inside the second div const error_text = document.createTextNode('<b>Alert:</b> Sorry, IOPG is protected!!'); wpcp_error_message.appendChild(error_text); // Add the div elements to the document body document.body.appendChild(wccp_pro_mask); document.body.appendChild(wpcp_error_message); }); var timeout_result; function show_wccp_pro_message(smessage="", style="") { wccp_pro_log_to_console_if_allowed("function", "show_wccp_pro_message" + smessage); timeout = 3000; if(style == "") style = "warning-wpcp"; if (smessage !== "" && timeout!=0) { var smessage_text = smessage; jquery_fadeTo(); document.getElementById("wpcp-error-message").innerHTML = smessage_text; document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style; clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } else { clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } } function hide_message() { jquery_fadeOut(); document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme"; } function jquery_fadeTo() { try { jQuery("#wccp_pro_mask").fadeTo("slow", 0.3); } catch(err) { //alert(err.message); } } function jquery_fadeOut() { try { jQuery("#wccp_pro_mask").fadeOut( "slow" ); } catch(err) {} } </script> <style> #wccp_pro_mask { position: absolute; bottom: 0; left: 0; position: fixed; right: 0; top: 0; background-color: #000; pointer-events: none; display: none; z-index: 10000; animation: 0.5s ease 0s normal none 1 running ngdialog-fadein; background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0; } #wpcp-error-message { direction: ltr; text-align: center; transition: opacity 900ms ease 0s; pointer-events: none; z-index: 99999999; } .hideme { opacity:0; visibility: hidden; } .showme { opacity:1; visibility: visible; } .msgmsg-box-wpcp { border-radius: 10px; color: #555555; font-family: Tahoma; font-size: 12px; margin: 10px; padding: 10px 36px; position: fixed; width: 255px; top: 50%; left: 50%; margin-top: -10px; margin-left: -130px; } .msgmsg-box-wpcp b { font-weight:bold; text-transform:uppercase; } .warning-wpcp { background:#ffecec url('https://iopghana.org/core/modules/cf7099100b/images/warning.png') no-repeat 10px 50%; border:1px solid #f2bfbf; -webkit-box-shadow: 0px 0px 34px 2px #f2bfbf; -moz-box-shadow: 0px 0px 34px 2px #f2bfbf; box-shadow: 0px 0px 34px 2px #f2bfbf; } .success-wpcp { background: #fafafa url('https://iopghana.org/core/modules/cf7099100b/images/success.png') no-repeat 10px 50%; border: 1px solid #00b38f; box-shadow: 0px 0px 34px 2px #adc; } </style> <script> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link href="//fonts.googleapis.com/css?family=Roboto:700%2C400%2C500%2C100&display=swap" rel="stylesheet" property="stylesheet" media="all" > <script> if(typeof revslider_showDoubleJqueryError === "undefined") {function revslider_showDoubleJqueryError(sliderID) {console.log("You have some jquery.js library include that comes after the Slider Revolution files js inclusion.");console.log("To fix this, you can:");console.log("1. Set 'Module General Options' -> 'Advanced' -> 'jQuery & OutPut Filters' -> 'Put JS to Body' to on");console.log("2. Find the double jQuery.js inclusion and remove it");return "Double Included jQuery Library";}} </script> <link rel="preload" as="font" id="rs-icon-set-fa-icon-woff" type="font/woff2" crossorigin="anonymous" href="//iopghana.org/core/modules/revslider/sr6/assets/fonts/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0" media="all" /> <link rel="stylesheet" property="stylesheet" id="rs-icon-set-fa-icon-css" href="//iopghana.org/core/modules/revslider/sr6/assets/fonts/font-awesome/css/font-awesome.css" media="all" /> <link rel='stylesheet' id='elementor-post-15416-css' href='https://iopghana.org/storage/elementor/css/post-15416.css' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-image.min.css' media='all' /> <link rel='stylesheet' id='widget-nav-menu-css' href='https://iopghana.org/core/modules/ccc473c329/assets/css/widget-nav-menu.min.css' media='all' /> <link rel='stylesheet' id='e-animation-pulse-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/animations/styles/e-animation-pulse.min.css' media='all' /> <link rel='stylesheet' id='widget-icon-list-css' href='https://iopghana.org/core/modules/f65f29574d/assets/css/widget-icon-list.min.css' media='all' /> <link rel='stylesheet' id='e-animation-pulse-grow-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/animations/styles/e-animation-pulse-grow.min.css' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://iopghana.org/core/modules/f65f29574d/assets/lib/font-awesome/css/solid.min.css' media='all' /> <link rel='stylesheet' id='rs-plugin-settings-css' href='//iopghana.org/core/modules/revslider/sr6/assets/css/rs6.css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rev_slider_3_1_wrapper .uranus .tp-bullet{border-radius:50%; box-shadow:0 0 0 2px rgba(255,255,255,0); -webkit-transition:box-shadow 0.3s ease; transition:box-shadow 0.3s ease; background:transparent; width:15px; height:15px}#rev_slider_3_1_wrapper .uranus .tp-bullet.selected,#rev_slider_3_1_wrapper .uranus .tp-bullet.rs-touchhover{box-shadow:0 0 0 2px rgba(255,255,255,1); border:none; border-radius:50%; background:transparent}#rev_slider_3_1_wrapper .uranus .tp-bullet-inner{-webkit-transition:background-color 0.3s ease,-webkit-transform 0.3s ease; transition:background-color 0.3s ease,transform 0.3s ease; top:0; left:0; width:100%; height:100%; outline:none; border-radius:50%; background-color:rgba(255,255,255,0); background-color:rgba(255,255,255,0.3); text-indent:-999em; cursor:pointer; position:absolute}#rev_slider_3_1_wrapper .uranus .tp-bullet.selected .tp-bullet-inner,#rev_slider_3_1_wrapper .uranus .tp-bullet.rs-touchhover .tp-bullet-inner{transform:scale(0.4); -webkit-transform:scale(0.4); background-color:rgba(255,255,255,1)} @font-face{font-family:'Material Icons'; font-style:normal; font-weight:400; src:url(//fonts.gstatic.com/s/materialicons/v41/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2')}rs-module .material-icons{font-family:'Material Icons'; font-weight:normal; font-style:normal;font-size:inherit; display:inline-block; text-transform:none; letter-spacing:normal; word-wrap:normal; white-space:nowrap; direction:ltr; vertical-align:top; line-height:inherit; font-feature-settings:'liga'; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; -moz-osx-font-smoothing:grayscale} </style> <script src="https://iopghana.org/core/modules/6bf30d63de/js/scripts.js" id="scripts-js"></script> <script src="//translate.google.com/translate_a/element.js?cb=GoogleLanguageTranslatorInit" id="scripts-google-js"></script> <script src="https://iopghana.org/core/modules/3e857f275e/assets/lib/jquery-resize/jquery.resize.min.js" id="jquery-resize-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/perfect-scrollbar/perfect-scrollbar.jquery.min.js" id="perfect-scrollbar-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/select2/select2.min.js" id="select2-js"></script> <script src="https://iopghana.org/core/modules/041dc5d622/assets/lib/vendor/node_modules/isotope-layout/dist/isotope.pkgd.min.js" id="isotope-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/jquery-mousewheel/jquery.mousewheel.min.js" id="jquery-mousewheel-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/flexslider/jquery.flexslider-min.js" id="flexslider-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/sticky-kit/jquery.sticky-kit.min.js" id="sticky-kit-js"></script> <script src="https://iopghana.org/core/views/df66152b2d/libraries/slick/slick.min.js" id="slick-js"></script> <script src="https://iopghana.org/core/modules/041dc5d622/assets/lib/vendor/prettyphoto/js/jquery.prettyPhoto.min.js" id="prettyphoto-js"></script> <script src="https://iopghana.org/core/modules/4daf83416d/framework/assets/js/wpie-common.min.js" id="wpie-common-js"></script> <script id="wpca-frontend-js-before"> /* <![CDATA[ */ var wpcaData = {"cookieNameConsent":"wpca_consent","cookieNameCc":"wpca_cc","init3rdPartyTimeout":200,"init3rdPartyItems":[],"doPlaceholder":false,"doPlaceholderParentSizing":false,"minPlacehoderDim":{"w":75,"h":75},"blockedAssetsUri":{"a":"#","js":"https:\/\/iopghana.org\/core\/modules\/4daf83416d\/assets\/js\/blocked.js","img":"https:\/\/iopghana.org\/core\/modules\/4daf83416d\/assets\/img\/blocked.jpg","iframe":"about:blank"},"loadHtmlEarly":true,"fetchMethod":"adminajax","layout":"box","cookieExpire":365,"cookiesBeforeConsent":3,"consentMethod":1,"policyCssClass":"wpca-policy-link","cookiePolicyPathRel":"","queryVarBypass":"wpca_bypass_consent","showLayer":false,"hasClose":false,"useXAsDismiss":false,"minScrollTop":0,"cookiePath":"\/","cookieDomain":"","bypassingConsent":false,"allowedCc":["functional","analytical","social-media","advertising","other"],"requiredCc":["functional","analytical","social-media","advertising","other"],"replaceResetBtn":true,"reloadAfterConsent":false,"animateDuration":200,"gtm":{"optimize":true,"dataLayerName":"dataLayer","dataLayerVar":"wpcaCc","dataLayerEventPrefix":"wpca_consent_","enableGCMv2":false,"localStorageKey":"wpcaConsentMode"},"ajaxContextFrontend":"301ae2dd5cfd43887a2f9c15d16f0447","restUrl":"https:\/\/iopghana.org\/wp-json\/","restNonce":"f4f360b76b","ccLabels":{"functional":"Functional","analytical":"Analytical","social-media":"Social media","advertising":"Advertising","other":"Other"},"ns":"wpca","nonce":"da4f93e884","wpurl":"https:\/\/iopghana.org","domain":"iopghana.org","ajaxurl":"https:\/\/iopghana.org\/ajax","referer":false,"currenturl":"https:\/\/iopghana.org\/","isms":false,"mspath":"\/","ssl":true} /* ]]> */ </script> <script src="https://iopghana.org/core/modules/4daf83416d/modules/frontend/js/wpca-frontend.min.js" id="wpca-frontend-js"></script> <script id="wccp_pro_admin_bar_ajax-js-extra"> /* <![CDATA[ */ var ajax_object = {"ajaxurl":"https:\/\/iopghana.org\/ajax","link":"https:\/\/iopghana.org\/"}; /* ]]> */ </script> <script src="https://iopghana.org/core/modules/cf7099100b/js/admin_bar_ajax.js" id="wccp_pro_admin_bar_ajax-js"></script> <script src="https://iopghana.org/core/modules/041dc5d622/assets/js/dist/js_composer_front.min.js" id="wpb_composer_front_js-js"></script> <script id="liviza-script-js-extra"> /* <![CDATA[ */ var ts_liviza_js_vars = {"themestek_breakpoint":"1200","ajaxurl":"https:\/\/iopghana.org\/ajax"}; /* ]]> */ </script> <script src="https://iopghana.org/core/views/df66152b2d/js/scripts.min.js" id="liviza-script-js"></script> <script src="https://iopghana.org/core/modules/f65f29574d/assets/lib/jquery-numerator/jquery-numerator.min.js" id="jquery-numerator-js"></script> <script src="https://iopghana.org/core/modules/4ed5873fa0/assets/vendor/js/jquery-qrcode.min.js" id="qrcode-js"></script> <script id="bdt-uikit-js-extra"> /* <![CDATA[ */ var element_pack_ajax_login_config = {"ajaxurl":"https:\/\/iopghana.org\/ajax","language":"en","loadingmessage":"Sending user info, please wait...","unknownerror":"Unknown error, make sure access is correct!"}; var ElementPackConfig = {"ajaxurl":"https:\/\/iopghana.org\/ajax","nonce":"36c1cc7657","data_table":{"language":{"sLengthMenu":"Show _MENU_ Entries","sInfo":"Showing _START_ to _END_ of _TOTAL_ entries","sSearch":"Search :","sZeroRecords":"No matching records found","oPaginate":{"sPrevious":"Previous","sNext":"Next"}}},"contact_form":{"sending_msg":"Sending message please wait...","captcha_nd":"Invisible captcha not defined!","captcha_nr":"Could not get invisible captcha response!"},"mailchimp":{"subscribing":"Subscribing you please wait..."},"search":{"more_result":"More Results","search_result":"SEARCH RESULT","not_found":"not found"},"words_limit":{"read_more":"[read more]","read_less":"[read less]"},"elements_data":{"sections":[],"columns":[],"widgets":[]}}; /* ]]> */ </script> <script src="https://iopghana.org/core/modules/4ed5873fa0/assets/js/bdt-uikit.min.js" id="bdt-uikit-js"></script> <script src="https://iopghana.org/core/modules/4ed5873fa0/assets/js/common/helper.min.js" id="element-pack-helper-js"></script> <script src="https://iopghana.org/core/modules/ccc473c329/assets/lib/smartmenus/jquery.smartmenus.min.js" id="smartmenus-js"></script> <script src="https://iopghana.org/core/modules/4ed5873fa0/assets/js/modules/ep-qrcode.min.js" id="ep-qrcode-js"></script> <script src="https://iopghana.org/core/modules/f65f29574d/assets/lib/swiper/v8/swiper.min.js" id="swiper-js"></script> <script src="https://iopghana.org/core/modules/ccc473c329/assets/js/webpack-pro.runtime.min.js" id="elementor-pro-webpack-runtime-js"></script> <script src="https://iopghana.org/core/modules/f65f29574d/assets/js/webpack.runtime.min.js" id="elementor-webpack-runtime-js"></script> <script src="https://iopghana.org/core/modules/f65f29574d/assets/js/frontend-modules.min.js" id="elementor-frontend-modules-js"></script> <script src="https://iopghana.org/lib/js/dist/hooks.min.js" id="wp-hooks-js"></script> <script src="https://iopghana.org/lib/js/dist/i18n.min.js" id="wp-i18n-js"></script> <script id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/iopghana.org\/ajax","nonce":"33d280f17e","urls":{"assets":"https:\/\/iopghana.org\/core\/modules\/ccc473c329\/assets\/","rest":"https:\/\/iopghana.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}}, "facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/iopghana.org\/core\/modules\/ccc473c329\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script src="https://iopghana.org/core/modules/ccc473c329/assets/js/frontend.min.js" id="elementor-pro-frontend-js"></script> <script src="https://iopghana.org/lib/js/jquery/ui/core.min.js" id="jquery-ui-core-js"></script> <script id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}, "hasCustomBreakpoints":false},"version":"3.27.3","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_swiper_latest":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"landing-pages":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/iopghana.org\/core\/modules\/f65f29574d\/assets\/","ajaxurl":"https:\/\/iopghana.org\/ajax","uploadUrl":"https:\/\/iopghana.org\/core\/uploads"},"nonces":{"floatingButtonsClickTracking":"bf1effeac8"},"swiperClass":"swiper","settings":{"page":{"element_pack_global_tooltip_width":{"unit":"px","size":"","sizes":[]},"element_pack_global_tooltip_width_tablet":{"unit":"px","size":"","sizes":[]},"element_pack_global_tooltip_width_mobile":{"unit":"px","size":"","sizes":[]},"element_pack_global_tooltip_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"element_pack_global_tooltip_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"element_pack_global_tooltip_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"element_pack_global_tooltip_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"element_pack_global_tooltip_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"element_pack_global_tooltip_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true}}, "editorPreferences":[]},"kit":{"stretched_section_container":"#primary","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":14562,"title":"Home%20%E2%80%94%20Institute%20of%20Packaging%2C%20Ghana","excerpt":"","featuredImage":false}}; /* ]]> */ </script> <script src="https://iopghana.org/core/modules/f65f29574d/assets/js/frontend.min.js" id="elementor-frontend-js"></script> <script src="https://iopghana.org/core/modules/ccc473c329/assets/js/elements-handlers.min.js" id="pro-elements-handlers-js"></script> <script src="https://iopghana.org/core/modules/3e857f275e/assets/lib/tooltipster/tooltipster.min.js" id="pp-tooltipster-js"></script> <script src="https://iopghana.org/core/modules/3e857f275e/assets/js/min/frontend-tooltip.min.js" id="pp-elements-tooltip-js"></script> <script></script><script id="rs-initialisation-scripts"> var tpj = jQuery; var revapi3; if(window.RS_MODULES === undefined) window.RS_MODULES = {}; if(RS_MODULES.modules === undefined) RS_MODULES.modules = {}; RS_MODULES.modules["revslider31"] = {once: RS_MODULES.modules["revslider31"]!==undefined ? RS_MODULES.modules["revslider31"].once : undefined, init:function() { window.revapi3 = window.revapi3===undefined || window.revapi3===null || window.revapi3.length===0 ? document.getElementById("rev_slider_3_1") : window.revapi3; if(window.revapi3 === null || window.revapi3 === undefined || window.revapi3.length==0) { window.revapi3initTry = window.revapi3initTry ===undefined ? 0 : window.revapi3initTry+1; if (window.revapi3initTry<20) requestAnimationFrame(function() {RS_MODULES.modules["revslider31"].init()}); return;} window.revapi3 = jQuery(window.revapi3); if(window.revapi3.revolution==undefined){ revslider_showDoubleJqueryError("rev_slider_3_1"); return;} revapi3.revolutionInit({ revapi:"revapi3", sliderLayout:"fullwidth", visibilityLevels:"1240,1024,778,480", gridwidth:1230, gridheight:400, autoHeight:true, enableUpscaling:true, lazyType:"smart", spinner:"spinner0", perspective:600, perspectiveType:"local", editorheight:"400,400,960,400", responsiveLevels:"1240,1024,778,480", progressBar:{disableProgressBar:true}, navigation: { wheelCallDelay:1000, onHoverStop:false, bullets: { enable:true, tmp:"<span class=\"tp-bullet-inner\"></span>", style:"uranus", hide_onmobile:true, hide_under:"1024px", h_align:"right", v_align:"center", h_offset:30, v_offset:0, direction:"vertical", space:10, container:"layergrid" } }, viewPort: { global:true, globalDist:"-200px", enable:false }, fallbacks: { allowHTML5AutoPlayOnAndroid:true }, }); }} // End of RevInitScript if (window.RS_MODULES.checkMinimal!==undefined) { window.RS_MODULES.checkMinimal();}; </script> <div id="wpca-lay-out-wrapper"></div> <script> jQuery( function( $ ) { for (let i = 0; i < document.forms.length; ++i) { let form = document.forms[i]; if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="OFRyWampZ" value="GT6cpFBglVI." />'); } if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="QeOnVZM" value="C6TSMwuGi7" />'); } if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="GPdnNOcIZruBEm" value="[Toz8LF" />'); } } $(document).on('submit', 'form', function () { if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="OFRyWampZ" value="GT6cpFBglVI." />'); } if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="QeOnVZM" value="C6TSMwuGi7" />'); } if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="GPdnNOcIZruBEm" value="[Toz8LF" />'); } return true; }); jQuery.ajaxSetup({ beforeSend: function (e, data) { if (data.type !== 'POST') return; if (typeof data.data === 'object' && data.data !== null) { data.data.append("OFRyWampZ", "GT6cpFBglVI."); data.data.append("QeOnVZM", "C6TSMwuGi7"); data.data.append("GPdnNOcIZruBEm", "[Toz8LF"); } else { data.data = data.data + '&OFRyWampZ=GT6cpFBglVI.&QeOnVZM=C6TSMwuGi7&GPdnNOcIZruBEm=[Toz8LF'; } } }); }); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10