CINXE.COM
Global Business Reports - Partners
<!DOCTYPE html> <html lang="en"> <head> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-N3N6VCF');</script> <!-- End Google Tag Manager --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta property="og:url" content="https://www.gbreports.com/partners" /> <meta property="og:type" content="website" /> <meta property="og:title" content="GBR - Partners" /> <meta property="og:description" content="Partners" /> <meta property="og:image" content="https://www.gbreports.com/images/logo.png" /> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#da532c"> <meta name="theme-color" content="#ffffff"> <title>Global Business Reports - Partners</title> <!-- Bootstrap Core CSS --> <link href="/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="/css/gbreports.css?4694" rel="stylesheet"> <!-- Custom Fonts --> <link href="/bower_components/components-font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <script src="/bower_components/jquery/dist/jquery.min.js"></script> <script src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <link href="/js/zozo/css/zozo.accordion.css" rel="stylesheet"> <script src="/js/zozo/js/zozo.accordion.js"></script> <script src="/bower_components/is_js/is.js"></script> <script type="text/javascript" src="/js/colorbox-master/jquery.colorbox-min.js"></script> <link rel="stylesheet" href="/js/colorbox-master/colorbox.css" type="text/css" media="screen" /> <script src="https://js.stripe.com/v3/"></script> <script> // stripe integration var stripe = Stripe('pk_test_2yM8SD4CrhjdDWoeMwFeE3T3'); var elements = stripe.elements(); // Custom styling can be passed to options when creating an Element. // (Note that this demo uses a wider set of styles than the guide below.) var style = { base: { color: '#32325d', lineHeight: '24px', fontFamily: '"Helvetica Neue", Helvetica, sans-serif', fontSmoothing: 'antialiased', fontSize: '16px', '::placeholder': { color: '#aab7c4' } }, invalid: { color: '#fa755a', iconColor: '#fa755a' } }; // Create an instance of the card Element var card = elements.create('card', {style: style, hidePostalCode: true}); $(document).ready(function() { $("#gbreports-accordion").zozoAccordion({ theme: "gbreports", orientation: "horizontal", active: 1, contentHeight: 150, headerSize: 46, headerFontSize: 1.5, responsive: true, width:1140, minWindowWidth: 720, shadows: false, showIcons: false, bordered: false, vertical: { headerSize: 38, headerFontSize: 1.1 }, scrollable: true, animation: { easing: "easeOutQuart", duration: 600 }, }); if ($("#gbreports-accordion").length){ $("#gbreports-accordion").data("zozoAccordion").first(); } $("input[name='subscriptionType']").change(function() { if ($(this).is(":checked")) { $(".signupTypeOption").removeClass("selected"); $(this).closest(".signupTypeOption").addClass("selected"); console.log($(this).val()); if($(this).val() == "monthly"){ $(".subscription_price").html("$9"); } else if($(this).val() == "annual"){ $(".subscription_price").html("$99"); } } }); $(".changeStep").click(function(e) { e.preventDefault(); var targetStep = $(this).attr('data-targetStep'); signup(targetStep); }); // Add an instance of the card Element into the `card-element` <div> if($('#card-element').length) { card.mount('#card-element'); // Handle real-time validation errors from the card Element. card.addEventListener('change', function(event) { var displayError = document.getElementById('card-errors'); if (event.error) { displayError.textContent = event.error.message; } else { displayError.textContent = ''; } }); } $("#countriesPage .continentButton").click(function(e) { var targetContinent = $(this).attr('data-continent'); $("#countriesPage .continentButton").removeClass("active"); $(this).addClass("active"); //$("#countryList a").show(); if(targetContinent != "all"){ $("#countryList a[data-continent='"+targetContinent+"']").fadeIn(); $("#countryList a:not([data-continent='"+targetContinent+"']").hide(); } else{ $("#countryList a").fadeIn(); } }); $(".showAllPartners").click(function(e) { e.preventDefault(); $(".partner-list .event").removeClass("hidden"); $(this).addClass("hidden"); }); }); function signup(step){ var titles = [ "", "Create Account", "Select Membership", "Billing Address", "Payment & Confirmation" ]; if(signupValidation(step-1)){ if(step < 5){ $("#signupPage h1").html(titles[step]); $("[id^=formStep]").hide(); $("#formStep"+step.toString()).show(); $('.step').removeClass("active"); for(var i=1; i<=step; i++){ $('*[data-step="' + i + '"]').addClass("active"); } } if(step == 4){ if ($("input[name='subscriptionType']:checked").val() == "registeronly"){ $(".subscriptionOnly").hide(); } else{ $(".subscriptionOnly").show(); } } // last screen if(step == 5){ console.log("submitted"); if ($("input[name='subscriptionType']:checked").val() != "registeronly"){ console.log("payment process 1"); $(".lastButton").prop('disabled', true); $(".ajaxLoading").show(); stripe.createToken(card, { 'name': $('#cc_name').val().trim(), 'address_line1': $('#billing_address').val().trim(), 'address_city': $('#city').val().trim(), 'address_state': $('#state').val().trim(), 'address_zip': $('#zip').val().trim(), 'address_country': $('#billing_country').val().trim() }).then(function(result) { if (result.error) { console.log("payment process error"); // Inform the user if there was an error var errorElement = document.getElementById('card-errors'); errorElement.textContent = result.error.message; $(".lastButton").prop('disabled', false); $(".ajaxLoading").hide(); } else { console.log("payment process sendsignupdata"); // Send the token to your server sendSignupData(result.token); } }); } else{ sendSignupData(null); } } } } function sendSignupData(stripeToken){ var ajaxData = $('form').serialize() if(stripeToken != null){ //console.log("stripe token: "); //console.log(stripeToken); //console.log("stripe token --- eof"); ajaxData = ajaxData + "&stripe_token="+stripeToken.id; } $.ajax({ type: "POST", url: "/signup", data: ajaxData, processData: false, beforeSend: function (xhr) { // Function needed from Laravel because of the CSRF Middleware var token = "ztsrIi020HiQ5Xd3dCT04BXdEcPxXDqIXWkqIQ3M"; if (token) { return xhr.setRequestHeader('X-CSRF-TOKEN', token); } $(".lastButton").prop('disabled', true); $(".ajaxLoading").show(); }, success:function(data) { var errors = []; var inputs = []; //$('#save_message').html(data.message); //console.log("-----------------------------------"); console.log(data); if(typeof data.id !== "undefined"){ $(".step").hide(); $(".finished").show(); $("[id^=formStep]").hide(); $("#formFinished").show(); $("#signupPage h1").html("Thank you!"); return; } if(typeof data.jsonBody.error.code !== "undefined"){ errors.push(data.jsonBody.error.message); showSignupError(errors, inputs, 4); var displayError = document.getElementById('card-errors'); displayError.textContent = data.jsonBody.error.message; $(".lastButton").prop('disabled', false); $(".ajaxLoading").hide(); } } }); } function signupValidation(step){ clearErrors(); var errors = []; var inputs = []; // step one var first_name = $('#first_name').val().trim(); var last_name = $('#last_name').val().trim(); var email = $('#email').val().trim(); var password = $('#password').val().trim(); var country = $('#country').val().trim(); var sector = $('#sector').val().trim(); var jobtitle = $('#jobtitle').val().trim(); // step three var billing_address = $('#billing_address').val().trim(); var apartment = $('#apartment').val().trim(); var city = $('#city').val().trim(); var state = $('#state').val().trim(); var zip = $('#zip').val().trim(); var billing_country = $('#billing_country').val().trim(); var phone = $('#phone').val().trim(); // step four var cc_name = $('#cc_name').val().trim(); //var cc_number = $('#cc_number').val().trim(); //var cc_expire = $('#cc_expire').val().trim(); //var cc_securitycode = $('#cc_securitycode').val().trim(); var keep_informed = $('#keep_informed').is(":checked"); var aggreement = $('#aggreement').is(":checked"); switch (step){ case 1: //break; // step one validation var emailCheck = $.ajax({ type: "POST", url: "/signup/checkemail", data: 'email='+email, processData: false, async: false, beforeSend: function (xhr) { // Function needed from Laravel because of the CSRF Middleware var token = "ztsrIi020HiQ5Xd3dCT04BXdEcPxXDqIXWkqIQ3M"; if (token) { return xhr.setRequestHeader('X-CSRF-TOKEN', token); } }, success:function(data) { if(data == true){ errors.push("Email already exists"); inputs.push("email"); } } }); if (first_name.length < 2){ errors.push("First name is required"); inputs.push("first_name"); } if (last_name.length < 2){ errors.push("Last name is required"); inputs.push("last_name"); } if (email.length < 2 || is.not.email(email)){ errors.push("Valid email is required"); inputs.push("email"); } if (password.length < 5){ errors.push("Password must be at least 5 characters"); inputs.push("password"); } re = /[0-9]/; if(!re.test(password)) { errors.push("Password must contain at least one number (0-9)!"); inputs.push("password"); } if (country < 1){ errors.push("Country is required"); inputs.push("country"); } if (sector < 1){ errors.push("Sector is required"); inputs.push("sector"); } if (jobtitle.length < 2){ errors.push("Job title is required"); inputs.push("jobtitle"); } break; case 3: //break; // step three validation if (billing_address.length < 2){ errors.push("Billing address is required"); inputs.push("billing_address"); } /*if (apartment.length < 2){ errors.push("Apartment is required"); inputs.push("apartment"); }*/ if (city.length < 2){ errors.push("City is required"); inputs.push("city"); } if (state.length < 2){ errors.push("State is required"); inputs.push("state"); } if (zip.length < 2){ errors.push("ZIP is required"); inputs.push("zip"); } if (billing_country.length < 2){ errors.push("Country is required"); inputs.push("billing_country"); } if (phone.length < 10){ errors.push("Phone number is required and must be at least 10 numbers in length"); inputs.push("phone"); } break; case 4: // step four validation if (cc_name.length < 2 && ($("input[name='subscriptionType']:checked").val() != "registeronly")){ errors.push("Name on card is required"); inputs.push("cc_name"); } /* if (is.not.creditCard(cc_number)){ errors.push("Valid credit card number is required"); inputs.push("cc_number"); } if (cc_expire.length < 2){ errors.push("Credit card expiration date is required"); inputs.push("cc_expire"); } if (cc_securitycode.length < 2){ errors.push("Security code is required"); inputs.push("cc_securitycode"); } */ if (!aggreement){ errors.push("Subscriber agreement must be accepted"); inputs.push("aggreement"); } break; } if(errors.length > 0){ showSignupError(errors, inputs, step); return false; } return true; } function clearErrors(){ $('.errorLine').html(" "); $(".form-group").removeClass("has-error"); } function showSignupError(errors, inputs, step){ clearErrors(); var msgError = ""; $.each(errors, function() { msgError = msgError + "<br>" + this; }); $(".errorStep" + step.toString()).html(msgError); $.each(inputs, function() { $("#"+this).parent().addClass("has-error"); }); } </script> <script>window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); t._e = []; t.ready = function(f) { t._e.push(f); }; return t; }(document, "script", "twitter-wjs"));</script> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N3N6VCF" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.8&appId=437397456398991"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <script> function fbShare(url, title) { winWidth = 500; winHeight = 300; var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('http://www.facebook.com/sharer.php?p[title]=' + title + '&u=' + url, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } function twitterShare(url, title) { winWidth = 500; winHeight = 300; var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('http://twitter.com/share?text=' + title + '&url=' + url, 'twsharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } </script> <div id="wrapper"> <header> <div id="header-content" class="container"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"> <div class="logo"> <a href="/"><img src="/images/logo.png"></a> </div> </div> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"> <div class="row hidden-xs"> <div class="col-lg-12 col-md-12 text-right socialmedia"> <a href="https://www.linkedin.com/company/gbreports/" target="_blank"><img src="/images/linkedin.png"></a> <a href="https://twitter.com/gbreports" target="_blank"><img src="/images/twitter.png"></a> <a href="https://www.facebook.com/GBReports/" target="_blank"><img src="/images/facebook.png"></a> </div> </div> <div class="row"> <div class="col-lg-12 col-md-12 text-right membership"> </div> </div> </div> </div> </div> <div id="nav-wrapper"> <!-- Navigation --> <nav class="navbar navbar-default navbar-static-top container" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <!-- /.navbar-header --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li ><a href="/">HOME</a></li> <li ><a href="/articles">ARTICLES</a></li> <li ><a href="/interviews">INTERVIEWS</a></li> <li ><a href="/sectors">SECTORS</a></li> <li ><a href="/countries">COUNTRIES</a></li> <li ><a href="/publications">PUBLICATIONS </a></li> <li class="active" ><a href="/partners">PARTNERS</a></li> <li ><a href="/contact">CONTACT</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <form class="navbar-form" role="search" action="/search"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search" name="q"> <div class="input-group-btn"> <button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button> </div> </div> </form> </ul> </div><!-- /.navbar-collapse --> </nav> </div> </header> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-8 col-sm-12 col-xs-12" id="homepage-left"> <!-- FILTER --> <section class="list-filter row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="row mb10 hidden-xs hidden-sm hidden-md"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <!-- Revive Adserver Asynchronous JS Tag - Generated with Revive Adserver v4.1.3 --> <ins data-revive-zoneid="3" data-revive-id="4d58855c1664273b0e0d0b4938b0d2bc"></ins> <script async src="//ads.gbreports.com/delivery/asyncjs.php"></script> </div> </div> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <h1>FILTER</h1> </div> </div> <form method="get" action="/partners"> <div class="row"> <div class="col-md-3"> <select name="country"> <option value="0">Country</option> <option value="" selected="selected"></option> <option value="Australia" >Australia</option> <option value="Brazil" >Brazil</option> <option value="Canada" >Canada</option> <option value="Chile" >Chile</option> <option value="China" >China</option> <option value="Cote d'Ivoire" >Cote d'Ivoire</option> <option value="Côte d’Ivoire" >Côte d’Ivoire</option> <option value="Denmark" >Denmark</option> <option value="DRC" >DRC</option> <option value="Egypt" >Egypt</option> <option value="France" >France</option> <option value="Germany" >Germany</option> <option value="Ghana" >Ghana</option> <option value="Hong Kong" >Hong Kong</option> <option value="India" >India</option> <option value="Japan" >Japan</option> <option value="Kenya" >Kenya</option> <option value="Malaysia" >Malaysia</option> <option value="Mauritania" >Mauritania</option> <option value="Mexico" >Mexico</option> <option value="Morocco" >Morocco</option> <option value="Mozambique" >Mozambique</option> <option value="Namibia" >Namibia</option> <option value="Niger" >Niger</option> <option value="Nigeria" >Nigeria</option> <option value="Online" >Online</option> <option value="Panama" >Panama</option> <option value="Peru" >Peru</option> <option value="Rwanda" >Rwanda</option> <option value="Senegal" >Senegal</option> <option value="Singapore" >Singapore</option> <option value="South Africa" >South Africa</option> <option value="Switzerland" >Switzerland</option> <option value="Turkey" >Turkey</option> <option value="UK" >UK</option> <option value="United Kingdom" >United Kingdom</option> <option value="United States" >United States</option> <option value="US" >US</option> <option value="USA" >USA</option> </select> </div> <div class="col-md-3"> <select name="sector"> <option value="0">Sector</option> <option value="" selected="selected"></option> <option value="Aerospace" >Aerospace</option> <option value="Chemicals" >Chemicals</option> <option value="Chemicals & Petrochemicals" >Chemicals & Petrochemicals</option> <option value="Energy" >Energy</option> <option value="Life Sciences" >Life Sciences</option> <option value="Mining" >Mining</option> <option value="Oil & Gas" >Oil & Gas</option> <option value="Oil & Gas, Petrochemicals" >Oil & Gas, Petrochemicals</option> <option value="Petrochemicals & Chemicals" >Petrochemicals & Chemicals</option> <option value="Petrochemicals and Chemicals" >Petrochemicals and Chemicals</option> <option value="Petrochemicals, Chemicals, Oil & Gas" >Petrochemicals, Chemicals, Oil & Gas</option> <option value="Pharmaceuticals" >Pharmaceuticals</option> </select> </div> <div class="col-md-3"> <select name="daterange"> <option value="0">Date</option> <option value="2025-05" >May 2025</option> <option value="2025-06" >June 2025</option> <option value="2025-07" >July 2025</option> <option value="2025-08" >August 2025</option> <option value="2025-09" >September 2025</option> <option value="2025-10" >October 2025</option> <option value="2025-11" >November 2025</option> <option value="2025-12" >December 2025</option> <option value="2026-01" >January 2026</option> <option value="2026-02" >February 2026</option> <option value="2026-03" >March 2026</option> <option value="2026-04" >April 2026</option> <option value="2026-05" >May 2026</option> </select> </div> <div class="col-md-3"> <button class="btnfilter" type="submit">FILTER</button> </div> </div> </form> </div> </section> <!-- ARTICLES --> <section class="partner-list row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <h1 class="maintitle">PARTNER EVENTS</h1> </div> </div> <div class="row event "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://convention.cim.org/" target="_blank"><img src="/photos/partners/2025/CIM_Connect_-_Full_Colour_Logo___Tagline___Date__29Jul24_.png"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://convention.cim.org/" target="_blank">CIM CONNECT 2025</a></h1> <div class="date">May 04, 2025 - May 07, 2025 • Montreal, Canada</div> <div class="summary"><p>CIM CONNECT 2025 offers three days of immersive learning, knowledge sharing, and professional development courses. The extensive trade show will showcase the latest products and services, providing unique networking opportunities. The theme, "Minerals, Innovation, and the Energy Transition," highlights the shift from traditional mining to the economic value of minerals. It emphasizes circularity, focusing on the recovery of materials like tailings and secondary sources. While full circularity is a long-term goal, the event encourages innovative approaches to sourcing minerals, adapting to changing economic and environmental landscapes, and promoting sustainable practices and technological advancements.</p> </div> </div> </div> <div class="row event "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://proexplo.com.pe/proexplo2025/front/public/en" target="_blank"><img src="/photos/partners/2025/LOGO-PROEXPLO-2025.png"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://proexplo.com.pe/proexplo2025/front/public/en" target="_blank">proEXPLO 2025</a></h1> <div class="date">May 05, 2025 - May 07, 2025 • Lima, Peru</div> <div class="summary"><p style="text-align: justify;">Considered the main mining exploration conference in South America, it brings together more than 2,000 attendees and investors from more than 30 countries.</p> <p style="text-align: justify;">The audience includes mining companies, executives, professionals, authorities, contractors, academics, teachers and Geology students.</p> <p style="text-align: justify;">The main objective of this event is to promote the importance of mining exploration for Peru and Latin America and also to be a showcase for new discoveries and projects, technical advances and good practices.</p> <p style="text-align: justify;">Be part of this great event, which will also bring together first-class presentations and exhibitions: 8 Keynote Talks, short courses and field trips, as well as oral presentations, round tables and more than 80 commercial exhibition stands.</p> </div> </div> </div> <div class="row event "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://www.cphi.com/americas/en/home.html" target="_blank"><img src="/photos/partners/2025/CPHI_LOGO_RGB_AMERICAS_COLOUR.png"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://www.cphi.com/americas/en/home.html" target="_blank">CPHI Americas</a></h1> <div class="date">May 20, 2025 - May 22, 2025 • Philadelphia, United States</div> <div class="summary"><p>CPHI Americas welcomes pharma’s industry leaders, innovators, and game changers from the Americas region.</p> <p>Ranked as one of the fastest-growing shows in the US by Trade Show Executive and home to the entire pharma supply chain in one place – you don’t want to miss this. <br /> <br /> Taking place May 20-22, 2025 in Philadelphia, join us to network, learn and innovate with your peers. </p> </div> </div> </div> <div class="row event hidden "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://logistica2025.apla.lat/" target="_blank"><img src="/photos/partners/2025/Logistica.png"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://logistica2025.apla.lat/" target="_blank">27th APLA Logistics Meeting</a></h1> <div class="date">May 20, 2025 - May 21, 2025 • Panama City, Panama</div> <div class="summary"><p>The 27th APLA Logistics Meeting, organized by the Latin American Petrochemical and Chemical Association, will bring together the main leaders of the sector on May 20–21, 2025, in Panama City.<br /> This event has become the premier space to explore the latest trends, strategies, and technological innovations in logistics for the petrochemical and chemical industry. As every year, it will offer a unique opportunity for sharing best practices, forging new strategic alliances, and developing business opportunities.</p> </div> </div> </div> <div class="row event hidden "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://eu1.hubs.ly/H0gV3qy0" target="_blank"><img src="/photos/partners/2025/DRC_Mining_Week_Square__2_.jpg"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://eu1.hubs.ly/H0gV3qy0" target="_blank">DRC Mining Week 2025</a></h1> <div class="date">June 11, 2025 - June 13, 2025 • Lubumbashi, DRC</div> <div class="summary"><p>DRC Mining Week celebrates 20 years as the DRC’s premier mining platform!</p> <p>DRC Mining Week is the premier conference and exhibition for Africa’s mining sector, bringing together industry leaders and innovators to explore essential trends, technologies, and strategies. This exclusive platform offers insights into sustainability and digital transformation while facilitating valuable networking and partnerships. <br /> By connecting Africa with global expertise, DRC Mining Week drives sustainable progress and empowers professionals to shape the future of mining in the DRC and Copperbelt.</p> </div> </div> </div> <div class="row event hidden "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://minproperu.com/" target="_blank"><img src="/photos/partners/2025/minpro_peru_logo__1___1_.jpg"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://minproperu.com/" target="_blank">Expo Mineros y Proveedores – MINPRO 2025</a></h1> <div class="date">June 24, 2025 - June 25, 2025 • Lima, Peru</div> <div class="summary"><p style="text-align: justify;"> Recognized as the main business event for the mining industry in Peru, Expo Mineros y Proveedores - MINPRO 2025 brings together key decision-makers, suppliers, and industry leaders in an exclusive setting designed for networking and commercial opportunities.</p> <p style="text-align: justify;"> The event hosts mining executives, procurement managers, and specialized suppliers, fostering high-level business meetings and technical discussions.</p> <p style="text-align: justify;"> Its main objective is to facilitate strategic alliances and optimize the procurement process in the mining sector, providing a platform for innovative solutions and new business opportunities.</p> <p style="text-align: justify;"> Join this essential event featuring top-tier presentations, business roundtables, and a specialized exhibition area showcasing cutting-edge products and services for the mining industry.</p> </div> </div> </div> <div class="row event hidden "> <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"> <div class="photo"> <a href="https://aecweek.com/" target="_blank"><img src="/photos/partners/2025/AEW25_LOGO_2.png"></a> </div> </div> <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12"> <h1><a href="https://aecweek.com/" target="_blank">African Energy Week (AEW)</a></h1> <div class="date">September 29, 2025 - October 03, 2025 • Cape Town, South Africa</div> <div class="summary"><p style="text-align: justify;">African Energy Week (AEW) is the African Energy Chamber’s annual event, uniting African energy leaders, global investors and executives from across the public and private sector for four days of intense dialogue on the future of the African energy industry. An interactive conference, exhibition and networking event, AEW was established in 2021 under the premise to make energy poverty history by 2030, hosting panel discussions, investor forums, industry summits and one-on-one meeting opportunities, and driving the discussions that will reshape the trajectory of the continent’s energy development.</p> <p style="text-align: justify;">In 2025, the event returns bigger and better than ever before, serving as the official meeting place for Africa’s energy elite. At the forefront of the African energy industry, AEW promotes the role Africa plays in global energy matters, centered around African-led dialogue and decision making. Covering the entire energy sector and value chain, AEW represents the only conference on the continent representative of the entire sector.</p> </div> </div> </div> <div class="row showMore"> <div class="col-lg-12 col-md-6 col-sm-12 col-xs-12 more-articles"> <a href="#" class="showAllPartners">SHOW MORE</a> </div> </div> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <h1 class="maintitle">MEDIA PARTNERS</h1> </div> </div> </div> </section> <!-- ./ARTICLES --> </div> <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12 mb30" id="homepage-right"> <div class="row"> <div class="col-lg-11 col-md-11 col-sm-12 col-xs-12 right-inner pull-right"> <section id="newsletter-subscription" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">MACIG</h1></div> </div> <div class="row"> <div class="col-md-12 text-center"> <a href="/sectors/mining?macig=1"><img src="/images/macig.jpg"></a> </div> </div> </section> <section id="newsletter-subscription" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">SPANISH</h1></div> </div> <div class="row"> <div class="col-md-12 text-center"> <a href="/sectors/mining?spanish=1"><img src="/images/spanish.jpg"></a> </div> </div> </section> <!-- NEWSLETTER --> <section id="newsletter-subscription" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">SUBSCRIBE TO OUR NEWSLETTER</h1></div> </div> <div class="row"> <div class="col-md-12 text-center"> <a href="/subscription"><img src="/images/subscribe-banner.png"></a> </div> </div> </section> <!-- RECENT PUBLICATIONS --> <section id="recently-published" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">RECENT PUBLICATIONS</h1></div> </div> <div class="row mb20"> <div class="col-md-12 text-center"><a href="/publication/peru-mining-2025-pre-release-ii"><img src="/photos/publication-photos/2025/Peru-Mining-2025-prerelease-2-cover-web.png"></a></div> </div> <div class="row mb20"> <div class="col-md-12"> <strong>Peru Mining 2025 Pre-Release II</strong><br><br> Featuring insights from nearly 120 mining executives, the second pre-release edition of GBR's Peru Mining 2025 sheds light on the industry's current state while highlighting Peru’s window of opportunity to align with the global energy transition and copper’s increasingly critical role. </div> </div> <div class="row"> <div class="col-md-12"><a href="/publications" class="more">MORE PREVIOUSLY PUBLISHED</a></div> </div> </section> <!-- PARTNERS --> <section id="partners" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">PARTNER EVENTS</h1></div> </div> <div class="row mb30"> <div class="col-md-6"> <a href="/partners"><img src="/photos/partners/2025/DRC_Mining_Week_Square__2_.jpg"></a> </div> <div class="col-md-6"> <a href="/partners"><img src="/photos/partners/2025/AEW25_LOGO_2.png"></a> </div> </div> <div class="row"> <div class="col-md-12"><a href="/partners" class="more">SEE ALL</a></div> </div> </section> </div> </div> </div> </div> </div> <div id="upgrade-footer"> <div class="container"> <div class="row"> <div class="col-lg-4 col-md-4 col-sm-6 col-xs-12"> <div class="title-grey">SUBSCRIBE TO OUR</div> <div class="title-white">NEWSLETTER</div> </div> <div class="col-lg-5 col-md-4 col-sm-6 col-xs-12"> <ul> <li>Get GBR content delivered to your inbox</li> <li>Receive industry based news</li> <li>Completely free, e-mail only</li> </ul> </div> <div class="col-lg-3 col-md-4 col-sm-12 col-xs-12"> <a href="/subscription" class="signupnow center-block"><img src="/images/subscribenow.png"></a> </div> </div> </div> z </div> <footer> <div class="container"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-4 col-xs-12"> <a href="#" class="footerlogo"><img src="/images/footer-logo.png"></a> </div> <div class="col-lg-6 col-md-6 col-sm-8 col-xs-12"> <ul> <li><a href="/about">ABOUT GBR</a></li> <li><a href="/cookiespolicy">COOKIES POLICY</a></li> <li><a href="/about">MEDIA</a></li> <li><a href="/recruitment">RECRUITMENT</a></li> <li><a href="/contact">CONTACT</a></li> </ul> </div> </div> </div> </footer> </div> <!-- /#wrapper --> </body> </html>