{"id":382,"date":"2019-10-13T22:15:51","date_gmt":"2019-10-13T22:15:51","guid":{"rendered":"https:\/\/stone-hill.progressionstudios.com\/?page_id=382"},"modified":"2026-03-03T21:16:37","modified_gmt":"2026-03-03T21:16:37","slug":"home","status":"publish","type":"page","link":"https:\/\/www.internationalsommelierllc.com\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"382\" class=\"elementor elementor-382\">\n\t\t\t\t<div class=\"elementor-element elementor-element-49b7945 e-flex e-con-boxed e-con e-parent\" data-id=\"49b7945\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ca122aa elementor-widget elementor-widget-heading\" data-id=\"ca122aa\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Become a Certified Chianti Classico Wine Expert\u200b<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-4492a3f elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"4492a3f\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-62d52caa\" data-id=\"62d52caa\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ec89a14 elementor-widget elementor-widget-html\" data-id=\"ec89a14\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- Styles -->\n<style>\n#chartdiv {\n  width: 100%;\n  height: 500px;\n  max-width: 100%;\n  pointer-events: none;\n  margin-top: 50px\n}\nbody {\n    background-color: #000000\n}\n<\/style>\n\n<!-- Resources -->\n<script src=\"https:\/\/cdn.amcharts.com\/lib\/5\/index.js\"><\/script>\n<script src=\"https:\/\/cdn.amcharts.com\/lib\/5\/map.js\"><\/script>\n<script src=\"https:\/\/cdn.amcharts.com\/lib\/5\/geodata\/worldLow.js\"><\/script>\n<script src=\"https:\/\/cdn.amcharts.com\/lib\/5\/themes\/Animated.js\"><\/script>\n<script src=\"https:\/\/cdn.amcharts.com\/lib\/5\/themes\/Dark.js\"><\/script>\n\n<!-- Chart code -->\n<script>\nam5.ready(function() {\n\n\/\/ Create root element\n\/\/ https:\/\/www.amcharts.com\/docs\/v5\/getting-started\/#Root_element\nvar root = am5.Root.new(\"chartdiv\");\n\n\n\/\/ Set themes\n\/\/ https:\/\/www.amcharts.com\/docs\/v5\/concepts\/themes\/\nroot.setThemes([\n  am5themes_Animated.new(root),\n\tam5themes_Dark.new(root)\n]);\n\n\n\/\/ Create the map chart\n\/\/ https:\/\/www.amcharts.com\/docs\/v5\/charts\/map-chart\/\nvar chart = root.container.children.push(am5map.MapChart.new(root, {\n  panX: \"rotateX\",\n  panY: \"rotateY\",\n  projection: am5map.geoOrthographic(),\n  paddingBottom: 20,\n  paddingTop: 20,\n  paddingLeft: 20,\n  paddingRight: 20\n}));\n\n\n\n\/\/ Create main polygon series for countries\n\/\/ https:\/\/www.amcharts.com\/docs\/v5\/charts\/map-chart\/map-polygon-series\/\nvar polygonSeries = chart.series.push(am5map.MapPolygonSeries.new(root, {\n  geoJSON: am5geodata_worldLow \n}));\n\npolygonSeries.mapPolygons.template.setAll({\n  tooltipText: \"{name}\",\n  toggleKey: \"active\",\n  interactive: true\n});\n\npolygonSeries.mapPolygons.template.states.create(\"hover\", {\n  fill: root.interfaceColors.get(\"primaryButtonHover\")\n});\n\npolygonSeries.mapPolygons.template.states.create(\"active\", {\n  fill: root.interfaceColors.get(\"primaryButtonHover\")\n});\n\n\n\/\/ Create series for background fill\n\/\/ https:\/\/www.amcharts.com\/docs\/v5\/charts\/map-chart\/map-polygon-series\/#Background_polygon\nvar backgroundSeries = chart.series.push(am5map.MapPolygonSeries.new(root, {}));\nbackgroundSeries.mapPolygons.template.setAll({\n  fill: am5.color(0xFFFFFF),\n  fillOpacity: 0.1,\n  strokeOpacity: 0\n});\nbackgroundSeries.data.push({\n  geometry: am5map.getGeoRectangle(90, 180, -90, -180)\n});\n\nvar graticuleSeries = chart.series.unshift(\n  am5map.GraticuleSeries.new(root, {\n    step: 10\n  })\n);\n\ngraticuleSeries.mapLines.template.set(\"strokeOpacity\", 0.1)\n\n\/\/ Set up events\nvar previousPolygon;\n\npolygonSeries.mapPolygons.template.on(\"active\", function(active, target) {\n  if (previousPolygon && previousPolygon != target) {\n    previousPolygon.set(\"active\", false);\n  }\n  if (target.get(\"active\")) {\n    selectCountry(target.dataItem.get(\"id\"));\n  }\n  previousPolygon = target;\n});\n\nfunction selectCountry(id) {\n  var dataItem = polygonSeries.getDataItemById(id);\n  var target = dataItem.get(\"mapPolygon\");\n  if (target) {\n    var centroid = target.geoCentroid();\n    if (centroid) {\n      chart.animate({ key: \"rotationX\", to: -centroid.longitude, duration: 1500, easing: am5.ease.inOut(am5.ease.cubic) });\n      chart.animate({ key: \"rotationY\", to: -centroid.latitude, duration: 1500, easing: am5.ease.inOut(am5.ease.cubic) });\n    }\n  }\n}\n\n\/\/ Uncomment this to pre-center the globe on a country when it loads\n\/\/polygonSeries.events.on(\"datavalidated\", function() {\n\/\/  selectCountry(\"AU\");\n\/\/});\nchart.animate({\n  key: \"rotationX\",\n  from: 0,\n  to: 360,\n  duration: 30000,\n  loops: Infinity\n});\n\n\/\/ Make stuff animate on load\nchart.appear(1000, 100);\n\n}); \/\/ end am5.ready()\n<\/script>\n\n<!-- HTML -->\n<div id=\"chartdiv\"><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ab3bfee\" data-id=\"ab3bfee\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-07ade6e elementor-widget elementor-widget-image\" data-id=\"07ade6e\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.internationalsommelierllc.com\/?page_id=570#chanti\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/elementor\/thumbs\/diploma-rjzbn9dsjkscxvcustc5n87wgy5t05esbs5eilwz2o.jpg\" title=\"diploma\" alt=\"diploma\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ac1c472 elementor-widget elementor-widget-text-editor\" data-id=\"ac1c472\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div><strong>Enroll Now and Earn Your Official Diploma<\/strong><\/div><div>\u00a0<\/div><div>Are you ready to deepen your knowledge of one of Italy\u2019s most iconic wine regions and earn a credential that truly sets you apart?<\/div><div>\u00a0<\/div><div>We are proud to announce the opportunity to become a\u00a0<strong>Chianti Classico Wine Expert<\/strong>, an immersive educational journey designed for wine professionals, educators, sommeliers, retailers, and dedicated enthusiasts who want to master the history, terroir, and wines of Chianti Classico.<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-772adf3 e-flex e-con-boxed e-con e-parent\" data-id=\"772adf3\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b0645b8 elementor-widget elementor-widget-heading\" data-id=\"b0645b8\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">New Announcements<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5eb4a4c e-flex e-con-boxed e-con e-parent\" data-id=\"5eb4a4c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-25be93b e-grid e-con-full e-con e-child\" data-id=\"25be93b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-de357c4 elementor-widget elementor-widget-image\" data-id=\"de357c4\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"http:\/\/www.celosatequila.com\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Celosa_first.jpg\" class=\"attachment-large size-large wp-image-2077\" alt=\"\" srcset=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Celosa_first.jpg 595w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Celosa_first-212x300.jpg 212w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c71e32 elementor-widget elementor-widget-text-editor\" data-id=\"4c71e32\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h2><span style=\"color: #ffffff;\"><strong>International Sommelier LLC Announces Collaboration with Celosa Tequila<\/strong><\/span><\/h2><div><div>International Sommelier LLC is proud to announce an exciting new collaboration with Celosa Tequila, bringing together world-class beverage education and premium tequila craftsmanship.<\/div><div>\u00a0<\/div><div>This collaboration reflects a shared commitment to excellence, authenticity, and the elevation of the global spirits experience. By aligning International Sommelier LLC\u2019s deep expertise in tasting, training, and hospitality standards with Celosa Tequila\u2019s dedication to quality, heritage, and innovation, the partnership aims to create meaningful experiences for industry professionals and discerning consumers alike.<\/div><div>\u00a0<\/div><div>Founded in 2020, Celosa Tequila was conceptualized by Jose Alonso Beckmann\u2014stemming from a 12-generation tequila family that founded Jose Cuervo in 1795\u2014along with his cousin Javier Alonso and friend Paul Pietrini. Together, they set out with a mission to bring a new chapter to the tequila industry while retaining authenticity, craftsmanship, and uncompromising quality.<\/div><div>\u00a0<\/div><div>Together, International Sommelier LLC and Celosa Tequila will explore opportunities that celebrate tequila culture, highlight artisanal production, and foster a deeper appreciation for agave spirits through education, curated experiences, and collaborative initiatives.<\/div><div>\u00a0<\/div><div>More details on upcoming activations and programs will be shared in the months ahead.<\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d5efb31 e-flex e-con-boxed e-con e-parent\" data-id=\"d5efb31\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-c3ecf5c e-flex e-con-boxed e-con e-child\" data-id=\"c3ecf5c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-96b94b4 e-con-full e-flex e-con e-child\" data-id=\"96b94b4\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0c3de15 elementor-widget elementor-widget-text-editor\" data-id=\"0c3de15\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h2><span style=\"color: #ffffff;\"><strong>Allied Beverage Group and International Sommelier LLC Announce New Jersey Distribution Agreement for Moutai<\/strong><\/span><\/h2><div><strong>Elizabeth, NJ \u2014<\/strong>\u00a0Allied Beverage Group, New Jersey\u2019s leading wine and spirits distributor, in partnership with International Sommelier LLC, is proud to announce a new distribution agreement bringing Moutai, the iconic Chinese luxury baijiu brand, to the state of New Jersey.<\/div><div>\u00a0<\/div><div>Under this agreement, Allied Beverage Group will distribute Moutai throughout New Jersey, leveraging its extensive statewide sales network, logistics capabilities, and deep relationships within the on- and off-premise trade. International Sommelier LLC, the U.S. brand steward for Moutai, will continue to lead strategic brand development, education, and market positioning initiatives.<\/div><div>\u00a0<\/div><div>This collaboration represents a significant milestone in the continued expansion of Moutai in the United States and reflects a shared commitment to elevating global spirits culture within the New Jersey marketplace. Revered for its heritage, craftsmanship, and prestige, Moutai holds a unique position as China\u2019s most celebrated spirit and a symbol of excellence in the global luxury beverage category.<\/div><div>\u00a0<\/div><div>\u201cPartnering with Allied Beverage Group allows us to introduce Moutai to New Jersey with the level of care, expertise, and scale the brand deserves,\u201d said a representative of International Sommelier LLC. \u201cAllied\u2019s market leadership and executional strength make them an ideal partner to support long-term growth and education for this extraordinary spirit.\u201d<\/div><div>\u00a0<\/div><div>Allied Beverage Group echoed the enthusiasm, noting the growing consumer interest in premium and culturally significant spirits. \u201cMoutai is one of the most important luxury spirits in the world,\u201d said a spokesperson for Allied Beverage Group. \u201cWe are honored to work alongside International Sommelier LLC to bring this iconic brand to New Jersey and to support our customers with a truly distinctive offering.\u201d<\/div><div>\u00a0<\/div><div>The rollout will include a curated portfolio of Moutai expressions, supported by trade education, targeted activations, and experiential programming designed to introduce consumers and the trade to the history, ritual, and versatility of baijiu.<\/div><div>\u00a0<\/div><div>This partnership underscores Allied Beverage Group\u2019s ongoing commitment to expanding its world-class spirits portfolio and International Sommelier LLC\u2019s mission to build enduring, premium brands through education, authenticity, and strategic distribution.<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-111a97d e-con-full e-flex e-con e-child\" data-id=\"111a97d\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-81a976f elementor-widget elementor-widget-image\" data-id=\"81a976f\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"http:\/\/www.alliedbeverage.com\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new-300x300.png\" class=\"attachment-medium size-medium wp-image-2054\" alt=\"\" srcset=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new-300x300.png 300w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new-1024x1024.png 1024w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new-150x150.png 150w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new-768x767.png 768w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new-1536x1534.png 1536w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2026\/03\/Allied_logo_new.png 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-72c087b elementor-widget elementor-widget-image\" data-id=\"72c087b\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/ddliquor.com\/en\/about-us\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"233\" height=\"300\" src=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2025\/05\/moutai_logo-233x300.png\" class=\"attachment-medium size-medium wp-image-1744\" alt=\"\" srcset=\"https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2025\/05\/moutai_logo-233x300.png 233w, https:\/\/www.internationalsommelierllc.com\/wp-content\/uploads\/2025\/05\/moutai_logo.png 431w\" sizes=\"(max-width: 233px) 100vw, 233px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Become a Certified Chianti Classico Wine Expert\u200b Enroll Now and Earn Your Official Diploma\u00a0Are you ready to deepen your knowledge of one of Italy\u2019s most iconic wine regions and earn a credential that truly sets you apart?\u00a0We are proud to announce the opportunity to become a\u00a0Chianti Classico Wine Expert, an immersive educational journey designed for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-382","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=\/wp\/v2\/pages\/382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=382"}],"version-history":[{"count":579,"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=\/wp\/v2\/pages\/382\/revisions"}],"predecessor-version":[{"id":2222,"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=\/wp\/v2\/pages\/382\/revisions\/2222"}],"wp:attachment":[{"href":"https:\/\/www.internationalsommelierllc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}