<!doctype html>

<html data-show-bordered-box="false" data-gigya-api="3_62bCG7m365_saJ8Lqsbplm9rZDEABeZ5N18YlC-M7J1-rezFDzd1unK59uH2NAjB" data-captcha-api="6Ldh_hQUAAAAAHEVWPm5Zws143EljE-U5bPELrW9" class="theme-bg-page theme-bg-main no-js " lang="en-US" >
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Coca-Cola Journey Homepage: The Coca-Cola Company</title>
    <meta name="keywords" content="">
    <meta name="description" content="">
    <script type="text/javascript" src="/etc/clientlibs/granite/jquery.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/granite/utils.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/granite/jquery/granite.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/foundation/jquery.min.js"></script>



<script>
  // Javascript needed for Adobe Target
  function targetPageParams() {
    return {
      "at_property": "ee674506-9a36-406a-8762-8a2f9a6ba686"
    };
  }
</script>
<script type="text/javascript" src="https://s3.amazonaws.com/journey-shared/at.js">
                // Javascript needed for Adobe Target
</script>

<script type="application/ld+json">
                "ParentOrganization":{"@type" :"Corporation" ,"name" :"The <nobr>Coca-Cola</nobr> Company","url":"http://www.coca-colacompany.com"}</script>
        <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0" />
    <meta name="last-published-date" content="2018-07-16">
    <meta property="fb:app_id" content="878613815623821">
<meta property="og:type" content="article">
<meta property="og:site_name" content="The Coca-Cola Company">
<meta property="og:title" content="Coca-Cola Journey Homepage">
		<meta property="og:url" content="https://coca-colacompany.com/homepage/">
<meta name="fb:pages" content="542678889114683">
<meta name="google-site-verification" content="-9Ih0Na4DxFnxvCa9-j2MlF6gKITVGAlLZPmZP3rJ0Y">
<link rel="canonical" href="https://www.coca-colacompany.com/homepage">
            <link rel="shortcut icon" href="https://www.coca-colacompany.com/content/dam/journey/us/en/private/icons/coke-favicon.png">
            <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/content/dam/journey/us/en/private/icons/coke-apple-touch-icon.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/content/dam/journey/us/en/private/icons/coke-apple-touch-icon.rendition.72.72.png"/>
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/content/dam/journey/us/en/private/icons/coke-apple-touch-icon.rendition.57.57.png"/>
<meta name="apple-mobile-web-app-title" content="Journey">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">    
<link rel="stylesheet" href="/etc/designs/journey/main.min.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/libs/components/all.min.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/libs/components/extra.min.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/journey/theme/default.min.css" type="text/css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto+Condensed:400,300" type="text/css">
    <script type="text/javascript" src="//use.typekit.net/hep8iqb.js"></script>
        <script type="text/javascript">if(screen.width<=480){document.documentElement.className+=" mobile";}try{Typekit.load();}catch(e){}</script>

<script type="text/javascript" src="/etc/designs/journey/libs/modernizr.min.js"></script>
<style type="text/css">
.theme-bg-main {

background-color: #ffffff;

}
</style>

<meta property="fb:pages" content="542678889114683" />

<meta name="google-site-verification" content="q3-GME1YErZJWBSEFyohlpUWn4_fDnapsf2LbozTu-A" />

<script>
// https://tc39.github.io/ecma262/#sec-array.prototype.find
//polyfill for IE not recognize .find

if (!Array.prototype.find) {
  Object.defineProperty(Array.prototype, 'find', {
    value: function(predicate) {
     // 1. Let O be ? ToObject(this value).
      if (this == null) {
        throw new TypeError('"this" is null or not defined');
      }

      var o = Object(this);

      // 2. Let len be ? ToLength(? Get(O, "length")).
      var len = o.length >>> 0;

      // 3. If IsCallable(predicate) is false, throw a TypeError exception.
      if (typeof predicate !== 'function') {
        throw new TypeError('predicate must be a function');
      }

      // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
      var thisArg = arguments[1];

      // 5. Let k be 0.
      var k = 0;

      // 6. Repeat, while k < len
      while (k < len) {
        // a. Let Pk be ! ToString(k).
        // b. Let kValue be ? Get(O, Pk).
        // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
        // d. If testResult is true, return kValue.
        var kValue = o[k];
        if (predicate.call(thisArg, kValue, k, o)) {
          return kValue;
        }
        // e. Increase k by 1.
        k++;
      }

      // 7. Return undefined.
      return undefined;
    },
    configurable: true,
    writable: true
  });
}
</script>

<script>
//needed for EasyShare test in Target - CJ-891
</script>
<script src="https://cdns.gigya.com/js/gigya.js?apiKey=3_62bCG7m365_saJ8Lqsbplm9rZDEABeZ5N18YlC-M7J1-rezFDzd1unK59uH2NAjB&amp;cid=journey" class="lazyload" charset="utf-8"></script>
<script>
                function copyToClipboard() {
                    try {
                        selectElementText(document.getElementById("copyToClipboard"));
                        var successful = document.execCommand('copy');
                        var msg = successful ? 'successful' : 'unsuccessful';
                        console.log('Copying text command was ' + msg);
                    } catch (err) {
                        console.log('Oops, unable to copy');
                    }
                }

                function selectElementText(el) {
                    var win = window;
                    var doc = win.document,
                        sel, range;
                    if (win.getSelection && doc.createRange) {
                        sel = win.getSelection();
                        range = doc.createRange();
                        range.selectNodeContents(el);
                        sel.removeAllRanges();
                        sel.addRange(range);
                    } else if (doc.body.createTextRange) {
                        range = doc.body.createTextRange();
                        range.moveToElementText(el);
                        range.select();
                    }
                }
            </script>

                    <script>var w=window;if(w.performance||w.mozPerformance||w.msPerformance||w.webkitPerformance){var d=document;AKSB=w.AKSB||{},AKSB.q=AKSB.q||[],AKSB.mark=AKSB.mark||function(e,_){AKSB.q.push(["mark",e,_||(new Date).getTime()])},AKSB.measure=AKSB.measure||function(e,_,t){AKSB.q.push(["measure",e,_,t||(new Date).getTime()])},AKSB.done=AKSB.done||function(e){AKSB.q.push(["done",e])},AKSB.mark("firstbyte",(new Date).getTime()),AKSB.prof={custid:"490754",ustr:"",originlat:"0",clientrtt:"18",ghostip:"165.254.95.239",ipv6:false,pct:"10",clientip:"74.125.76.36",requestid:"80aedf0",region:"20269",protocol:"",blver:14,akM:"x",akN:"ae",akTT:"O",akTX:"1",akTI:"80aedf0",ai:"325185",ra:"false",pmgn:"",pmgi:"",pmp:"",qc:""},function(e){var _=d.createElement("script");_.async="async",_.src=e;var t=d.getElementsByTagName("script"),t=t[t.length-1];t.parentNode.insertBefore(_,t)}(("https:"===d.location.protocol?"https:":"http:")+"//ds-aksb-a.akamaihd.net/aksb.min.js")}</script>
                    </head><!--
         __                              ___   __        .ama     ,
      ,d888a                          ,d88888888888ba.  ,88"I)   d
     a88']8i                         a88".8"8)   `"8888:88  " _a8'
   .d8P' PP                        .d8P'.8  d)      "8:88:baad8P'
  ,d8P' ,ama,   .aa,  .ama.g ,mmm  d8P' 8  .8'        88):888P'
 ,d88' d8[ "8..a8"88 ,8I"88[ I88' d88   ]IaI"        d8[
 a88' ]P "bm8mP8'(8'.8I  8[      d88'    `"         .88
,88I ]P[  .I'.8     88' ,8' I[  ,88P ,ama    ,ama,  d8[  .ama.g
[88' I8, .I' ]8,  ,88B ,d8 aI   (88',88"8)  d8[ "8. 88 ,8I"88[
]88  `8888"  '8888" "88P"8m"    I88 88[ 8[ ]P "bm8m88[.8I  8[
]88,          _,,aaaaaa,_       I88 8"  8 ]P[  .I' 88 88' ,8' I[
`888a,.  ,aadd88888888888bma.   )88,  ,]I I8, .I' )88a8B ,d8 aI
  "888888PP"'        `8""""""8   "888PP'  `8888"  `88P"88P"8m"

Normand Veillieux

-->
<!-- Platform Version: 4.5.1 -->
<!-- Vanity Map Version: 4.5.1 -->
<!-- CloudSearch Version: 4.5.1 -->
<!-- Crosslinker Version:  -->
<!-- Video Ingestion Version:  -->
<!-- Journey Version: 4.5.1 -->

<body itemscope itemtype="http://schema.org/WebPage" data-date-format="MMM d, yyyy" data-vanity-paths='' data-vanity-url="" data-lambda-endpoint="" data-locale="us_en" data-lambda-endpoint-cloudsearchrecords="https://uc8sgmjzag.execute-api.us-east-1.amazonaws.com/prod/getCloudSearchRecords" data-author-mode="false" data-current-page-path="" data-awscloudendpoint="https://rif2f39i2m.execute-api.us-east-1.amazonaws.com" data-awsregion="us-east-1" data-awsversion="beta">
 
       <!-- Google Tag Manager --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-NP7TH9" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <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= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NP7TH9');</script> <!-- End Google Tag Manager -->
<div id="wrapper" data-role="page">
       <div class="authorWarning">
             <p class="warningIcon">
                    <i class="fa fa-exclamation-triangle" aria-hidden="true"></i>
             </p>
             <div class="vanityPathsList"></div>
       </div>
 
       <div class="RegionPulldown"><!--googleoff: all-->
<header id="global-header" class="has-packages ">
	<section id="global-hat" class="clearfix">
		<a id="mobile-menu"><i class="icon-reorder" aria-hidden="true"></i></a>
		<div class="vertically-centered">
			<a id="mobile-logo" href="/homepage">
				<img data-src='{
							"desktop":"/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_350x105.png",
							"tablet":"/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_350x105.png",
							"mobile":"/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_185x40.png"
						}' data-dimensions='{
							"desktop":"350_105",
							"tablet":"350_105",
							"mobile":"185_40"
						}' src="/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_185x40.png" alt="go-to-coca-cola-journey-home-page_350x105.png" class="hidden horizontally-centered"/>
				</a>
			</div>
  	</section>

	<section id="global-menu-items">
		<div id="header-container" role="navigation" aria-label="global_menu">
			<div class="trail RegionalCountrySelector parbase">



    <div id="regional-country-selector" class="sub-nav col col2 not-selectable">
        <ul class="link-list">
            <li class="showMap link-list-item vertically-centered sub-menu-wrapper">
                <a class="sub-menu-link">Locations <span class="region-selected"></span><i class="icon-caret-down" aria-hidden="true"></i><span class="sr-only">Locations</span></a>
            </li>
        </ul>
        <input type="hidden" id="isfrontPageTemplate" value="true" />
        <input type="hidden" id="isunbottledTemplate" value="false" />
    </div>
    <div class="country-sel-map hide">
        <div class="regions-container">
            <ul class="regions">
            
              <li class="regionLabel"><a data-region-name="africa">Africa</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="africa" href="https://www.coca-colaafrica.com/" target="_blank">Africa (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="africa" href="https://www.coca-colaafrique.com/" target="_blank">Africa (French)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="africa" href="https://fr.coca-colamaroc.ma" target="_blank">Morocco</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="asia-pacific">Asia Pacific</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-colajourney.com.au/" target="_blank">Australia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-cola.com.cn/" target="_blank">China</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-cola.hk/" target="_blank">Hong Kong</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-colaindia.com/" target="_blank">India</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.cocacola.co.id" target="_blank">Indonesia (Bahasa Indonesia)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://en.cocacola.co.id" target="_blank">Indonesia (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.cocacola.co.jp" target="_blank">Japan</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-cola.com.my/" target="_blank">Malaysia (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://bm.coca-cola.com.my" target="_blank">Malaysia (Malay)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-colajourney.co.nz/" target="_blank">New Zealand</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-cola.com.sg/" target="_blank">Singapore</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.coca-colajourney.co.kr" target="_blank">South Korea</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://en.cocacolavietnam.com/" target="_blank">Vietnam (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="asia-pacific" href="https://www.cocacolavietnam.com/" target="_blank">Vietnam (Vietnamese)</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="eurasia">Eurasia</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="https://ar.coca-colaarabia.com/" target="_blank">Middle East (Arabic)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="https://en.coca-colaarabia.com/" target="_blank">Middle East (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="https://www.coca-colajourney.com.pk/" target="_blank">Pakistan (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="eurasia" href="https://ur.coca-colajourney.com.pk/" target="_blank">Pakistan (Urdu)</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="europe">Europe</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola-oesterreich.at/" target="_blank">Austria</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://nl.cocacolabelgium.be/" target="_blank">Belgium (Dutch)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://fr.cocacolabelgium.be/" target="_blank">Belgium (French)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.bg/" target="_blank">Bulgaria</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.dk/" target="_blank">Denmark</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.fi/" target="_blank">Finland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola-france.fr/" target="_blank">France</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola-deutschland.de/" target="_blank">Germany</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.co.uk" target="_blank">Great Britain</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.hu/" target="_blank">Hungary</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.ie/" target="_blank">Ireland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-colaitalia.it/" target="_blank">Italy</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.cocacolanederland.nl/" target="_blank">Netherlands</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.no/" target="_blank">Norway</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.cocacolaportugal.pt/" target="_blank">Portugal</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.cocacola.com.pl/" target="_blank">Poland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-colarussia.ru" target="_blank">Russia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-colasrbija.rs/" target="_blank">Serbia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.cocacolaespana.es/" target="_blank">Spain</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.se/" target="_blank">Sweden</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-cola.ch" target="_blank">Switzerland</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="europe" href="https://www.coca-colaukraine.com/" target="_blank">Ukraine</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="latin-america">Latin America</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.cocacoladeargentina.com.ar" target="_blank">Argentina</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.coca-coladebolivia.com.bo" target="_blank">Bolivia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.cocacolabrasil.com.br/" target="_blank">Brazil</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.cocacoladechile.cl/" target="_blank">Chile</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="co">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.co.html" target="_blank">Colombia</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="cr">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.cr.html" target="_blank">Costa Rica</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="do">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.do.html" target="_blank">Dominican Republic</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="ec">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.ec.html" target="_blank">Ecuador</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="sv">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.sv.html" target="_blank">El Salvador</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="gt">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.gt.html" target="_blank">Guatemala</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="hn">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.hn.html" target="_blank">Honduras</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.coca-colamexico.com.mx/" target="_blank">Mexico</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="ni">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.ni.html" target="_blank">Nicaragua</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="pa">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.pa.html" target="_blank">Panama</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.coca-coladeparaguay.com.py/" target="_blank">Paraguay</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.cocacoladeperu.com.pe" target="_blank">Peru</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://www.coca-coladeuruguay.com.uy/" target="_blank">Uruguay</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="ve">
                      	
							<a class="sitelink" data-region-name="latin-america" href="https://journey.coca-cola.com/homepage.ve.html" target="_blank">Venezuela</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
              <li class="regionLabel"><a data-region-name="north-america">North America</a>
                <ul class="sites">
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="north-america" href="https://www.coca-colacompany.com" target="_blank">Global</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="north-america" href="https://www.coca-cola.ca" target="_blank">Canada (English)</a>
						
						
                  </li>
                  
                  <li data-regional-country-code="">
                      	
							<a class="sitelink" data-region-name="north-america" href="https://fr.coca-cola.ca" target="_blank">Canada (French)</a>
						
						
                  </li>
                  
                </ul>
              </li>
            
            </ul>            
        </div>
        <div class="map-container">
                   <img data-src='{
           "desktop":"../../../../../../etc/designs/journey/main/images/regional-map-desktop1.png",
           "tablet":"../../../../../../etc/designs/journey/main/images/regional-map-desktop.png"}' src="../../../../../../etc/designs/journey/main/images/regional-map-desktop1.png" alt="World map">
             <div class="overlay" data-class-region=""></div>
        </div>           
    </div>  
    <div class="desktop-tablet-sub-menu" id="js-regional-country-menu">
        <div class="content-bounds">
            <ul class="section-column">
                <li class="primary">
                    <a>Locations <span class="region-selected"></span></a>
                </li>
            </ul>
        </div>
    </div>    


</div>
<div class="flyout parbase CorporateFlyout"><div class="sub-nav col col1 not-selectable">
    <ul class="link-list">
      <div class="Nav"><li class="link-list-item vertically-centered">
    <a href="/investors" id="investors-link">
	<span itemprop="name" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}'>Investors</span>
    </a>
</li>
    </div>
<li class="link-list-item our-company vertically-centered sub-menu-wrapper" data-linked-menu-id="js-company-menu">
            <span class="bar">|</span>
            <a class="sub-menu-link">
                <span itemprop="name" data-override-size="" data-title='{"desktop":"<nobr>The <nobr>Coca-Cola</nobr> Company</nobr> <strong class=\"theme-secondary knockout-bgcolor\"></strong>","tablet":"<nobr>The <nobr>Coca-Cola</nobr> Company</nobr> <strong class=\"theme-secondary knockout-bgcolor\"></strong>","mobile":"<nobr></nobr> <strong class=\"theme-secondary knockout-bgcolor\"></strong>"}' class="">
                    <nobr>The <nobr>Coca-Cola</nobr> Company</nobr> <strong class="theme-secondary knockout-bgcolor"></strong></span>
                <i class="icon-caret-down" aria-hidden="true"></i>
            </a>
        </li>
	  </ul>
</div>
<div class="desktop-tablet-sub-menu" id="js-company-menu">
    <div class="content-bounds">
        <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Our Company","tablet":"Our Company","mobile":"Our Company"}' class="">Our Company</span>
                </a>
            </li>
            <li>
			       	    <a href="/our-company">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Our Company Main","tablet":"Our Company Main","mobile":"Our Company Main"}' class="">Our Company Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/our-company/about-coca-cola-journey">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"About <nobr>Coca-Cola</nobr> Journey","tablet":"About <nobr>Coca-Cola</nobr> Journey","mobile":"About <nobr>Coca-Cola</nobr> Journey"}' class="">About <nobr>Coca-Cola</nobr> Journey</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/mission-vision-values">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Mission, Vision & Values","tablet":"Mission, Vision & Values","mobile":"Mission, Vision & Values"}' class="">Mission, Vision & Values</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/diversity">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Diversity & Inclusion","tablet":"Diversity & Inclusion","mobile":"Diversity & Inclusion"}' class="">Diversity & Inclusion</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/human-and-workplace-rights">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Human and Workplace Rights","tablet":"Human and Workplace Rights","mobile":"Human and Workplace Rights"}' class="">Human and Workplace Rights</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/workplace-overview">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Workplace Overview","tablet":"Workplace Overview","mobile":"Workplace Overview"}' class="">Workplace Overview</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/suppler-diversity">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Supplier Diversity","tablet":"Supplier Diversity","mobile":"Supplier Diversity"}' class="">Supplier Diversity</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/leadership">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Leaders","tablet":"Coca-Cola Leaders","mobile":"Coca-Cola Leaders"}' class="">Coca-Cola Leaders</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/company-reports">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Company Reports","tablet":"Company Reports","mobile":"Company Reports"}' class="">Company Reports</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/the-coca-cola-system">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"The <nobr>Coca-Cola</nobr> System","tablet":"The <nobr>Coca-Cola</nobr> System","mobile":"The <nobr>Coca-Cola</nobr> System"}' class="">The <nobr>Coca-Cola</nobr> System</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/company-history">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Company History","tablet":"Company History","mobile":"Company History"}' class="">Company History</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/coca-cola-product-facts">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Product Facts (U.S.)","tablet":"Coca-Cola Product Facts (U.S.)","mobile":"Coca-Cola Product Facts (U.S.)"}' class="">Coca-Cola Product Facts (U.S.)</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/the-coca-cola-foundation-giving-back">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"The <nobr>Coca-Cola</nobr> Foundation","tablet":"The <nobr>Coca-Cola</nobr> Foundation","mobile":"The <nobr>Coca-Cola</nobr> Foundation"}' class="">The <nobr>Coca-Cola</nobr> Foundation</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/world-of-coca-cola">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"World of <nobr>Coca-Cola</nobr>","tablet":"World of <nobr>Coca-Cola</nobr>","mobile":"World of <nobr>Coca-Cola</nobr>"}' class="">World of <nobr>Coca-Cola</nobr></span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/our-company/coca-cola-store">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Store","tablet":"Coca-Cola Store","mobile":"Coca-Cola Store"}' class="">Coca-Cola Store</span>
	                        </a>
	                    </li>
	               </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}' class="">Investors</span>
                </a>
            </li>
            <li>
			       	    <a href="/investors">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Main","tablet":"Investors Main","mobile":"Investors Main"}' class="">Investors Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/investors/ar-2017">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"2017 Annual Review","tablet":"2017 Annual Review","mobile":"2017 Annual Review"}' class="">2017 Annual Review</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-reports-and-financial-information">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: Financial Reports and Information","tablet":"Investors Info: Financial Reports and Information","mobile":"Financial Reports and Information"}' class="">Investors Info: Financial Reports and Information</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-stock-information">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: Stock Information","tablet":"Investors Info: Stock Information","mobile":"Stock Information"}' class="">Investors Info: Stock Information</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-investor-webcasts-and-events">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: Investor Webcasts and Events","tablet":"Investors Info: Investor Webcasts and Events","mobile":"Investor Webcasts and Events"}' class="">Investors Info: Investor Webcasts and Events</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/shareowner-information">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Shareowner Information","tablet":"Shareowner Information","mobile":"Shareowner Information"}' class="">Shareowner Information</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/corporate-governance">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Corporate Governance","tablet":"Corporate Governance","mobile":"Corporate Governance"}' class="">Corporate Governance</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/investors/investors-info-sec-filings">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors Info: SEC Filings","tablet":"Investors Info: SEC Filings","mobile":"Investors Info: SEC Filings"}' class="">Investors Info: SEC Filings</span>
	                        </a>
	                    </li>
	               </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Press Center","tablet":"Press Center","mobile":"Press Center"}' class="">Press Center</span>
                </a>
            </li>
            <li>
			       	    <a href="/press-center">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Center Main","tablet":"Press Center Main","mobile":"Press Center Main"}' class="">Press Center Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/press-center/press-releases">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Releases","tablet":"Press Releases","mobile":"Press Releases"}' class="">Press Releases</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/company-statements">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Company Statements","tablet":"Company Statements","mobile":"Company Statements"}' class="">Company Statements</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/leadership">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Leadership","tablet":"Leadership","mobile":"Leadership"}' class="">Leadership</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/a-v-library">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Video Library","tablet":"Video Library","mobile":"Video Library"}' class="">Video Library</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/image-library">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Image Library","tablet":"Image Library","mobile":"Image Library"}' class="">Image Library</span>
	                        </a>
	                    </li>
	               <li>
	                        <a href="/press-center/press-contacts">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Contacts","tablet":"Press Contacts","mobile":"Press Contacts"}' class="">Press Contacts</span>
	                        </a>
	                    </li>
	               </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Careers","tablet":"Careers","mobile":"Careers"}' class="">Careers</span>
                </a>
            </li>
            <li>
			       	    <a href="/careers">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Careers Main","tablet":"Careers Main","mobile":"Careers Main"}' class="">Careers Main</span>
                             </a>
                        </li>
                     </ul>
           <ul class=" section-column ">   
            <li class="primary">
    	<a href="http://www.coca-colacompany.com/our-company/"><span itemprop="name" data-override-size="" data-title='{"desktop":"Contact Us","tablet":"Contact Us","mobile":"Contact Us"}' class="">Contact Us</span>
                </a>
            </li>
            <li>
			       	    <a href="/contact-us">
			                <span itemprop="name" data-override-size="" data-title='{"desktop":"Contact Us Main","tablet":"Contact Us Main","mobile":"Contact Us Main"}' class="">Contact Us Main</span>
                             </a>
                        </li>
                     <li>
	                        <a href="/contact-us/faqs">
	                            <span itemprop="name" data-override-size="" data-title='{"desktop":"FAQs","tablet":"FAQs","mobile":"FAQs"}' class="">FAQs</span>
	                        </a>
	                    </li>
	               </ul>
           </div>
</div></div>
<div class="sub-nav col col0">
				<div class="CloudSearchBox cloudSearch"><div class="search-box" role="search" aria-labelledby="search">
    <div id="search">
    	<form action="/search" id="cloudsearch" accept-charset="UTF-8">
        	<input type="text" name="q" id="q" value="" placeholder="Search" class="search-query-field" autocomplete="off" aria-label="Search">
        	<div class="icon-container"><i class="icon-search" aria-hidden="true"></i> <span class="sr-only">Search</span></div>
        </form>
    </div>
</div></div>
</div>
		</div>

		<section id="global-banner" class="hidden-phone">
			<div class="container">
				<div class="vertically-centered">
						<a href="/homepage">
							<img data-src='{
										"desktop":"/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_350x105.png",
										"tablet":"/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_350x105.png",
										"mobile":"/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_185x40.png"
									}' data-dimensions='{
										"desktop":"350_105",
										"tablet":"350_105",
										"mobile":"185_40"
									}' src="/content/dam/journey/us/en/private/icons/go-to-coca-cola-journey-home-page_185x40.png" alt="go-to-coca-cola-journey-home-page_350x105.png" title="" class="hidden horizontally-centered"/>
							</a>
					</div>
				</div>
		</section>

		<div class="TopNavigation parbase topNav"><section id="global-section-nav" role="navigation" aria-label="top_menu">
    <nav class="container clearfix">
    <ul class="sections" data-total-sections="6">
    <li class="section">
       	    <a tabindex="1" href="/homepage" class="active section-link first">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"Front Page<strong class=\"theme-secondary\"></strong>",
						"tablet":"Front Page<strong class=\"theme-secondary\"></strong>",
						"mobile":"Front Page<strong class=\"theme-secondary\"></strong>"}'>
							
						Front Page<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="2" href="/brands" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"tablet":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"mobile":"BRANDS<strong class=\"theme-secondary\"></strong>"}'>
							
						BRANDS<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="3" href="/our-way-forward" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"tablet":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"mobile":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>"}'>
							
						OUR WAY FORWARD<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="4" href="/sustainability" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"tablet":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"mobile":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>"}'>
							
						SUSTAINABILITY<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="5" href="/innovation" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"tablet":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"mobile":"INNOVATION<strong class=\"theme-secondary\"></strong>"}'>
							
						INNOVATION<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        <li class="section">
       	    <a tabindex="6" href="/history" class=" section-link ">
					<div class="section-link-text">
					<span itemprop="name" data-override-size="" data-title='{
						"desktop":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"tablet":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"mobile":"HISTORY<strong class=\"theme-secondary\"></strong>"}'>
							
						HISTORY<strong class="theme-secondary"></strong></span>
                </div>
            </a>
        </li>
        </ul>
	</nav>
</section>
</div>
<div class="Nav"><section id="global-package-nav" class="collapsed">
        <div class="container">
            <ul class="packages" data-total-packages="5">
                <li class="package first" data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/fifa-world-cup" class="package-link " data-has-tooltip="false">
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"2018 FIFA World Cup Russia","tablet":"2018 FIFA World Cup Russia","mobile":"2018 FIFA World Cup Russia"}'
                                    class="">2018 FIFA World Cup Russia</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/commitment" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"#CocaColaRenew","tablet":"#CocaColaRenew","mobile":"#CocaColaRenew"}'
                                    class="">#CocaColaRenew</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/ekocenter" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"EKOCENTER","tablet":"EKOCENTER","mobile":"EKOCENTER"}'
                                    class="">EKOCENTER</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/annual-review-2017" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"2017 Annual Review","tablet":"2017 Annual Review","mobile":"2017 Annual Review"}'
                                    class="">2017 Annual Review</span>
                                </div>
                    </a>
                </li><li class="package " data-package-id="#"> <!-- keep </li><li> together -->
                    <a href="/transparency" class="package-link " data-has-tooltip="false">
                        <i class="package-link-separator icon-circle" aria-hidden="true"></i>
                        <div class="package-link-text">
                            <span itemprop="name" data-override-size=""
                                    data-title='{"desktop":"Commitment to Transparency","tablet":"Commitment to Transparency","mobile":"Commitment to Transparency"}'
                                    class="">Commitment to Transparency</span>
                                </div>
                    </a>
                </li><!-- keep </li><li> together -->
            </ul>
        </div>
    </section>
    <div class="fold fold-left"></div>
    <div class="fold fold-right"></div>
</div>
</section>
</header>
<!--googleon: all-->
</div>
<h1 class="tccc-seo-nfop">FRONT PAGE</h1>
<div class="wrapper home-wrap" role="contentinfo">
    <div class="Breadcrumbs breadcrumbs"></div>
<div class="grid home-page">
    <div class="row">
        <div class="parsys heroSlideshowPar"><div class="ReferenceParagraph section"><div class="TwoWide"><article class="hero-module-article">
		<div class="module module-slideshow">
			<div class="media-container hero-module-container" data-auto-play="true">
				<div class="center-view-container">
					<div class="royalSlider rsHeroStyle rsDefault">
						<div data-index="1" class="slideshow_item first">
								<a href="/stories/coca-cola-north-americas-tea-portfolio-includes-brands-for-all-tastes" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/08/herodesktopteaportfolio.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/08/herodesktopteaportfolio.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/08/herodesktopteaportfolio.rendition.290.190.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/08/herodesktopteaportfolio.rendition.290.190.jpg" alt="RTD Tea Hero" title="Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes "/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/08/herodesktopteaportfolio.rendition.111.73.jpg" alt="RTD Tea Hero"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes ",
										"tablet":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes ",
										"mobile":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes "}'>
										Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes </p>
									<p class="summary">From organic, fair trade-certified teas to sweeter, more fruit-forward varieties, <nobr>Coca-Cola</nobr> North America’s beverage portfolio offers something for all tea fans.The ready-to-drink (RTD) tea category is projected to grow five times faster than the total nonalcoholic ready-to-drink (NARTD) industry over <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="2" class="slideshow_item first">
								<a href="/stories/gallery--coca-cola-share-chair-dispenses-ice-cold-coke-and-summe0" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/08/herodesktopsharechair3.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/08/herodesktopsharechair3.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/08/herodesktopsharechair3.rendition.290.190.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/08/herodesktopsharechair3.rendition.290.190.jpg" alt="Share Chair Hero" title="Gallery: ‘Share Chair’ Dispenses Ice-Cold Coca-Cola and Summer Memories"/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/08/herodesktopsharechair3.rendition.111.73.jpg" alt="Share Chair Hero"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories",
										"tablet":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories",
										"mobile":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories"}'>
										Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories</p>
									<p class="summary">“Share a Coke” returned for its fifth consecutive summer with more beverages, packages, experiences, sharing opportunities – and a few surprises. This year’s iteration of the hit campaign focused on the role <nobr>Coca-Cola</nobr> plays in the special summer moments shared with others.This summer marked the premiere <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="3" class="slideshow_item first">
								<a href="/stories/coca-cola-earnings-6-questions-with-chief-growth-officer-francisco-crespo" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/07/herodesktopcrespo.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/07/herodesktopcrespo.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/07/herodesktopcrespo.rendition.290.190.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/07/herodesktopcrespo.rendition.290.190.jpg" alt="Francisco Crespo Q2 Earnings Hero" title="Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo"/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/07/herodesktopcrespo.rendition.111.73.jpg" alt="Francisco Crespo Q2 Earnings Hero"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo",
										"tablet":"Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo",
										"mobile":"Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo"}'>
										Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo</p>
									<p class="summary">Coca-Cola reported second quarter 2018 earnings today. While earnings are a report card on short-term results, they also say a lot about progress toward longer-term strategies.We asked Francisco Crespo, the company’s chief growth officer, to talk about the big picture at <nobr>Coca-Cola</nobr>.How do you describe <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="4" class="slideshow_item first">
								<a href="/stories/success--failure-and-zombie-hunting" title="Success, Failure and ">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/07/herodesktopzombie.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/07/herodesktopzombie.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/07/herodesktopzombie.rendition.290.190.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/07/herodesktopzombie.rendition.290.190.jpg" alt="Success, Failure and " title="Success, Failure and Zombie Hunting"/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/07/herodesktopzombie.rendition.111.73.jpg" alt="herodesktopzombie.jpg"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"Success, Failure and Zombie Hunting",
										"tablet":"Success, Failure and Zombie Hunting",
										"mobile":"Success, Failure and Zombie Hunting"}'>
										Success, Failure and Zombie Hunting</p>
									<p class="summary">Few things in business are more frustrating to me than when I see failure without learning. While failures are inevitable, it’s a waste if we don’t use failure as a basis to learn and improve.When we don’t learn, we end up with zombies.Here’s what I mean. Most businesses have what is called a long <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="5" class="slideshow_item first">
								<a href="/stories/watch-coca-cola-presents-one-last-summer-docuseries" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/07/herodesktoponelastsummer3.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/07/herodesktoponelastsummer3.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/07/herodesktoponelastsummer3.rendition.290.190.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/07/herodesktoponelastsummer3.rendition.290.190.jpg" alt="One Last Summer Hero" title="‘The Real World’ Meets ‘The Real Thing’: Coca-Cola Debuts ‘One Last Summer’ Docuseries"/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/07/herodesktoponelastsummer3.rendition.111.73.jpg" alt="One Last Summer Hero"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries",
										"tablet":"‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries",
										"mobile":"‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries"}'>
										‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries</p>
									<p class="summary">In a new digital docuseries titled “One Last Summer”, <nobr>Coca-Cola</nobr> tags along with a group of friends in Plainfield, Illinois, as they share their last few months together before heading off to college.Over the course of four 10-minute episodes – which are rolling out on the <nobr>Coca-Cola</nobr> YouTube channel <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="6" class="slideshow_item first">
								<a href="/stories/how-digital-technology-and-big-data-can-accelerate-coke-north-am" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/06/herodesktopdigitaltech.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/06/herodesktopdigitaltech.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/06/herodesktopdigitaltech.rendition.290.190.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/06/herodesktopdigitaltech.rendition.290.190.jpg" alt="Beverage Digest Hero " title="How Digital Technology and Big Data Can Accelerate Coke North America’s Innovation Strategy"/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/06/herodesktopdigitaltech.rendition.111.73.jpg" alt="Beverage Digest Hero "/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"How Digital Technology and Big Data Can Accelerate Coke North America’s Innovation Strategy",
										"tablet":"How Digital Technology and Big Data Can Accelerate Coke North America’s Innovation Strategy",
										"mobile":"How Digital Technology and Big Data Can Accelerate Coke North America’s Innovation Strategy"}'>
										How Digital Technology and Big Data Can Accelerate Coke North America’s Innovation Strategy</p>
									<p class="summary">NEW YORK – <nobr>Coca-Cola</nobr> North America is finding more ways than ever to ensure its beverages are within an “arm’s reach of desire” in today’s fast-moving marketplace through product innovation, new distribution channels and data-driven decision making, according to Chaly Jo Moyen, SVP of strategy, planning <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="7" class="slideshow_item first">
								<a href="/stories/dear-future-community-challenge" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/06/herodearfuture.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/06/herodearfuture.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/06/herodearfuture.jpg/_jcr_content/renditions/mobile.herodearfuture.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/06/herodearfuture.jpg/_jcr_content/renditions/mobile.herodearfuture.jpg" alt="Dear Future - Coca-Cola Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities" title="Dear Future: Coca-Cola Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities"/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/06/herodearfuture.rendition.111.73.jpg" alt="Dear Future - Coca-Cola Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"Dear Future: <nobr>Coca-Cola</nobr> Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities",
										"tablet":"Dear Future: <nobr>Coca-Cola</nobr> Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities",
										"mobile":"Dear Future: <nobr>Coca-Cola</nobr> Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities"}'>
										Dear Future: <nobr>Coca-Cola</nobr> Co. USA Calls on Young Adults for Change-Making Ideas to Renew Local Communities</p>
									<p class="summary">A <nobr>Coca-Cola</nobr> USA campaign that began as a humble reintroduction has evolved into a community-focused call to action.This summer, The <nobr>Coca-Cola</nobr> Company and its family of 68 independently owned bottlers across the country are inviting young Americans to help deliver a better tomorrow through the “Dear <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						<div data-index="8" class="slideshow_item first">
								<a href="/stories/dear-future" title="">
								<img data-src='{
											"desktop":"/content/dam/journey/us/en/private/2018/06/herousalocal.jpg",
											"tablet":"/content/dam/journey/us/en/private/2018/06/herousalocal.jpg",
											"mobile":"/content/dam/journey/us/en/private/2018/06/herousalocal.jpg/_jcr_content/renditions/mobile.herousalocal.jpg"
										}' data-dimensions='{
											"desktop":"692_452",
											"tablet":"692_452",
											"mobile":"290_190"
										}' src="/content/dam/journey/us/en/private/2018/06/herousalocal.jpg/_jcr_content/renditions/mobile.herousalocal.jpg" alt="Coca-Cola Co. USA Goes Even More Local - Focuses on Community Action" title="Coca-Cola Co. USA Goes Even More Local, Focuses on Community Action in Next Wave of Company Communications Effort "/>
								</a>
								<div class="rsTmb">
									<img src="/content/dam/journey/us/en/private/2018/06/herousalocal.rendition.111.73.jpg" alt="Coca-Cola Co. USA Goes Even More Local - Focuses on Community Action"/>
								</div>
								<div class="rsCaption hidden">
									<p class="title" data-title='{
										"desktop":"Coca-Cola Co. USA Goes Even More Local, Focuses on Community Action in Next Wave of Company Communications Effort ",
										"tablet":"Coca-Cola Co. USA Goes Even More Local, Focuses on Community Action in Next Wave of Company Communications Effort ",
										"mobile":"Coca-Cola Co. USA Goes Even More Local, Focuses on Community Action in Next Wave of Company Communications Effort "}'>
										Coca-Cola Co. USA Goes Even More Local, Focuses on Community Action in Next Wave of Company Communications Effort </p>
									<p class="summary">Americans will get to know more of their <nobr>Coca-Cola</nobr> neighbors this summer via the next phase of a multi-channel communications initiative highlighting the company’s growing portfolio of beverages and the good <nobr>Coca-Cola</nobr> people do in communities across the country.A new commercial called “Dear Future”, <strong class="theme-secondary theme-color-primary"></strong></p>
							<div class="fadeout-vert"></div>
								</div>
								</div>
						</div>



					<div class="hero-slideshow-nav-left side-navigation-colum left">
						<div class="mask-visiblenearby left"></div>
						<i class="icon-chevron icon-chevron-left" aria-hidden="true"></i>
					</div>
					<div class="hero-slideshow-nav-right side-navigation-colum right">
						<div class="mask-visiblenearby right"></div>
						<i class="icon-chevron icon-chevron-right" aria-hidden="true"></i>
					</div>

				</div>
			</div>
		</div>

		<section class="thumbseeker" data-num-thumbnails="8">
			<div class="skip-button skip-reverse"><i class="icon icon-double-angle-left" aria-hidden="true"></i></div>
			<div class="thumb-container"></div>
			<div class="skip-button skip-forward"><i class="icon icon-double-angle-right" aria-hidden="true"></i></div>
		</section>
	</article>
</div>
</div>

</div>
</div>
    <div class="row">
        <div class="parsys gridTopicFiltersPar"><div class="ReferenceParagraph section"><div class="GridTopicFilters gridtopicfilters"><div class="grid-topic-filters">
    <h4 class="headline-section">
        <span itemprop="name" data-title='{"desktop":"Just Poured<strong class=\"theme-secondary \"></strong>","tablet":"Just Poured<strong class=\"theme-secondary\"></strong>","mobile":"Just Poured<strong class=\"theme-secondary\"></strong>"}'>
            Just Poured<strong class="theme-secondary "></strong>
        </span>
    </h4>
    <div class="grid-topic-wp">
        <div class="container">
            <div class="scroller scroller-left"><i class="icon-chevron icon-chevron-left"></i></div>
            <div class="scroller scroller-right"><i class="icon-chevron icon-chevron-right"></i></div>
            <div class="navListwrapper">
                <ul class="categories justPoured-Nav-list theme-color-primary">
                <li class="topic-list">
                                <a data-id="Featured" class="selected" data-topic="/content/journey/us/en/homepage/just-poured/featured/_jcr_content/pageContent/topicfilter.html">Featured</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Business" class="" data-topic="/content/journey/us/en/homepage/just-poured/business/_jcr_content/pageContent/topicfilter.html">Business</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Brands" class="" data-topic="/content/journey/us/en/homepage/just-poured/brands/_jcr_content/pageContent/topicfilter.html">Brands</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Diversity" class="" data-topic="/content/journey/us/en/homepage/just-poured/diversity/_jcr_content/pageContent/topicfilter.html">Diversity</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Food" class="" data-topic="/content/journey/us/en/homepage/just-poured/food/_jcr_content/pageContent/topicfilter.html">Food</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="History" class="" data-topic="/content/journey/us/en/homepage/just-poured/history/_jcr_content/pageContent/topicfilter.html">History</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Innovation" class="" data-topic="/content/journey/us/en/homepage/just-poured/innovation/_jcr_content/pageContent/topicfilter.html">Innovation</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Jobs" class="" data-topic="/content/journey/us/en/homepage/just-poured/jobs/_jcr_content/pageContent/topicfilter.html">Jobs</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Sports" class="" data-topic="/content/journey/us/en/homepage/just-poured/sports/_jcr_content/pageContent/topicfilter.html">Sports</a>
                                    </li>
                        <li class="topic-list">
                                <a data-id="Sustainability" class="" data-topic="/content/journey/us/en/homepage/just-poured/sustainability/_jcr_content/pageContent/topicfilter.html">Sustainability</a>
                                    </li>
                        </ul>
            </div>
        </div>      
    </div>
        <div id="topic-container" data-featured-page-full-path="/content/journey/us/en/homepage/just-poured/featured">
            <div class="TwoWide"><div class="grid-topic-filters ">
	<div class = "grid-topic-main" data-topicFilterPagePath="/content/journey/us/en/homepage" data-isPublishMode="true">
	<div class="grid-topic-wp">
		<div class="tf-grid">
			<div class="thcc-component-wp space-side space-btn">
				<div class="TopicHeroCategoryCallout callout-hero"><div class="topic-hero-category-callout horizontalLayout">
	<a href="/stories/lighting-up-for-inclusion-coca-cola-turns-atlanta-hq-red-to-celebrate-special-olympics-50th-anniversary" target="">
			<img data-src='{
					"desktop":"/content/dam/journey/us/en/private/2018/07/herodesktoplightingup.rendition.692.432.jpg",
					"tablet":"/content/dam/journey/us/en/private/2018/07/herodesktoplightingup.rendition.692.432.jpg",
					"mobile":"/content/dam/journey/us/en/private/2018/07/herodesktoplightingup.rendition.320.196.jpg"
				}' data-dimensions='{
					"desktop":"692_432",
					"tablet":"692_432",
					"mobile":"320_196"
				}' src="/content/dam/journey/us/en/private/2018/07/herodesktoplightingup.rendition.320.196.jpg" alt="herodesktoplightingup.jpg" title="herodesktoplightingup.jpg" style="border-right:7px solid #3abdde"/>
		</a>

		<div class= "horizontalLayout_wrapper">
				<span class= "horizontalLayout_banner" style="color:#3abdde" >community</span>
				<span class="topicCategorySummaryText">The <nobr>Coca-Cola</nobr> Company’s global headquarters in Atlanta and iconic sign in London’s Piccadilly Circus are turning red – not to celebrate its flagship brand, but as part of a worldwide display of unity commemorating the 50th anniversary of Special Olympics.
More than 170 landmarks around the world – from Niagara Falls in the U.S. and Canada, to the Sydney Opera House in Australia – will participate in the Light Up for Inclusion initiative, creating a global display of tolerance, respect and celebration of difference. See the full list here.

 
 
The top 15 floors of the company’s North Avenue tower will be bathed in red light through tonight, and a special animation on London’s Coke’s Piccadilly Circus sign is paying tribute to Special Olympics’ 50th anniversary and the brand’s role as a founding partner of Special Olympics International.



The movement signals the start of the Inclusion Revolution: Special Olympics’ mission to end discrimination against people with intellectual disabilities (ID) worldwide and create inclusive communities.
Light Up for Inclusion is part of the the Special Olympics 50th Anniversary Celebration taking place this week in Chicago, where Special Olympics athletes, coaches, supporters and celebrities from around the world will commemorate 50 years of joy, courage and empowerment. The first International Special Olympics Summer Games were held at Chicago’s Soldier Field in July 1968.
Mary Davis, Special Olympics International CEO, said Light Up for Inclusion symbolizes the continuation and evolution of Special Olympics’ mission. “As we charge into the next 50 years with a renewed purpose of ending discrimination, we are encouraging people across the globe to join us and help create a fully inclusive world,” she said.
Francesca Aguilar, global sponsorships manager, <nobr>Coca-Cola</nobr>, added, “This is a testament to the power of Special Olympics and how we can all work together to inspire a culture of inclusion where everyone recognizes the value people with intellectual disabilities bring to the workplace, communities and society. Special Olympics has done a great job in educating the world about its mission, and now we will continue to do our part to inspire and take action in the next 50 years.”

Coca-Cola renewed its commitment to fostering inclusion and understanding this year by employing a pair of individuals with intellectual disabilities to support its role in the 2018 Special Olympics USA Games, which took place earlier this month in Seattle. Matthew Wynne worked with The <nobr>Coca-Cola</nobr> Company in Atlanta, and Marcia Barret supported <nobr>Coca-Cola</nobr> Swire. The company also hired Daniel Barich as a 2018 Special Olympics Storytelling Intern to bring the Games to life on <nobr>Coca-Cola</nobr> Journey and social media.
“Coca-Cola’s shared values with Special Olympics are inclusion, optimism and moments of happiness, and as a founding partner, it’s crucial that we embrace individuals with intellectual disabilities in all aspects of our partnership and work,” said Becki Cedrone, director, community marketing, <nobr>Coca-Cola</nobr> North America. “We must break the paradigm and think differently when filling positions. Individuals with intellectual disabilities should be given more opportunities.”
The 2019 Special Olympics World Summer Games will take place in Abu Dhabi in March. More than 7,000 Special Olympics athletes representing over 170 countries will compete.
</span>
				</div>
		<div class="banner " style="background:#3abdde">
			<span>community</span>
		</div>
	</div>
</div>
</div>
			<div class="thps-component-wp space-btn">
				<div class="thps-component TopicHeroPromoSpace"><div class="topic-hero-promo-space " itemscope itemtype="http://schema.org/ItemList">
    <a href="/ugc/jump-in-ugc-image-uploader" target="" title="SUBMIT NOW!">
            <img data-src='{
                    "desktop":"/content/dam/journey/us/en/private/2016/03/cokemomentsUGC.png",
                    "tablet":"/content/dam/journey/us/en/private/2016/03/cokemomentsUGC.png",
                    "mobile":"/content/dam/journey/us/en/private/2016/03/cokemomentsUGC.rendition.138.138.png"
                }' data-dimensions='{
                    "desktop":"310_310",
                    "tablet":"310_310",
                    "mobile":"138_138"
                }' src="/content/dam/journey/us/en/private/2016/03/cokemomentsUGC.rendition.138.138.png" style="border-right-color:Red" alt="SUBMIT NOW!"/>
        </a>
        <div class="topic-content">
            <div class="theme-contrast theme-bg-primary topic-headline" style="background-color:Red">
                    <strong class="theme-color-primary">
                        <span itemprop="name" data-title='{
                            "desktop":"SUBMIT NOW!",
                            "tablet":"SUBMIT NOW!",
                            "mobile":"SUBMIT NOW!"}'>SUBMIT NOW!</span>
                    </strong>
                </div>
                <div class="topic-headline no-background">
                    <strong class="theme-color-secondary" style="color:Red">
                        <span itemprop="name" data-title='{
                             "desktop":"SUBMIT NOW!",
                             "tablet":"SUBMIT NOW!",
                             "mobile":"SUBMIT NOW!"}'>SUBMIT NOW!</span>
                    </strong>
                </div>
            <p class="description theme-font-secondary">
                <a href="/ugc/jump-in-ugc-image-uploader">What makes an everyday moment a 'Coca-Cola Moment'? Submit your best pics and show us!</a></p>
        </div>
    </div>
</div>
</div>
			<div class="mp-component-wp space-side space-btn">
				<div class="MostPopular mp-component"><form>
    <input id="homepagetemplateType" type="hidden" value='true'/>
    <input id="articlepageTemplatetype" type="hidden" value='false'/>
    <input id="unbottlePageTemplateType" type="hidden" value='false'/>
    <input id="openerPageTemplateType" type="hidden" value='false'/>
</form>

<div class="skyscraper-list most-popular ">
    <div class="banner theme-contrast">
        <span itemprop="name" data-title='{
            "desktop":"MOST POPULAR<strong class=\"theme-secondary\"></strong>",
            "tablet":"MOST POPULAR<strong class=\"theme-secondary\"></strong>",
            "mobile":"MOST POPULAR<strong class=\"theme-secondary\"></strong>"}'>MOST POPULAR<strong class="theme-secondary"></strong></span>
    </div>
    <div class="content-wrapper">
        <ol itemscope itemtype="http://schema.org/ItemList">
        </ol>
    </div>
    </div>
</div>
</div>
			<a href="" class="seeMore_toggle">SEE MORE<i class="icon-caret-down" aria-hidden="true"></i> <span class="sr-only">SEE MORE</span></a>
			<div class="callouts-group1 space-btn">
				<div class="space-btn callout1x2 space-side 1 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="space-btn callout1x1 2 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="callout1x1p space-side">
					<div class="tcps1-component TopicCategoryPromoSpaces"><div class="topic-category-promo-spaces " itemscope
	itemtype="http://schema.org/ItemList">
	<a href="http://transparency.coca-colacompany.com/"><span class="linkText">Our Way Forward</span><img data-src='{
			"desktop":"/content/dam/journey/ca/en/private/homepage/commitment-to-transparency.png",
			"tablet":"/content/dam/journey/ca/en/private/homepage/commitment-to-transparency.png",
			"mobile":"/content/dam/journey/ca/en/private/homepage/commitment-to-transparency.png"
		}' data-dimensions='{
			"desktop":"245_385",
			"tablet":"245_385",
			"mobile":"272_316"
		}' src="/content/dam/journey/ca/en/private/homepage/commitment-to-transparency.png" alt="Our Commitment to Transparency: Learn More"/>
	</a></div>
</div>
</div>
				<div class="callout1x1 space-side 3 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="callout1x1 last 4 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
			</div>
			<div class="callouts-group2">
				<div class="callout1x1 space-side space-btn 5 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="callout1x1 space-side space-btn 6 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="callout1x1p space-btn">
					<div class="tcps2-component TopicCategoryPromoSpaces"><div class="topic-category-promo-spaces " itemscope
	itemtype="http://schema.org/ItemList">
	<a href="http://www.coca-colaproductfacts.com" target="_blank"><span class="linkText">Nutrition, Info, Ingredients & FAQs</span><img data-src='{
			"desktop":"/content/dam/journey/us/en/private/2017/12/Homepage-Poduct-Facts-promo.jpg",
			"tablet":"/content/dam/journey/us/en/private/2017/12/Homepage-Poduct-Facts-promo.jpg",
			"mobile":"/content/dam/journey/us/en/private/2017/12/Homepage-Poduct-Facts-promo.jpg"
		}' data-dimensions='{
			"desktop":"245_385",
			"tablet":"245_385",
			"mobile":"272_316"
		}' src="/content/dam/journey/us/en/private/2017/12/Homepage-Poduct-Facts-promo.jpg" alt="Nutrition Info, Ingredients & FAQs - Get the Facts"/>
	</a></div>
</div>
</div>
				<div class="callout1x1p space-side">
					<div class="tcps3-component TopicCategoryPromoSpaces"><div class="topic-category-promo-spaces " itemscope
	itemtype="http://schema.org/ItemList">
	<div class="stock-ticker"
			data-url="/content/journey/us/en/homepage/just-poured/featured/_jcr_content/pageContent/topicfilter/tcps3-component.ticker.json">
			<a href="/investors"><span class="linkText">STOCK</span><span class="price">46.65</span> <span class="nyse">NYSE/KO</span>
				<span class="delta">+0.03</span> <span class="disclaimer">Quote delayed at least 15 minutes.</span>
			</a>
		</div>
	<a href="/investors"><span class="linkText">STOCK</span><img data-src='{
			"desktop":"/content/dam/journey/us/en/private/icons/stock-ticker.jpeg",
			"tablet":"/content/dam/journey/us/en/private/icons/stock-ticker.jpeg",
			"mobile":"/content/dam/journey/us/en/private/icons/stock-ticker.jpeg"
		}' data-dimensions='{
			"desktop":"245_385",
			"tablet":"245_385",
			"mobile":"272_316"
		}' src="/content/dam/journey/us/en/private/icons/stock-ticker.jpeg" alt="Stock Ticker"/>
	</a></div>
</div>
</div>
				<div class="callout1x1 space-side space-btn 7 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="callout1x1 space-btn 8 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div
					class="callouts-group3 space-btn space-side 9 calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
				<div class="callouts-group3 space-btn 10  calloutTile ">
					<div class="topic-category-callouts" itemscope itemtype="http://schema.org/ItemList">    
<div class="topic-callout topicCalloutTag">
        <a href="">
            <img src="" alt="Topic Filter Category Callout">
        </a>
        <div class="topic-content">
            <div class="topic-headline"><strong></strong></div>
            <a href="" class="topic-lead-in">
                <p class="topic-headline-lead-in " style="color:#8958A2">
                    <strong></strong>
                </p>
                <h3>
                    <span itemprop="name" data-title="" class="theme-font-main"></span>
                </h3>
                <p class="description theme-font-secondary"></p>
                <div class="shadow"></div>
                <div class="ie8 ie8-fadeout"></div>
            </a>
        </div>
    </div>
</div>
</div>
			</div>
			<div class="rl-component-wp space-btn">
					<div class="rl-component RecommendedList"><form> 
    <input id="recommendedHomePageSize" type="hidden" value='10'/> 
    <input id="recommendedArticleSize" type="hidden" value=''/> 
</form>


<div class="skyscraper-list recommended-list">
    <div class="banner theme-contrast">
        <span itemprop="name" data-title='{
            "desktop":"STAFF PICKS<strong class=\"theme-secondary\"></strong>",
            "tablet":"STAFF PICKS<strong class=\"theme-secondary\"></strong>",
            "mobile":"STAFF PICKS<strong class=\"theme-secondary\"></strong>"}' class="theme-font-main">STAFF PICKS<strong class="theme-secondary"></strong></span>
    </div>
     <div class="content-wrapper">
          <ul>

         <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/profiles/jay-moye">Jay Moye</a>
                                          </span>Recommends <a href="/stories/coca-cola-usa-a-total-beverage-company-with-local-roots" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots","tablet":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots","mobile":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots"}'
                       class="theme-font-main"><strong class="theme-secondary">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots</span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/profiles/jan-schneider">Jan Schneider</a>
                                          </span>Recommends <a href="/stories/the-story-of-the-coca-cola-love-cans" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"<strong class=\"theme-secondary\">‘Love’ Story:</strong> <nobr>Coca-Cola</nobr> Supports Marriage Equality in Australia With Limited-Edition Cans","tablet":"<strong class=\"theme-secondary\">‘Love’ Story:</strong> <nobr>Coca-Cola</nobr> Supports Marriage Equality in Australia With Limited-Edition Cans","mobile":"<strong class=\"theme-secondary\">‘Love’ Story:</strong> <nobr>Coca-Cola</nobr> Supports Marriage Equality in Australia With Limited-Edition Cans"}'
                       class="theme-font-main"><strong class="theme-secondary">‘Love’ Story:</strong> <nobr>Coca-Cola</nobr> Supports Marriage Equality in Australia With Limited-Edition Cans</span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/profiles/emily-bucherati">Emily Bucherati</a>
                                          </span>Recommends <a href="/stories/coca-cola_s-venturing---emerging-brands-welcomes-topo-chico-spar" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"<strong class=\"theme-secondary\">Topo Chico Sparkling Mineral Water</strong> Joins Coke&apos;s Venturing & Emerging Brands Portfolio ","tablet":"<strong class=\"theme-secondary\">Topo Chico Sparkling Mineral Water</strong> Joins Coke&apos;s Venturing & Emerging Brands Portfolio ","mobile":"<strong class=\"theme-secondary\">Topo Chico Sparkling Mineral Water</strong> Joins Coke&apos;s Venturing & Emerging Brands Portfolio "}'
                       class="theme-font-main"><strong class="theme-secondary">Topo Chico Sparkling Mineral Water</strong> Joins Coke&apos;s Venturing & Emerging Brands Portfolio </span>
                     </a>
                       <li class="list-item">
                             <span class="author">
                                         <a class="theme-secondary" href="/content/journey/us/en/search.html?q=Hannah%20Nemer">Hannah Nemer</a>    
                                         </span>Recommends <a href="http://bittersoutherner.com/sponsored/coca-cola/under-the-pines-corinth-mississippi" target="_blank">
                                               <div class="title">
                       <span itemprop="name" data-override-size="" data-tile='{"desktop":"<strong class=\"theme-secondary\">Under the Pines:</strong> Mississippi Family Finds Formula for Success","tablet":"<strong class=\"theme-secondary\">Under the Pines:</strong> Mississippi Family Finds Formula for Success","mobile":<span class="nobr">"</span><strong class=\"theme-secondary\">Under the Pines:</strong> Mississippi Family Finds Formula for Success"}'
                       class="theme-font-main"><strong class="theme-secondary">Under the Pines:</strong> Mississippi Family Finds Formula for Success</span>
                    </div>
                      </a>
                         <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/content/journey/us/en/search.html?q=Scott%20Leith">Scott Leith</a>
                                          </span>Recommends <a href="/stories/investing-in-america-coca-cola-and-its-us-bottler-partners" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"<strong class=\"theme-secondary\">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners","tablet":"<strong class=\"theme-secondary\">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners","mobile":"<strong class=\"theme-secondary\">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners"}'
                       class="theme-font-main"><strong class="theme-secondary">Investing In America:</strong> <nobr>Coca-Cola</nobr> And Its U.S. Bottler Partners</span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/profiles/jamal-booker">Jamal Booker</a>
                                          </span>Recommends <a href="/content/journey/us/en/coca-cola-unbottled/sustainability/2017/treat-sustainability-like-a-hidden-treasure" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"Treat Sustainability like a <strong class=\"theme-secondary\">Hidden Treasure</strong>","tablet":"Treat Sustainability like a <strong class=\"theme-secondary\">Hidden Treasure</strong>","mobile":"Treat Sustainability like a <strong class=\"theme-secondary\">Hidden Treasure</strong>"}'
                       class="theme-font-main">Treat Sustainability like a <strong class="theme-secondary">Hidden Treasure</strong></span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/content/journey/us/en/search.html?q=Kate%20Hartman%20Rosenzweig">Kate Hartman Rosenzweig</a>
                                          </span>Recommends <a href="/stories/coca-cola-inks-first-ever-virtual-sponsorship-deal-through-uniqu" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"Coke Inks ‘Virtual Sponsorship Deal’ with <strong class=\"theme-secondary\">EA SPORTS FIFA 18 Game</strong>","tablet":"Coke Inks ‘Virtual Sponsorship Deal’ with <strong class=\"theme-secondary\">EA SPORTS FIFA 18 Game</strong>","mobile":"Coke Inks ‘Virtual Sponsorship Deal’ with <strong class=\"theme-secondary\">EA SPORTS FIFA 18 Game</strong>"}'
                       class="theme-font-main">Coke Inks ‘Virtual Sponsorship Deal’ with <strong class="theme-secondary">EA SPORTS FIFA 18 Game</strong></span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/profiles/ted-ryan">Ted Ryan</a>
                                          </span>Recommends <a href="/stories/from-hilltop-to-america-is-beautiful-cokes-enduring-legacy-of-inclusive-advertising" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"<strong class=\"theme-secondary\">From ‘Hilltop’ to ‘America is Beautiful’:</strong> Coke’s Enduring Legacy of Inclusive Advertising","tablet":"<strong class=\"theme-secondary\">From ‘Hilltop’ to ‘America is Beautiful’:</strong> Coke’s Enduring Legacy of Inclusive Advertising","mobile":"<strong class=\"theme-secondary\">From ‘Hilltop’ to ‘America is Beautiful’:</strong> Coke’s Enduring Legacy of Inclusive Advertising"}'
                       class="theme-font-main"><strong class="theme-secondary">From ‘Hilltop’ to ‘America is Beautiful’:</strong> Coke’s Enduring Legacy of Inclusive Advertising</span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/content/journey/us/en/search.html?q=Lauren%20Thompson">Lauren Thompson</a>
                                          </span>Recommends <a href="/stories/coca-cola-celebrates-with-fans-in-times-square-to-introduce-the-" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola and Fans Celebrate <strong class=\"theme-secondary\">World’s First 3D Robotic Sign in Times Square</strong>","tablet":"Coca-Cola and Fans Celebrate <strong class=\"theme-secondary\">World’s First 3D Robotic Sign in Times Square</strong>","mobile":"Coca-Cola and Fans Celebrate <strong class=\"theme-secondary\">World’s First 3D Robotic Sign in Times Square</strong>"}'
                       class="theme-font-main">Coca-Cola and Fans Celebrate <strong class="theme-secondary">World’s First 3D Robotic Sign in Times Square</strong></span>
                     </a>
                       <li class="list-item">
                              <span class="author">
                                        <a class="theme-secondary" href="/content/journey/us/en/search.html?q=Kent%20Landers">Kent Landers</a>
                                          </span>Recommends <a href="/stories/coca-cola-usa-a-total-beverage-company-with-local-roots" class="title">
                       <span itemprop="name" data-override-size="" data-title='{"desktop":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots","tablet":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots","mobile":"<strong class=\"theme-secondary\">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots"}'
                       class="theme-font-main"><strong class="theme-secondary">Coca-Cola USA:</strong> A Total Beverage Company With Local Roots</span>
                     </a>
                       </ul>
    </div>
</div>
</div>
</div>
		</div>
	</div>
</div></div>
</div>
    </div>

</div>
</div>

</div>
</div>
     <div class="row"> 
        <div class="photoTextPar parsys"><div class="ReferenceParagraph section"><div class="phototextct PhotoText"><article class="photo-text adapt">
            <div class="col">
                <a href="/press-center/press-releases/the-coca-cola-company-reports-continued-strong-results-in-second">
				<img data-src='{
							"desktop":"/content/dam/journey/us/en/private/2018/04/coca-cola-products-604.rendition.604.338.jpg",
							"tablet":"/content/dam/journey/us/en/private/2018/04/coca-cola-products-604.rendition.604.338.jpg",
							"mobile":"/content/dam/journey/us/en/private/2018/04/coca-cola-products-604.rendition.320.179.jpg"
                        }' data-dimensions='{
							"desktop":"604_338",
							"tablet":"604_338",
							"mobile":"320_179"
                        }' src="/content/dam/journey/us/en/private/2018/04/coca-cola-products-604.rendition.320.179.jpg" alt="Coca-Cola Company products" title="Coca-Cola Company products" class="photo"/>
                </a>
            </div>
            <div class="col">
                <div class="text-container">
                    <div class="topic-title">
                        <span itemprop="name" data-title='{"desktop":"<strong class=\"theme-secondary theme-color-secondary\">IN THE NEWS</strong>","tablet":"<strong class=\"theme-secondary theme-color-secondary\">IN THE NEWS</strong>","mobile":"<strong class=\"theme-secondary theme-color-secondary\">NEWS</strong>"}'>
                            <strong class="theme-secondary theme-color-secondary">IN THE NEWS</strong></span>
                    </div>
                    <div class="content-title">
                        <span itemprop="name" data-title='{"desktop":"Strong Organic Revenue","tablet":"Strong Organic Revenue","mobile":"Strong Organic Revenue"}' class="">Strong Organic Revenue</span>
                    </div>
                    <div class="summary theme-font-secondary" itemprop="description">
                         <p>The <nobr>Coca-Cola</nobr> Company Reports Continued Strong Results in Second Quarter 2018 </p>
                    </div>
                    <a href="/press-center/press-releases/the-coca-cola-company-reports-continued-strong-results-in-second" class="button theme-font-main theme-main" target="">
                        <div class="valign-middle theme-contrast">
                            <i class="icon-double-angle-right" aria-hidden="true"></i>
                            <span itemprop="name" data-override-size="" data-title='{"desktop":"Read More","tablet":"Read More","mobile":"Read More"}' class="">Read More</span>
                        </div>
                    </a>
                    </div>
            </div>
            <div class="clearall"></div>
        </article>
    </div>
</div>

</div>
<div class="parsys featuredFlicksPar"><div class="ReferenceParagraph section"><div class="featureflicksct FeaturedFlicks"><div class="featured-flicks">
	<h4 class="headline-section">
		<span itemprop="name" class="theme-font-main" data-title='{
			"desktop":"#JOURNEYTV<strong class=\"theme-secondary\"></strong>",
			"tablet":"#JOURNEYTV<strong class=\"theme-secondary\"></strong>",
			"mobile":"#JOURNEYTV<strong class=\"theme-secondary\"></strong>"}'>
			#JOURNEYTV<strong class="theme-secondary"></strong></span>
	</h4>
	<div class="promo-wrapper">
	<div class="hero hidden-phone">
					<div class="title">
						<span itemprop="name" class="theme-font-main" data-title='{
							"desktop":"Dear Future (:60) | #CocaColaRenew<strong class=\"theme-secondary\"></strong>",
							"tablet":"Dear Future (:60) | #CocaColaRenew<strong class=\"theme-secondary\"></strong>",
							"mobile":"Dear Future (:60) | #CocaColaRenew<strong class=\"theme-secondary\"></strong>"}'>
							Dear Future (:60) | #CocaColaRenew<strong class="theme-secondary "></strong></span>
					</div>
					<div class="summary theme-font-secondary">
					<span itemprop="name" class="theme-font-main">Being a good steward of the community is a part of our 132-year heritage and value system. Every day, we strive to make a positive impact through the products we make and the actions we take.   Together with our family of independent bottlers we are bringing to market more conscious products, employing 90,000 people across the United States, and empowering the next generation of community leaders through 30 years of <nobr>Coca-Cola</nobr> Scholars.    Learn more by visiting http://www.coca-colacompany.com/commitment   Follow The <nobr>Coca-Cola</nobr> Company on Social: YOUTUBE: https://www.youtube.com/user/CocaColaCo FACEBOOK: https://www.facebook.com/TheCocaColaCo TWITTER: https://twitter.com/CocaColaCo INSTAGRAM: https://www.instagram.com/TheCocaColaCo<strong class="theme-secondary "></strong></span>
						</div>
					<div class="media-container">
						<div class="video-player lazyloadvideo llyoutube" data-iframeid="ytplayer-" data-iframeclass="youtube-video-wrapper" data-videosrc="//www.youtube.com/embed/Z0JlPoskWbo?autoplay=1&origin=http://coca-colacompany.com&rel=0&wmode=transparent">
									<img src="https://i.ytimg.com/vi/Z0JlPoskWbo/sddefault.jpg"/>
									<div class="play-button"></div>
								</div>
							</div>
				</div>
			<div class="inline-promo first">
			<!-- slide.videoPageUrl: /videos/we-are-the-coca-cola-company-60-coca-cola-renew-yt29govbe3hxw -->
					<a href="/videos/we-are-the-coca-cola-company-60-coca-cola-renew-yt29govbe3hxw">
					<div>
							<img data-src='{
									"desktop":"https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg",
									"tablet":"https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg",
									"mobile":"https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg"
								}' data-dimensions='{
									"desktop":"320_180",
									"tablet":"250_140",
									"mobile":"320_180"
								}' src="https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg" class="rsImg" alt="We Are The Coca-Cola Company | #CocaColaRenew" title="We Are The Coca-Cola Company | #CocaColaRenew"/>
							<div class="poster-overlay">
									<div class="center-vertically">
										<i class="icon-play theme-link" aria-hidden="true"></i>
									</div>
								</div>
							</div>
						<div class="title">
							<span itemprop="name" class="theme-font-main" data-title='{
								"desktop":"We Are The <nobr>Coca-Cola</nobr> Company | #CocaColaRenew<strong class=\"theme-secondary\"></strong>",
								"tablet":"We Are The <nobr>Coca-Cola</nobr> Company | #CocaColaRenew<strong class=\"theme-secondary\"></strong>",
								"mobile":"We Are The <nobr>Coca-Cola</nobr> Company | #CocaColaRenew<strong class=\"theme-secondary\"></strong>"}'>
								We Are The <nobr>Coca-Cola</nobr> Company | #CocaColaRenew<strong class="theme-secondary"></strong></span>
						</div>
					</a>
				</div>
			<div class="inline-promo">
			<!-- slide.videoPageUrl: /videos/powerade-evolution-of-hydration-ytr7kmbfe23c8 -->
					<a href="/videos/powerade-evolution-of-hydration-ytr7kmbfe23c8">
					<div>
							<img data-src='{
									"desktop":"https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg",
									"tablet":"https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg",
									"mobile":"https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg"
								}' data-dimensions='{
									"desktop":"320_180",
									"tablet":"250_140",
									"mobile":"320_180"
								}' src="https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg" class="rsImg" alt="Powerade: Evolution of Hydration" title="Powerade: Evolution of Hydration"/>
							<div class="poster-overlay">
									<div class="center-vertically">
										<i class="icon-play theme-link" aria-hidden="true"></i>
									</div>
								</div>
							</div>
						<div class="title">
							<span itemprop="name" class="theme-font-main" data-title='{
								"desktop":"Powerade: Evolution of Hydration<strong class=\"theme-secondary\"></strong>",
								"tablet":"Powerade: Evolution of Hydration<strong class=\"theme-secondary\"></strong>",
								"mobile":"Powerade: Evolution of Hydration<strong class=\"theme-secondary\"></strong>"}'>
								Powerade: Evolution of Hydration<strong class="theme-secondary"></strong></span>
						</div>
					</a>
				</div>
			<div class="inline-promo last">
			<!-- slide.videoPageUrl: /videos/coca-cola-share-a-coke-with-love-30-ytegxxtnlfxu8 -->
					<a href="/videos/coca-cola-share-a-coke-with-love-30-ytegxxtnlfxu8">
					<div>
							<img data-src='{
									"desktop":"https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg",
									"tablet":"https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg",
									"mobile":"https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg"
								}' data-dimensions='{
									"desktop":"320_180",
									"tablet":"250_140",
									"mobile":"320_180"
								}' src="https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg" class="rsImg" alt="Coca-Cola | Share a Coke with Love :30" title="Coca-Cola | Share a Coke with Love :30"/>
							<div class="poster-overlay">
									<div class="center-vertically">
										<i class="icon-play theme-link" aria-hidden="true"></i>
									</div>
								</div>
							</div>
						<div class="title">
							<span itemprop="name" class="theme-font-main" data-title='{
								"desktop":"Coca-Cola | Share a Coke with Love :30<strong class=\"theme-secondary\"></strong>",
								"tablet":"Coca-Cola | Share a Coke with Love :30<strong class=\"theme-secondary\"></strong>",
								"mobile":"Coca-Cola | Share a Coke with Love :30<strong class=\"theme-secondary\"></strong>"}'>
								Coca-Cola | Share a Coke with Love :30<strong class="theme-secondary"></strong></span>
						</div>
					</a>
				</div>
			</div>

	<div id="featured-flicks-mobile" class="visible-phone sliderContainer fullWidth clearfix">
		<div id="full-width-slider" class="royalSlider heroSlider rsMinW">
			<div class="rsContent">
				<a href="/videos/dear-future-60-coca-cola-renew-ytz0jlposkwbo">
				<div>
					<img data-src='{
							"desktop":"https://i.ytimg.com/vi/Z0JlPoskWbo/sddefault.jpg",
							"tablet":"https://i.ytimg.com/vi/Z0JlPoskWbo/sddefault.jpg",
							"mobile":"https://i.ytimg.com/vi/Z0JlPoskWbo/sddefault.jpg"
						}' data-dimensions='{
							"desktop":"320_180",
							"tablet":"250_140",
							"mobile":"320_180"
						}' src="https://i.ytimg.com/vi/Z0JlPoskWbo/sddefault.jpg" class="rsImg" alt="Dear Future (:60) | #CocaColaRenew" title="Dear Future (:60) | #CocaColaRenew"/>
					<div class="poster-overlay">
							<div class="center-vertically">
								<i class="icon-play theme-link" aria-hidden="true"></i>
							</div>
						</div>
					</div>
				<div class="title">
					<span itemprop="name" class="theme-font-main" data-title='{"mobile":"Dear Future (:60) | #CocaColaRenew<strong class=\"theme-secondary\"></strong>"}'>
						Dear Future (:60) | #CocaColaRenew<strong class="theme-secondary"></strong></span>
				</div>
				</a>
			</div>
	   <div class="rsContent">
				<a href="/videos/we-are-the-coca-cola-company-60-coca-cola-renew-yt29govbe3hxw">
				<div>
					<img data-src='{
							"desktop":"https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg",
							"tablet":"https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg",
							"mobile":"https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg"
						}' data-dimensions='{
							"desktop":"320_180",
							"tablet":"250_140",
							"mobile":"320_180"
						}' src="https://i.ytimg.com/vi/29govBe3Hxw/sddefault.jpg" class="rsImg" alt="We Are The Coca-Cola Company | #CocaColaRenew" title="We Are The Coca-Cola Company | #CocaColaRenew"/>
					<div class="poster-overlay">
							<div class="center-vertically">
								<i class="icon-play theme-link" aria-hidden="true"></i>
							</div>
						</div>
					</div>
				<div class="title">
					<span itemprop="name" class="theme-font-main" data-title='{"mobile":"We Are The <nobr>Coca-Cola</nobr> Company | #CocaColaRenew<strong class=\"theme-secondary\"></strong>"}'>
						We Are The <nobr>Coca-Cola</nobr> Company | #CocaColaRenew<strong class="theme-secondary"></strong></span>
				</div>
				</a>
			</div>
	   <div class="rsContent">
				<a href="/videos/powerade-evolution-of-hydration-ytr7kmbfe23c8">
				<div>
					<img data-src='{
							"desktop":"https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg",
							"tablet":"https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg",
							"mobile":"https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg"
						}' data-dimensions='{
							"desktop":"320_180",
							"tablet":"250_140",
							"mobile":"320_180"
						}' src="https://i.ytimg.com/vi/R7KmbFe23c8/sddefault.jpg" class="rsImg" alt="Powerade: Evolution of Hydration" title="Powerade: Evolution of Hydration"/>
					<div class="poster-overlay">
							<div class="center-vertically">
								<i class="icon-play theme-link" aria-hidden="true"></i>
							</div>
						</div>
					</div>
				<div class="title">
					<span itemprop="name" class="theme-font-main" data-title='{"mobile":"Powerade: Evolution of Hydration<strong class=\"theme-secondary\"></strong>"}'>
						Powerade: Evolution of Hydration<strong class="theme-secondary"></strong></span>
				</div>
				</a>
			</div>
	   <div class="rsContent">
				<a href="/videos/coca-cola-share-a-coke-with-love-30-ytegxxtnlfxu8">
				<div>
					<img data-src='{
							"desktop":"https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg",
							"tablet":"https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg",
							"mobile":"https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg"
						}' data-dimensions='{
							"desktop":"320_180",
							"tablet":"250_140",
							"mobile":"320_180"
						}' src="https://i.ytimg.com/vi/EgxXtNLfXU8/sddefault.jpg" class="rsImg" alt="Coca-Cola | Share a Coke with Love :30" title="Coca-Cola | Share a Coke with Love :30"/>
					<div class="poster-overlay">
							<div class="center-vertically">
								<i class="icon-play theme-link" aria-hidden="true"></i>
							</div>
						</div>
					</div>
				<div class="title">
					<span itemprop="name" class="theme-font-main" data-title='{"mobile":"Coca-Cola | Share a Coke with Love :30<strong class=\"theme-secondary\"></strong>"}'>
						Coca-Cola | Share a Coke with Love :30<strong class="theme-secondary"></strong></span>
				</div>
				</a>
			</div>
	   </div>
	</div>
</div>

</div>
</div>

</div>
<div class="imageLinkGalleryPar parsys"><div class="ReferenceParagraph section"><div class="imagelinkgalleryct ImageLinkGallery"><div class="snapshots">
    <h4 class="headline-section">
         <span itemprop="name" data-title='{
            "desktop":"Snapshots<strong class=\"theme-secondary\"></strong>",
            "tablet":"Snapshots<strong class=\"theme-secondary\"></strong>",
            "mobile":"Snapshots<strong class=\"theme-secondary\"></strong>"}'>Snapshots<strong class="theme-secondary"></strong></span>
    </h4>

    <div class="sub-title theme-secondary">
         <span itemprop="name" data-title='{
            "desktop":"Moments of Happiness From Our Readers<strong class=\"theme-secondary\"></strong>",
            "tablet":"Moments of Happiness From Our Readers<strong class=\"theme-secondary\"></strong>",
            "mobile":"Moments of Happiness From Our Readers<strong class=\"theme-secondary\"></strong>"}'>Moments of Happiness From Our Readers<strong class="theme-secondary knockout-bgcolor"></strong></span>
    </div>

    <div class="summary theme-font-secondary"></div>

    <div class="container clearfix">
        <div class="image">
                <a href="/ugc/jump-in-ugc-image-uploader">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2013/11/upload-image-snapshots-194-194-fb6f96f2.jpeg",
                        "tablet":"/content/dam/journey/us/en/private/2013/11/upload-image-snapshots-194-194-fb6f96f2.rendition.150.150.jpeg",
                        "mobile":"/content/dam/journey/us/en/private/2013/11/upload-image-snapshots-194-194-fb6f96f2.rendition.106.106.jpeg"
                    }' src="/content/dam/journey/us/en/private/2013/11/upload-image-snapshots-194-194-fb6f96f2.rendition.106.106.jpeg" alt="Upload Image Snapshots" title=""/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#one-bottle-found-one-yet-to-be-found">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2014/11/one-bottle-found-one-yet-to-be-found-928-1400-fbdeb81a.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2014/11/one-bottle-found-one-yet-to-be-found-928-1400-fbdeb81a.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2014/11/one-bottle-found-one-yet-to-be-found-928-1400-fbdeb81a.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2014/11/one-bottle-found-one-yet-to-be-found-928-1400-fbdeb81a.rendition.106.106.jpg" alt="One Bottle Found, One Yet to Be Found" title="One Bottle Found, One Yet to Be Found"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#always-coca-cola">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2015/08/always-coca-cola-2000-1333-3cbb8df6.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2015/08/always-coca-cola-2000-1333-3cbb8df6.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2015/08/always-coca-cola-2000-1333-3cbb8df6.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2015/08/always-coca-cola-2000-1333-3cbb8df6.rendition.106.106.jpg" alt="Always Coca-Cola" title="Always Coca-Cola"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#happiness-on-the-4th-of-july">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2015/08/happiness-on-the-4th-1200-1600-3cbbf9db.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2015/08/happiness-on-the-4th-1200-1600-3cbbf9db.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2015/08/happiness-on-the-4th-1200-1600-3cbbf9db.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2015/08/happiness-on-the-4th-1200-1600-3cbbf9db.rendition.106.106.jpg" alt="Happiness on the 4th of July" title="Happiness on the 4th of July"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#making-a-splash">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2013/11/making-a-splash-2000-1500-ef4dea66.rendition.191.191.JPG",
                        "tablet":"/content/dam/journey/us/en/private/2013/11/making-a-splash-2000-1500-ef4dea66.rendition.150.150.JPG",
                        "mobile":"/content/dam/journey/us/en/private/2013/11/making-a-splash-2000-1500-ef4dea66.rendition.106.106.JPG"
                    }' src="/content/dam/journey/us/en/private/2013/11/making-a-splash-2000-1500-ef4dea66.rendition.106.106.JPG" alt="Making a Splash" title="Making a Splash"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#another-lunch-truck-day-in-hawaii">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2014/11/another-lunch-truck-day-in-hawaii-675-1200-adf388c6.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2014/11/another-lunch-truck-day-in-hawaii-675-1200-adf388c6.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2014/11/another-lunch-truck-day-in-hawaii-675-1200-adf388c6.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2014/11/another-lunch-truck-day-in-hawaii-675-1200-adf388c6.rendition.106.106.jpg" alt="Another Lunch Truck Day in Hawaii" title="Another Lunch Truck Day in Hawaii"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#snow-bear">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2014/01/snow-bear-750-1000-eff97437.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2014/01/snow-bear-750-1000-eff97437.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2014/01/snow-bear-750-1000-eff97437.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2014/01/snow-bear-750-1000-eff97437.rendition.106.106.jpg" alt="Snow Bear" title="Snow Bear"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#a-real-life-without-pretense-or-prejudice">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2015/03/a-real-life-without-pretense-or-prejudice-1600-1251-6dffc263.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2015/03/a-real-life-without-pretense-or-prejudice-1600-1251-6dffc263.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2015/03/a-real-life-without-pretense-or-prejudice-1600-1251-6dffc263.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2015/03/a-real-life-without-pretense-or-prejudice-1600-1251-6dffc263.rendition.106.106.jpg" alt="A Real Life Without Pretense or Prejudice" title="A Real Life Without Pretense or Prejudice"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#photographing-antiques">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2015/03/photographing-antiques-1400-928-6df771c3.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2015/03/photographing-antiques-1400-928-6df771c3.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2015/03/photographing-antiques-1400-928-6df771c3.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2015/03/photographing-antiques-1400-928-6df771c3.rendition.106.106.jpg" alt="Photographing Antiques" title="Photographing Antiques"/>
                </a>
            </div>
        <div class="image">
            <a href="/ugc-snapshots-gallery#an-engagement-photo">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2014/06/an-engagement-photo-1400-933-ff3fbfe8.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2014/06/an-engagement-photo-1400-933-ff3fbfe8.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2014/06/an-engagement-photo-1400-933-ff3fbfe8.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2014/06/an-engagement-photo-1400-933-ff3fbfe8.rendition.106.106.jpg" alt="An Engagement Photo" title="An Engagement Photo"/>
                </a>
            </div>
        <div class="image extra-info">
            <a href="/ugc-snapshots-gallery#karen">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2014/06/karen-845-1100-ffff788c.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2014/06/karen-845-1100-ffff788c.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2014/06/karen-845-1100-ffff788c.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2014/06/karen-845-1100-ffff788c.rendition.106.106.jpg" alt="Karen" title="Karen"/>
                </a>
            </div>
        <div class="image extra-info">
            <a href="/ugc-snapshots-gallery#navajo-wedding">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2016/02/navajowedding.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2016/02/navajowedding.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2016/02/navajowedding.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2016/02/navajowedding.rendition.106.106.jpg" alt="Navajo Wedding" title="Navajo Wedding"/>
                </a>
            </div>
        <div class="image extra-info">
            <a href="/ugc-snapshots-gallery#lets-drink-and-be-married">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2014/11/lets-drink-and-be-married-1600-1068-adfd5e81.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2014/11/lets-drink-and-be-married-1600-1068-adfd5e81.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2014/11/lets-drink-and-be-married-1600-1068-adfd5e81.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2014/11/lets-drink-and-be-married-1600-1068-adfd5e81.rendition.106.106.jpg" alt="Let's Drink and Be Married" title="Let's Drink and Be Married"/>
                </a>
            </div>
        <div class="image extra-info">
            <a href="/ugc-snapshots-gallery#good-old-fashioned-coca-cola">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2016/02/goodoldfashionedcocacola.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2016/02/goodoldfashionedcocacola.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2016/02/goodoldfashionedcocacola.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2016/02/goodoldfashionedcocacola.rendition.106.106.jpg" alt="Good Old Fashioned Coca-COla" title="Good Old Fashioned Coca-COla"/>
                </a>
            </div>
        <div class="image extra-info">
            <a href="/ugc-snapshots-gallery#santa-ron-likes-coca-cola">
                 <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/2015/03/santa-ron-likes-coca-cola-6efff442.rendition.191.191.jpg",
                        "tablet":"/content/dam/journey/us/en/private/2015/03/santa-ron-likes-coca-cola-6efff442.rendition.150.150.jpg",
                        "mobile":"/content/dam/journey/us/en/private/2015/03/santa-ron-likes-coca-cola-6efff442.rendition.106.106.jpg"
                    }' src="/content/dam/journey/us/en/private/2015/03/santa-ron-likes-coca-cola-6efff442.rendition.106.106.jpg" alt="Santa Ron Likes Coca-Cola" title="Santa Ron Likes Coca-Cola"/>
                </a>
            </div>
        </div>

    <a href="/ugc-snapshots-gallery" id="load-more-button" class="button large">
        <i class="icon-double-angle-right" aria-hidden="true"></i> <span class="sr-only">SEE MORE</span>SEE MORE</a>
</div>
</div>
</div>

</div>
<div class="parsys dynamicSectionLinksPar"><div class="ReferenceParagraph section"><div class="dynamicsectionlinksc DynamicSectionLinksContainer"><div class="m-stay-sip">
       <h4 class="headline-section">
           <span itemprop="name" data-title='{"desktop":"STAY & SIP<strong class=\"theme-secondary \"></strong>","tablet":"STAY & SIP<strong class=\"theme-secondary\"></strong>","mobile":"STAY & SIP<strong class=\"theme-secondary\"></strong>"}' class="">
               STAY & SIP<strong class="theme-secondary "></strong></span>
	</h4>
	<div class="dynamicSectionLinks DynamicSectionLinks"><div class="dsl-wrapper-publish">
    <div class="hidden_callouts" data-desktop-items-page="4" data-mobile-items-page="1" data-tablet-items-page="3" ><div class="callout">
            <a href="/content/journey/us/en/coca-cola-unbottled">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/unbottled-stay-sip-icon.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/unbottled-stay-sip-icon.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/unbottled-stay-sip-icon.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/unbottled-stay-sip-icon.rendition.226.60.jpg" alt="unbottled-stay-sip-icon.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/content/journey/us/en/coca-cola-unbottled/business/2015/coca-cola-leaders--q3-results-show-strategic-plan-is-on-track">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Leaders: Q3 Results Show Strategic Plan is On Track","tablet":"Coca-Cola Leaders: Q3 Results Show Strategic Plan is On Track","mobile":"Coca-Cola Leaders: Q3 Results Show Strategic Plan is On Track"}'>
                            <nobr>Coca-Cola</nobr> Leaders: Q3 Results Show Strategic Plan is On Track</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/content/journey/us/en/coca-cola-unbottled/brands/2015/uncapped-vitaminwater-the-fader-present-5th-anniversary-concert-series-in-new-york">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"#uncapped: vitaminwater, The FADER Present 5th Anniversary Concert Series in New York ","tablet":"#uncapped: vitaminwater, The FADER Present 5th Anniversary Concert Series in New York ","mobile":"The FADER Present 5th Anniversary Concert Series in New York "}'>
                            #uncapped: vitaminwater, The FADER Present 5th Anniversary Concert Series in New York </span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/content/journey/us/en/coca-cola-unbottled/jobs/2015/outofoffice-coca-cola-during-the-day-and-puccini-at-night">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"#OutOfOffice: <nobr>Coca-Cola</nobr> During the Day and Puccini at Night","tablet":"#OutOfOffice: <nobr>Coca-Cola</nobr> During the Day and Puccini at Night","mobile":"#OutOfOffice: <nobr>Coca-Cola</nobr> During the Day and Puccini at Night"}'>
                            #OutOfOffice: <nobr>Coca-Cola</nobr> During the Day and Puccini at Night</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/content/journey/us/en/coca-cola-unbottled/sports/2015/coca-cola-london-eye-transforms-for-rugby-world-cup-2015">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola London Eye Transforms for Rugby World Cup 2015","tablet":"Coca-Cola London Eye Transforms for Rugby World Cup 2015","mobile":"Coca-Cola London Eye Transforms for Rugby World Cup 2015"}'>
                            <nobr>Coca-Cola</nobr> London Eye Transforms for Rugby World Cup 2015</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/content/journey/us/en/coca-cola-unbottled" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/the-opener">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/the-opener-228-60-7af70af7.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/the-opener-228-60-7af70af7.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/the-opener-228-60-7af70af7.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/the-opener-228-60-7af70af7.rendition.226.60.jpg" alt="the-opener-228-60-7af70af7.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/the-golden-rule-of-creativity">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"The Golden Rule of Creativity","tablet":"The Golden Rule of Creativity","mobile":"The Golden Rule of Creativity"}'>
                            The Golden Rule of Creativity</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/a-foodies-guide-to-brooklyn">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"A Foodie&#39;s Guide to Brooklyn, N.Y.","tablet":"A Foodie&#39;s Guide to Brooklyn, N.Y.","mobile":"A Foodie&#39;s Guide to Brooklyn, N.Y."}'>
                            A Foodie&#39;s Guide to Brooklyn, N.Y.</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/a-refreshing-recipe-coca-cola-coffee-granita">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"A Refreshing Recipe: <nobr>Coca-Cola</nobr> and Coffee Granita ","tablet":"A Refreshing Recipe: <nobr>Coca-Cola</nobr> and Coffee Granita ","mobile":"Refreshing Recipe: <nobr>Coca-Cola</nobr> and Coffee Granita"}'>
                            A Refreshing Recipe: <nobr>Coca-Cola</nobr> and Coffee Granita </span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-coffee-granita">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola and Coffee Granita ","tablet":"Coca-Cola and Coffee Granita ","mobile":"Coca-Cola and Coffee Granita "}'>
                            <nobr>Coca-Cola</nobr> and Coffee Granita </span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/the-opener" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/business">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/business-stay-sip-icon.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/business-stay-sip-icon.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/business-stay-sip-icon.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/business-stay-sip-icon.rendition.226.60.jpg" alt="business-stay-sip-icon.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/paging-all-surge-fans-90s-cult-classic-now-available-on-coca-cola-freestyle-exclusively-at-burger-king">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants","tablet":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants","mobile":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants"}'>
                            Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-north-americas-tea-portfolio-includes-brands-for-all-tastes">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes ","tablet":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes ","mobile":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes "}'>
                            <nobr>Coca-Cola</nobr> North America&apos;s Tea Portfolio Includes Brands For All Tastes </span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/introducing-coca-cola-orange-no-sugar-the-perfect-winter-twist">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Orange No Sugar Launches in Australia","tablet":"Coca-Cola Orange No Sugar Launches in Australia","mobile":"Coca-Cola Orange No Sugar Launches in Australia"}'>
                            <nobr>Coca-Cola</nobr> Orange No Sugar Launches in Australia</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/_growth-with-discipline-powers-strong-q2-results--coca-cola-pres">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts","tablet":"‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts","mobile":"‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts"}'>
                            ‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/business" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/tags/coca-cola-music">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/music-stay-sip-icon.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/music-stay-sip-icon.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/music-stay-sip-icon.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/music-stay-sip-icon.rendition.226.60.jpg" alt="music-stay-sip-icon.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/watch-jason-derulo-coca-cola-launch-music-video-for-2018-fifa-world-cup-anthem">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Watch: Jason Derulo, <nobr>Coca-Cola</nobr> Launch Music Video for 2018 FIFA World Cup Anthem","tablet":"Watch: Jason Derulo, <nobr>Coca-Cola</nobr> Launch Music Video for 2018 FIFA World Cup Anthem","mobile":"Watch: Jason Derulo, <nobr>Coca-Cola</nobr> Launch Music Video for 2018 FIFA World Cup Anthem"}'>
                            Watch: Jason Derulo, <nobr>Coca-Cola</nobr> Launch Music Video for 2018 FIFA World Cup Anthem</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/ed-sheeran-hosts-a-private-pizza-party-with-coca-cola-and--red--">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Ed Sheeran Hosts Private Pizza Party with <nobr>Coca-Cola</nobr> and (RED) for World AIDS Day","tablet":"Ed Sheeran Hosts Private Pizza Party with <nobr>Coca-Cola</nobr> and (RED) for World AIDS Day","mobile":"Ed Sheeran Hosts Private Pizza Party with <nobr>Coca-Cola</nobr> and (RED) for World AIDS Day"}'>
                            Ed Sheeran Hosts Private Pizza Party with <nobr>Coca-Cola</nobr> and (RED) for World AIDS Day</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/10th-season-of-the-iconic-coke-studio-pakistan-launched">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"10th Season of the Iconic Coke Studio Pakistan Launched","tablet":"10th Season of the Iconic Coke Studio Pakistan Launched","mobile":"10th Season of the Iconic Coke Studio Pakistan Launched"}'>
                            10th Season of the Iconic Coke Studio Pakistan Launched</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/meet-suzanne-ciani-the-legendary-creator-of-cokes-pop-n-pour">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"&apos;Pop &apos;n Pour&apos;: This Electronic Music Pioneer Created the Sound of Coke&apos;s Beloved Bubbles","tablet":"&apos;Pop &apos;n Pour&apos;: This Electronic Music Pioneer Created the Sound of Coke&apos;s Beloved Bubbles","mobile":"&apos;Pop &apos;n Pour&apos;: This Electronic Music Pioneer Created the Sound of Coke&apos;s Beloved Bubbles"}'>
                            &apos;Pop &apos;n Pour&apos;: This Electronic Music Pioneer Created the Sound of Coke&apos;s Beloved Bubbles</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/tags/coca-cola-music" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/food">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/food-stay-sip-icon.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/food-stay-sip-icon.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/food-stay-sip-icon.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/food-stay-sip-icon.rendition.226.60.jpg" alt="food-stay-sip-icon.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/10-coca-cola-journey-stories-to-enjoy-this-summer">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer","tablet":"10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer","mobile":"10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer"}'>
                            10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/multiple-coke-brands-bubble-up-in-fast-growing-sparkling-water-c">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Multiple Coke Brands Bubble Up in Fast-Growing Sparkling Water Category","tablet":"Multiple Coke Brands Bubble Up in Fast-Growing Sparkling Water Category","mobile":"Multiple Coke Brands Bubble Up in Fast-Growing Sparkling Water Category"}'>
                            Multiple Coke Brands Bubble Up in Fast-Growing Sparkling Water Category</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/georgia-high-school-students-cook-up-a-brighter-future-with-coca">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Georgia High School Students Cook Up a Brighter Future with <nobr>Coca-Cola</nobr> Culinary Internships","tablet":"Georgia High School Students Cook Up a Brighter Future with Coca-Cola Culinary Internships","mobile":"Georgia High School Students Cook Up a Brighter Future with <nobr>Coca-Cola</nobr> Culinary Internships"}'>
                            Georgia High School Students Cook Up a Brighter Future with <nobr>Coca-Cola</nobr> Culinary Internships</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/chick-fil-a_s-new-frosted-sunrise-features-simply-orange-juice">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Chick-fil-A’s New Frosted Sunrise Features Simply Orange Juice","tablet":"Chick-fil-A’s New Frosted Sunrise Features Simply Orange Juice","mobile":"Chick-fil-A’s New Frosted Sunrise Features Simply Orange Juice"}'>
                            Chick-fil-A’s New Frosted Sunrise Features Simply Orange Juice</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/food" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/lifestyle">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/culture-228-60-7af51cfb.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/culture-228-60-7af51cfb.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/culture-228-60-7af51cfb.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/culture-228-60-7af51cfb.rendition.226.60.jpg" alt="culture-228-60-7af51cfb.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/introducing-smartwater-futures-an-interactive-event">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Introducing “smartwater®  futures,” an Interactive Event Created in Partnership with The Infatuation","tablet":"Introducing “smartwater®  futures,” an Interactive Event Created in Partnership with The Infatuation","mobile":"Introducing “smartwater®  futures,” an Interactive Event Created in Partnership with The Infatuation"}'>
                            Introducing “smartwater®  futures,” an Interactive Event Created in Partnership with The Infatuation</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/10-coca-cola-journey-stories-to-enjoy-this-summer">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer","tablet":"10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer","mobile":"10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer"}'>
                            10 <nobr>Coca-Cola</nobr> Journey Stories to Revisit This Summer</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/watch-coca-cola-presents-one-last-summer-docuseries">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries","tablet":"‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries","mobile":"‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries"}'>
                            ‘The Real World’ Meets ‘The Real Thing’: <nobr>Coca-Cola</nobr> Debuts ‘One Last Summer’ Docuseries</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/beyond-the-game-discover-russia-with-coca-cola-and-the-calvert-journal">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal","tablet":"Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal","mobile":"Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal"}'>
                            Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/lifestyle" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/heritage">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/history-228-60-7af5d4f0.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/history-228-60-7af5d4f0.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/history-228-60-7af5d4f0.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/history-228-60-7af5d4f0.rendition.226.60.jpg" alt="history-228-60-7af5d4f0.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/a-towering-tribute-coca-cola-consolidated-unveils-three-story-mural-in-terre-haute">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"A Towering Tribute: <nobr>Coca-Cola</nobr> Consolidated Unveils Three-Story Mural in Terre Haute ","tablet":"A Towering Tribute: <nobr>Coca-Cola</nobr> Consolidated Unveils Three-Story Mural in Terre Haute ","mobile":"A Towering Tribute: <nobr>Coca-Cola</nobr> Consolidated Unveils Three-Story Mural in Terre Haute "}'>
                            A Towering Tribute: <nobr>Coca-Cola</nobr> Consolidated Unveils Three-Story Mural in Terre Haute </span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-toasts-to-23-years-at-the-2018-essence-festival">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Toasts to 23 Years at 2018 ESSENCE Festival","tablet":"Coca-Cola Toasts to 23 Years at 2018 ESSENCE Festival","mobile":"Coca-Cola Toasts to 23 Years at 2018 ESSENCE Festival"}'>
                            <nobr>Coca-Cola</nobr> Toasts to 23 Years at 2018 ESSENCE Festival</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/the-passion-that-unites-coca-cola-the-fifa-world-cup-and-the-h">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"The Passion that Unites <nobr>Coca-Cola</nobr>, the FIFA World Cup and a Proud Collector","tablet":"The Passion that Unites <nobr>Coca-Cola</nobr>, the FIFA World Cup and a Proud Collector","mobile":"The Passion that Unites <nobr>Coca-Cola</nobr>, the FIFA World Cup and a Proud Collector"}'>
                            The Passion that Unites <nobr>Coca-Cola</nobr>, the FIFA World Cup and a Proud Collector</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/home-of-the-braves-dansby-swanson-reps-the-atl-with-allthingsloyal">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Home of the Braves: Dansby Swanson Reps the ATL With #AllThingsLoyal","tablet":"Home of the Braves: Dansby Swanson Reps the ATL With #AllThingsLoyal","mobile":"Home of the Braves: Dansby Swanson Reps the ATL With #AllThingsLoyal"}'>
                            Home of the Braves: Dansby Swanson Reps the ATL With #AllThingsLoyal</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/heritage" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/jobs">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/jobs-228-60-7af7c45f.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/jobs-228-60-7af7c45f.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/jobs-228-60-7af7c45f.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/jobs-228-60-7af7c45f.rendition.226.60.jpg" alt="jobs-228-60-7af7c45f.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/qa-coca-cola-volunteer-of-the-year-steve-mac-mcmurray-shares-his-story-as-a-jefferson-award-winner">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Volunteer of the Year Steve &apos;Mac&apos; McMurray Shares His Story as a Jefferson Award Winner","tablet":"Coca-Cola Volunteer of the Year Steve &apos;Mac&apos; McMurray Shares His Story as a Jefferson Award Winner","mobile":"Coca-Cola Volunteer of the Year Steve &apos;Mac&apos; McMurray Shares His Story as a Jefferson Award Winner"}'>
                            <nobr>Coca-Cola</nobr> Volunteer of the Year Steve &apos;Mac&apos; McMurray Shares His Story as a Jefferson Award Winner</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/meet-daniel-barich-special-olympics-athlete-and-coca-cola-s-storytelling-intern-for-the-2018-usa-games">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"How Special Olympics Helped Storyteller Daniel Barich Find His Voice","tablet":"How Special Olympics Helped Storyteller Daniel Barich Find His Voice","mobile":"How Special Olympics Helped Storyteller Daniel Barich Find His Voice"}'>
                            How Special Olympics Helped Storyteller Daniel Barich Find His Voice</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/cokes-pamela-stewart-recognized-for-lgbtq-leadership">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coke’s Pamela Stewart Recognized for LGBTQ Leadership","tablet":"Coke’s Pamela Stewart Recognized for LGBTQ Leadership","mobile":"Coke’s Pamela Stewart Recognized for LGBTQ Leadership"}'>
                            Coke’s Pamela Stewart Recognized for LGBTQ Leadership</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/muhtar-kent-named-international-executive-of-the-year">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Muhtar Kent Named International Executive of the Year","tablet":"Muhtar Kent Named International Executive of the Year","mobile":"Muhtar Kent Named International Executive of the Year"}'>
                            Muhtar Kent Named International Executive of the Year</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/jobs" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/brands">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/brands-228-60-7e3bc83d.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/brands-228-60-7e3bc83d.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/brands-228-60-7e3bc83d.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/brands-228-60-7e3bc83d.rendition.226.60.jpg" alt="brands-228-60-7e3bc83d.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/paging-all-surge-fans-90s-cult-classic-now-available-on-coca-cola-freestyle-exclusively-at-burger-king">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants","tablet":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants","mobile":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants"}'>
                            Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-north-americas-tea-portfolio-includes-brands-for-all-tastes">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes ","tablet":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes ","mobile":"Coca-Cola North America&apos;s Tea Portfolio Includes Brands For All Tastes "}'>
                            <nobr>Coca-Cola</nobr> North America&apos;s Tea Portfolio Includes Brands For All Tastes </span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/gallery--coca-cola-share-chair-dispenses-ice-cold-coke-and-summe0">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories","tablet":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories","mobile":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories"}'>
                            Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-ensures-the-2018-fifa-world-cup-leaves-a-lasting-impac">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact","tablet":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact","mobile":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact"}'>
                            <nobr>Coca-Cola</nobr> Ensures 2018 FIFA World Cup™ Leaves Lasting Impact</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/brands" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/sustainability">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/sustainability-228-60-7e3b66d0.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/sustainability-228-60-7e3b66d0.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/sustainability-228-60-7e3b66d0.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/sustainability-228-60-7e3b66d0.rendition.226.60.jpg" alt="sustainability-228-60-7e3b66d0.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/coca-cola-ensures-the-2018-fifa-world-cup-leaves-a-lasting-impac">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact","tablet":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact","mobile":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact"}'>
                            <nobr>Coca-Cola</nobr> Ensures 2018 FIFA World Cup™ Leaves Lasting Impact</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-sponsors-nelson-mandela-annual-lecture-in-south-africa">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Sponsors Nelson Mandela Annual Lecture in South Africa","tablet":"Coca-Cola Sponsors Nelson Mandela Annual Lecture in South Africa","mobile":"Coca-Cola Sponsors Nelson Mandela Annual Lecture in South Africa"}'>
                            <nobr>Coca-Cola</nobr> Sponsors Nelson Mandela Annual Lecture in South Africa</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-earnings-6-questions-with-chief-growth-officer-francisco-crespo">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo","tablet":"Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo","mobile":"Coca-Cola Earnings: 6 Questions with Chief Growth Officer Francisco Crespo"}'>
                            <nobr>Coca-Cola</nobr> Earnings: 6 Questions with Chief Growth Officer Francisco Crespo</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/lighting-up-for-inclusion-coca-cola-turns-atlanta-hq-red-to-celebrate-special-olympics-50th-anniversary">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Lighting Up for Inclusion: <nobr>Coca-Cola</nobr> Turns Atlanta HQ Red to Celebrate Special Olympics’ 50th Anniversary","tablet":"Lighting Up for Inclusion: <nobr>Coca-Cola</nobr> Turns Atlanta HQ Red to Celebrate Special Olympics’ 50th Anniversary","mobile":"Lighting Up for Inclusion: <nobr>Coca-Cola</nobr> Turns Atlanta HQ Red to Celebrate Special Olympics’ 50th Anniversary"}'>
                            Lighting Up for Inclusion: <nobr>Coca-Cola</nobr> Turns Atlanta HQ Red to Celebrate Special Olympics’ 50th Anniversary</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/sustainability" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/sports">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/sports-228-60-7e3bbb3a.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/sports-228-60-7e3bbb3a.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/sports-228-60-7e3bbb3a.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/sports-228-60-7e3bbb3a.rendition.226.60.jpg" alt="sports-228-60-7e3bbb3a.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/coca-cola-ensures-the-2018-fifa-world-cup-leaves-a-lasting-impac">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact","tablet":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact","mobile":"Coca-Cola Ensures 2018 FIFA World Cup™ Leaves Lasting Impact"}'>
                            <nobr>Coca-Cola</nobr> Ensures 2018 FIFA World Cup™ Leaves Lasting Impact</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/coca-cola-fifa-world-cup-flag-bearers-from-latin-america-live-ou">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola FIFA World Cup Flag Bearers from Latin America Live Out their Dreams","tablet":"Coca-Cola FIFA World Cup Flag Bearers from Latin America Live Out their Dreams","mobile":"Coca-Cola FIFA World Cup Flag Bearers from Latin America Live Out their Dreams"}'>
                            <nobr>Coca-Cola</nobr> FIFA World Cup Flag Bearers from Latin America Live Out their Dreams</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/beyond-the-game-discover-russia-with-coca-cola-and-the-calvert-journal">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal","tablet":"Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal","mobile":"Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal"}'>
                            Beyond the Game: Discover Russia with <nobr>Coca-Cola</nobr> and The Calvert Journal</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/meet-daniel-barich-special-olympics-athlete-and-coca-cola-s-storytelling-intern-for-the-2018-usa-games">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"How Special Olympics Helped Storyteller Daniel Barich Find His Voice","tablet":"How Special Olympics Helped Storyteller Daniel Barich Find His Voice","mobile":"How Special Olympics Helped Storyteller Daniel Barich Find His Voice"}'>
                            How Special Olympics Helped Storyteller Daniel Barich Find His Voice</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/sports" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    <div class="callout">
            <a href="/topics/innovation">
                <img data-src='{
                        "desktop":"/content/dam/journey/us/en/private/icons/innovation-228-60-7e3bfcdf.jpg",
                        "tablet":"/content/dam/journey/us/en/private/icons/innovation-228-60-7e3bfcdf.jpg",
                        "mobile":"/content/dam/journey/us/en/private/icons/innovation-228-60-7e3bfcdf.rendition.226.60.jpg"
                    }' src="/content/dam/journey/us/en/private/icons/innovation-228-60-7e3bfcdf.rendition.226.60.jpg" alt="innovation-228-60-7e3bfcdf.jpg" title=""/>
            </a>
            <ul class="theme-font-secondary">
            <li class="item first"> <a href="/stories/paging-all-surge-fans-90s-cult-classic-now-available-on-coca-cola-freestyle-exclusively-at-burger-king">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants","tablet":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants","mobile":"Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants"}'>
                            Paging All SURGE Fans: ‘90s Cult Classic Now Available on <nobr>Coca-Cola</nobr> Freestyle, Exclusively at Burger King® Restaurants</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/gallery--coca-cola-share-chair-dispenses-ice-cold-coke-and-summe0">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories","tablet":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories","mobile":"Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories"}'>
                            Gallery: ‘Share Chair’ Dispenses Ice-Cold <nobr>Coca-Cola</nobr> and Summer Memories</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/introducing-coca-cola-orange-no-sugar-the-perfect-winter-twist">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"Coca-Cola Orange No Sugar Launches in Australia","tablet":"Coca-Cola Orange No Sugar Launches in Australia","mobile":"Coca-Cola Orange No Sugar Launches in Australia"}'>
                            <nobr>Coca-Cola</nobr> Orange No Sugar Launches in Australia</span>
                        </div>
                    </a>
                </li>
                <li class="item "> <a href="/stories/_growth-with-discipline-powers-strong-q2-results--coca-cola-pres">
					<div class="title">
                            <span itemprop="name" data-title='{"desktop":"‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts","tablet":"‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts","mobile":"‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts"}'>
                            ‘Growth With Discipline’ Powers Strong Q2 Results, <nobr>Coca-Cola</nobr> President and CEO Quincey Tells Analysts</span>
                        </div>
                    </a>
                </li>
                </ul>
            <a href="/topics/innovation" class="more-link"><i class="icon-double-angle-right" aria-hidden="true"></i>&nbsp;SEE MORE STORIES<span class="sr-only">SEE MORE STORIES</span></a>
        </div>
    </div>

    <div class="dynamic-section-links-container callouts-container royalSlider rsDefault "></div>
    <div id="stayandsip-slideshow-nav-left" class="side-navigation-colum left"> <i class="icon-chevron icon-chevron-left" aria-hidden="true"></i>
    </div>
    <div id="stayandsip-slideshow-nav-right" class="side-navigation-colum right"> <i class="icon-chevron icon-chevron-right" aria-hidden="true"></i>
    </div>
</div>
</div>
</div>
</div>
</div>
<div class="ReferenceParagraph section"><div class="RawHtml rawhtml"><div class="raw_container">
	<!--Added script for CJISSUES-4266-->
<script>
setTimeout(function(){ $('.big_desktop .stock-ticker .icon-sort-up').css('right','-40px');$('.big_desktop .stock-ticker .icon-sort-down').css('right','-40px');$('.big_desktop .topic-category-promo-spaces .stock-ticker .up').css('margin-left','-50px'); }, 5000);
</script></div></div>
</div>

</div>
</div>
</div>
<div class="TwoWide"><!--  Add c:if tag around all this div based on the property from dictionary -->

<div id="social-stats" class="no-count">
    <div class="shadow"></div>
    <h4 class="headline-section theme-main-subtitle ">
        <span itemprop="name" data-title='{"desktop":"<span class="nobr">COCA-COLA ON SOCIAL</span> <strong class=\"theme-secondary\"></strong>","tablet":"<span class="nobr">COCA-COLA ON SOCIAL</span> <strong class=\"theme-secondary\"></strong>","mobile":"<span class="nobr">COCA-COLA ON SOCIAL</span> <strong class=\"theme-secondary\"></strong>"}'>
            <span class="nobr">COCA-COLA ON SOCIAL</span> <strong class="theme-secondary knockout-bgcolor"></strong></span>
    </h4>
    <div class="container" data-network-count="5" 
    	 data-social-count-service-url="https://uc8sgmjzag.execute-api.us-east-1.amazonaws.com/prod/getSocialCounts"
    	 data-social-count-request='{"site":"US_EN","trueCache":"true","socialNetworks":[{"networkName":"FACEBOOK","accountName":"TheCocaColaCo"},{"networkName":"TWITTER","accountName":"COCACOLACO"},{"networkName":"LINKEDIN","accountName":"1694"},{"networkName":"YOUTUBE","accountName":"CocaColaCo"},{"networkName":"INSTAGRAM","accountName":"1701604123"}]}'>
        <div data-order="1" class="statistic">
                <div class="icon">
                    <a href="https://www.facebook.com/TheCocaColaCo" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/facebook-icon.png" width="35" height="35" alt="facebook-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper FACEBOOK &nbsp; TheCocaColaCo">
                    <div class="value"></div>
                    <div class="term">LIKES</div>
                </div>
            </div>
        <div data-order="2" class="statistic">
                <div class="icon">
                    <a href="https://twitter.com/COCACOLACO" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/socialicon-twit.png" width="35" height="35" alt="socialicon-twit.png"/>
                    </a>
                </div>
                <div class="text-wrapper TWITTER &nbsp; COCACOLACO">
                    <div class="value"></div>
                    <div class="term">FOLLOWERS</div>
                </div>
            </div>
        <div data-order="3" class="statistic">
                <div class="icon">
                    <a href="https://www.linkedin.com/company/the-coca-cola-company" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/linkedin-icon.png" width="35" height="35" alt="linkedin-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper LINKEDIN &nbsp; 1694">
                    <div class="value"></div>
                    <div class="term">FOLLOWERS</div>
                </div>
            </div>
        <div data-order="4" class="statistic">
                <div class="icon">
                    <a href="https://www.youtube.com/user/CocaColaCo" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/youtube-icon.png" width="35" height="35" alt="youtube-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper YOUTUBE &nbsp; CocaColaCo">
                    <div class="value"></div>
                    <div class="term">VIEWS</div>
                </div>
            </div>
        <div data-order="5" class="statistic">
                <div class="icon">
                    <a href="https://instagram.com/TheCocaColaCo" target="_blank" title="">
                        <img src="/content/dam/journey/gl/gl/icons/instagram-icon.png" width="35" height="35" alt="instagram-icon.png"/>
                    </a>
                </div>
                <div class="text-wrapper INSTAGRAM &nbsp; 1701604123">
                    <div class="value"></div>
                    <div class="term">FOLLOWERS</div>
                </div>
            </div>
        </div>
</div>
</div>
<div class="Flash"><!--googleoff: all-->
<footer
    data-masthead-url="/content/journey/us/en/_jcr_content.mastheadauthors.json/content/journey/us/en/homepage.json"
    data-notifications-ui="/content/journey/us/en/_jcr_content.newsLetterFlyOut.html/content/journey/us/en/homepage.html"
    data-subscribe="/content/journey/us/en/homepage/_jcr_content/footer.subscribe.json"
    data-search-url="http://www.coca-colacompany.com/search" 
    data-newsletter-visit="true" 
    >
    
    <nav class="top-level antialiased" role="navigation" aria-label="footer_TopMenu">
        <ul>
        <li class="first">
	      <a href="/homepage" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"Front Page<strong class=\"theme-secondary\"></strong>",
						"tablet":"Front Page<strong class=\"theme-secondary\"></strong>",
						"mobile":"Front Page<strong class=\"theme-secondary\"></strong>"}'>
							
						Front Page<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/brands" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"tablet":"BRANDS<strong class=\"theme-secondary\"></strong>",
						"mobile":"BRANDS<strong class=\"theme-secondary\"></strong>"}'>
							
						BRANDS<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/our-way-forward" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"tablet":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>",
						"mobile":"OUR WAY FORWARD<strong class=\"theme-secondary\"></strong>"}'>
							
						OUR WAY FORWARD<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/sustainability" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"tablet":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>",
						"mobile":"SUSTAINABILITY<strong class=\"theme-secondary\"></strong>"}'>
							
						SUSTAINABILITY<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/innovation" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"tablet":"INNOVATION<strong class=\"theme-secondary\"></strong>",
						"mobile":"INNOVATION<strong class=\"theme-secondary\"></strong>"}'>
							
						INNOVATION<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            <li class="">
	      <a href="/history" class="">
          <span itemprop="name" data-override-size="" data-title='{
						"desktop":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"tablet":"HISTORY<strong class=\"theme-secondary\"></strong>",
						"mobile":"HISTORY<strong class=\"theme-secondary\"></strong>"}'>
							
						HISTORY<strong class="theme-secondary"></strong></span>
                </a>
            </li>
            </ul>
    </nav>
	<nav class="secondary antialiased" role="navigation" aria-label="footer_SecondaryMenu">		
        <ul>
        <li class="first">
		<a href="/our-company">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Our Company","tablet":"Our Company","mobile":"Our Company"}' class="">Our Company</span>
            </a>
         </li>
        <li class="">
		<a href="http://www.coca-colaproductfacts.com/">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Product Facts (U.S.)","tablet":"Product Facts (U.S.)","mobile":"Product Facts (U.S.)"}' class="">Product Facts (U.S.)</span>
            </a>
         </li>
        <li class="">
		<a href="/investors">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Investors","tablet":"Investors","mobile":"Investors"}' class="">Investors</span>
            </a>
         </li>
        <li class="">
		<a href="/press-center">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Press Center","tablet":"Press Center","mobile":"Press Center"}' class="">Press Center</span>
            </a>
         </li>
        <li class="">
		<a href="/careers">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Careers","tablet":"Careers","mobile":"Careers"}' class="">Careers</span>
            </a>
         </li>
        <li class="">
		<a href="/contact-us">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Contact Us","tablet":"Contact Us","mobile":"Contact Us"}' class="">Contact Us</span>
            </a>
         </li>
        <li class="">
		<a href="/newsletter-sign-up">
          <span itemprop="name" data-override-size="" data-title='{"desktop":"Newsletter","tablet":"Newsletter","mobile":"Newsletter"}' class="">Newsletter</span>
            </a>
         </li>
        <li><a href="javascript:;" id="masthead_link"><span class="open"></span>Masthead</a></li>
            </ul>		
        <div id="masthead">
            <h4 class="heading-small"></h4>
            <a href="javascript:;" id="masthead_close_link">Close<span></span></a>
            <ul class="authors"></ul>
            <div class="author-social-links"></div>
        </div>
    </nav>
	<div id="footer_notifications" data-loaded="false">
	    <span class='loading'>Loading...</span>
	</div>
	<div class="footer-wedge-1"></div>
	<div id="link-lists" class="antialiased" role="navigation" aria-label="LinkList">
			<div class="column column-first">
				<section>
					<h5>Company Information</h5>
					<ul>
			<li class="">
			<a href="https://www.coca-colacompany.com/annual-review/2017/index.html">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"2017 Year in Review","tablet":"2017 Year in Review","mobile":"2017 Year in Review"}' class="">2017 Year in Review</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/2016-sustainability-report">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"2016 Sustainability Report","tablet":"2016 Sustainability Report","mobile":"2016 Sustainability Report"}' class="">2016 Sustainability Report</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/our-company/about-coca-cola-journey">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"About <nobr>Coca-Cola</nobr> Journey","tablet":"About <nobr>Coca-Cola</nobr> Journey","mobile":"About <nobr>Coca-Cola</nobr> Journey"}' class="">About <nobr>Coca-Cola</nobr> Journey</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/contact-us">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Ask <nobr>Coca-Cola</nobr>","tablet":"Ask <nobr>Coca-Cola</nobr>","mobile":"Ask <nobr>Coca-Cola</nobr>"}' class="">Ask <nobr>Coca-Cola</nobr></span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colaproductfacts.com/en/homepage/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Product Facts (U.S.)","tablet":"Coca-Cola Product Facts (U.S.)","mobile":"Coca-Cola Product Facts (U.S.)"}' class="">Coca-Cola Product Facts (U.S.)</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/diversity-and-inclusion">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Diversity & Inclusion","tablet":"Diversity & Inclusion","mobile":"Diversity & Inclusion"}' class="">Diversity & Inclusion</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/our-company/human-workplace-rights">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Human & Workplace Rights","tablet":"Human & Workplace Rights","mobile":"Human & Workplace Rights"}' class="">Human & Workplace Rights</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/careers/career-opportunities-job-search">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Job Search","tablet":"Job Search","mobile":"Job Search"}' class="">Job Search</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/our-company/leadership">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Leadership Bios","tablet":"Leadership Bios","mobile":"Leadership Bios"}' class="">Leadership Bios</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/press-center/press-releases">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Press Releases","tablet":"Press Releases","mobile":"Press Releases"}' class="">Press Releases</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.coca-colacompany.com/feeds/articles.xml" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"RSS Feed","tablet":"RSS Feed","mobile":"RSS Feed"}' class="">RSS Feed</span>
				</a>
			  </li>
			<li class="">
			<a href="http://www.worldofcoca-cola.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"World of <nobr>Coca-Cola</nobr>","tablet":"World of <nobr>Coca-Cola</nobr>","mobile":"World of <nobr>Coca-Cola</nobr>"}' class="">World of <nobr>Coca-Cola</nobr></span>
				</a>
			  </li>
			<li class="last">
			<a href="https://buy.shareacoke.com/" target="_blank">
				<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Store","tablet":"Coca-Cola Store","mobile":"Coca-Cola Store"}' class="">Coca-Cola Store</span>
				</a>
			  </li>
			</ul>
				</section>
			</div>
			<div class="column column-second">
				<section>
					<h5>Topics</h5>
					<ul>
				<li class="">
						<a href="/topics/coca-cola-renew">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"#CocaColaRenew","tablet":"#CocaColaRenew","mobile":"#CocaColaRenew"}' class="">#CocaColaRenew</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/brands">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Brands","tablet":"Brands","mobile":"Brands"}' class="">Brands</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/business">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Business","tablet":"Business","mobile":"Business"}' class="">Business</span>
						</a>
					</li>
				<li class="">
						<a href="/diversity-and-inclusion">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Diversity & Inclusion","tablet":"Diversity & Inclusion","mobile":"Diversity & Inclusion"}' class="">Diversity & Inclusion</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/food">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Food","tablet":"Food","mobile":"Food"}' class="">Food</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/heritage">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"History","tablet":"History","mobile":"History"}' class="">History</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/innovation">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Innovation","tablet":"Innovation","mobile":"Innovation"}' class="">Innovation</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/jobs">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Jobs","tablet":"Jobs","mobile":"Jobs"}' class="">Jobs</span>
						</a>
					</li>
				<li class="">
						<a href="/topics/sports">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Sports","tablet":"Sports","mobile":"Sports"}' class="">Sports</span>
						</a>
					</li>
				<li class="last">
						<a href="/topics/sustainability">
						<span itemprop="name" data-override-size="" data-title='{"desktop":"Sustainability","tablet":"Sustainability","mobile":"Sustainability"}' class="">Sustainability</span>
						</a>
					</li>
				</ul>
				</section>
			</div>
			<div class="column column-third">
				<section>
					<h5>Brands</h5>
					<ul>
					<li class="">							
							<a href="/brands/coca-cola">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola","tablet":"Coca-Cola","mobile":"Coca-Cola"}' class="">Coca-Cola</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/coca-cola-zero">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola zero","tablet":"Coca-Cola zero","mobile":"Coca-Cola zero"}' class="">Coca-Cola zero</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/diet-coke">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Diet Coke","tablet":"Diet Coke","mobile":"Diet Coke"}' class="">Diet Coke</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/coca-cola-life">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Coca-Cola Life","tablet":"Coca-Cola Life","mobile":"Coca-Cola Life"}' class="">Coca-Cola Life</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/ciel">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Ciel","tablet":"Ciel","mobile":"Ciel"}' class="">Ciel</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/dasani">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"DASANI","tablet":"DASANI","mobile":"DASANI"}' class="">DASANI</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/del-valle">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Del Valle","tablet":"Del Valle","mobile":"Del Valle"}' class="">Del Valle</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/fanta">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Fanta","tablet":"Fanta","mobile":"Fanta"}' class="">Fanta</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/fresca">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Fresca","tablet":"Fresca","mobile":"Fresca"}' class="">Fresca</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/fuze">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"FUZE","tablet":"FUZE","mobile":"FUZE"}' class="">FUZE</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/fuze-tea">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"FUZE tea","tablet":"FUZE tea","mobile":"FUZE tea"}' class="">FUZE tea</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/glaceau-smartwater">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"glacéau smartwater","tablet":"glacéau smartwater","mobile":"glacéau smartwater"}' class="">glacéau smartwater</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/glaceau-vitaminwater">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"glacéau vitaminwater","tablet":"glacéau vitaminwater","mobile":"glacéau vitaminwater"}' class="">glacéau vitaminwater</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/honest-tea">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Honest Tea","tablet":"Honest Tea","mobile":"Honest Tea"}' class="">Honest Tea</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/mello-yello">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Mello Yello","tablet":"Mello Yello","mobile":"Mello Yello"}' class="">Mello Yello</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/minute-maid">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Minute Maid","tablet":"Minute Maid","mobile":"Minute Maid"}' class="">Minute Maid</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/odwalla">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Odwalla","tablet":"Odwalla","mobile":"Odwalla"}' class="">Odwalla</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/powerade">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"POWERADE","tablet":"POWERADE","mobile":"POWERADE"}' class="">POWERADE</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/powerade-zero">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"POWERADE ZERO","tablet":"POWERADE ZERO","mobile":"POWERADE ZERO"}' class="">POWERADE ZERO</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/simply">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Simply Beverages","tablet":"Simply Beverages","mobile":"Simply Beverages"}' class="">Simply Beverages</span>
							</a>
						</li>
					<li class="">							
							<a href="/brands/sprite">
								<span itemprop="name" data-override-size="" data-title='{"desktop":"Sprite","tablet":"Sprite","mobile":"Sprite"}' class="">Sprite</span>
							</a>
						</li>
					<li class="last">
						<a href="/brands">
							<span itemprop="name" data-override-size="" data-title='{"desktop":"View All Brands &raquo;","tablet":"View All Brands &raquo;","mobile":"View All Brands &raquo;"}' class="">View All Brands &raquo;</span>
							</a>
						</li>
					</ul>
				</section>
			</div>
			<div class="column column-fourth">
				<section class="about-col">
					<h5 class="gray title hidden-phone">Policies</h5>
					<h5 class="gray">
				<a href="/content/journey/us/en/our-company/privacy-policy#advertising" class="normal">
					<span itemprop="name" data-title='{"desktop":"About our Ads","tablet":"About our Ads","mobile":"About our Ads"}'>About our Ads</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/ca-transparency-in-supply-chain-act" class="normal">
					<span itemprop="name" data-title='{"desktop":"California Transparency in Supply Chain Act","tablet":"California Transparency in Supply Chain Act","mobile":"California Transparency in Supply Chain Act"}'>California Transparency in Supply Chain Act</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/cookie-policy" class="normal">
					<span itemprop="name" data-title='{"desktop":"Cookie Policy","tablet":"Cookie Policy","mobile":"Cookie Policy"}'>Cookie Policy</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/dmca-policy" class="normal">
					<span itemprop="name" data-title='{"desktop":"DMCA Policy","tablet":"DMCA Policy","mobile":"DMCA Policy"}'>DMCA Policy</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/coca-cola-journey-and-coca-cola-unbottled-house-rules" class="normal">
					<span itemprop="name" data-title='{"desktop":"House Rules","tablet":"House Rules","mobile":"House Rules"}'>House Rules</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/privacy-policy" class="normal">
					<span itemprop="name" data-title='{"desktop":"Privacy Policy","tablet":"Privacy Policy","mobile":"Privacy Policy"}'>Privacy Policy</span>
					  </a>
					</h5>
					 <h5 class="gray">
				<a href="/our-company/the-coca-cola-company-terms-of-use" class="normal">
					<span itemprop="name" data-title='{"desktop":"Terms of Use","tablet":"Terms of Use","mobile":"Terms of Use"}'>Terms of Use</span>
					  </a>
					</h5>
					 </section>
			</div>
			<div class="clearfix"></div>
		</div>	
    <div class="footer-wedge-2"></div>
	<div class="hidden-phone corporate-footer-text antialiased">
        <p>The <nobr>Coca-Cola</nobr> Company (NYSE: KO) is a total beverage company, offering over 500 brands in more than 200 countries. In addition to the company’s <nobr>Coca-Cola</nobr> brands, our portfolio includes some of the world’s most valuable beverage brands, such as AdeS soy-based beverages, Ayataka green tea, Dasani waters, Del Valle juices and nectars, Fanta, Georgia coffee, Gold Peak teas and coffees, Honest Tea, innocent smoothies and juices, Minute Maid juices, Powerade sports drinks, Simply juices, smartwater, Sprite, vitaminwater and ZICO coconut water. We’re constantly transforming our portfolio, from reducing sugar in our drinks to bringing innovative new products to market. We’re also working to reduce our environmental impact by replenishing water and promoting recycling. With our bottling partners, we employ more than 700,000 people, bringing economic opportunity to local communities worldwide.&nbsp;</p>
<p><sub>The fairlife® brand is owned by fairlife, LLC, our joint venture with Select Milk Producers, Inc., and fairlife’s products are distributed by our Company and certain of our bottling partners.</sub>&nbsp;</p>
</div>
    <p class="copyright gray antialiased">© 2018 THE <nobr>COCA-COLA</nobr> COMPANY</p>
    <div class="clearfix"></div>
     
</footer>
 <!--googleon: all--></div>
</div><!--  prevent it is reloaded under author mode -->
<script type="text/javascript" src="/etc/clientlibs/granite/lodash/modern.min.js"></script>
<script type="text/javascript" src="/etc/designs/journey/main.min.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/globalize/en_US.min.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/components/all.min.js"></script>
<script type="text/javascript" src="/etc/designs/journey/libs/components/extra.min.js"></script>

</div>
       

<script>
// adding code to stop alert happening in Prod version on virtuOz
                $(function(){
                                stopAlert();
                });
 
                function stopAlert(){
                                window.alert = function() {};
                }
</script>



<script>
// Removes red overlay from country map
$('#regional-country-selector > ul.link-list > li > a.sub-menu-link').click(function() {
      setTimeout(function() 
      {
        $('#global-regional-map > div > div > div.map-container > div.overlay').remove();
      }, 500);
});
</script>
</body>
</html>
