Suppliers
Producer National Associations
Brands and Retailers
- Laboratoires M&L (L’OCCITANE EN PROVENCE)
- OKA Cosmetics
Affiliates Members
Women’s Groups
Non Profits
- Entrepreneurs Du Monde
- Man & The Environment
- Natural Resources Stewardship Circle
- Nitidae
- Positive Planet International
C
const popup = document.querySelector('.popup');
const close = document.querySelector('.close');
window.onload = function(){
setTimeout(function(){
popup.style.display = "block";
}, 2000)
}
close.addEventListener('click',()=>{
popup.style.display = 'none';
})