
<!DOCTYPE html>
<html lang="en">

<head>
    
    <meta name="viewport" content="width=device-width; initial-scale=1.0;" />

    <!-- Use modern browser feature to preload assets -->
    <link rel="preload" href="/themes/rolex/vendors~app.js?v=1.3.14" as="script">
    <link rel="preload" href="/themes/rolex/app.js?v=1.3.14" as="script">


    


<!-- Quantcast Choice. Consent Manager Tag v2.0 (for TCF 2.0) -->
<script type="text/javascript" async=true>
(function() {
  var host = window.location.hostname;
  var element = document.createElement('script');
  var firstScript = document.getElementsByTagName('script')[0];
  var url = 'https://cmp.quantcast.com'
    .concat('/choice/', 'j6ef-UjNU-sjS', '/', host, '/choice.js?tag_version=V2');
  var uspTries = 0;
  var uspTriesLimit = 3;
  element.async = true;
  element.type = 'text/javascript';
  element.src = url;

  firstScript.parentNode.insertBefore(element, firstScript);

  function makeStub() {
    var TCF_LOCATOR_NAME = '__tcfapiLocator';
    var queue = [];
    var win = window;
    var cmpFrame;

    function addFrame() {
      var doc = win.document;
      var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);

      if (!otherCMP) {
        if (doc.body) {
          var iframe = doc.createElement('iframe');

          iframe.style.cssText = 'display:none';
          iframe.name = TCF_LOCATOR_NAME;
          doc.body.appendChild(iframe);
        } else {
          setTimeout(addFrame, 5);
        }
      }
      return !otherCMP;
    }

    function tcfAPIHandler() {
      var gdprApplies;
      var args = arguments;

      if (!args.length) {
        return queue;
      } else if (args[0] === 'setGdprApplies') {
        if (
          args.length > 3 &&
          args[2] === 2 &&
          typeof args[3] === 'boolean'
        ) {
          gdprApplies = args[3];
          if (typeof args[2] === 'function') {
            args[2]('set', true);
          }
        }
      } else if (args[0] === 'ping') {
        var retr = {
          gdprApplies: gdprApplies,
          cmpLoaded: false,
          cmpStatus: 'stub'
        };

        if (typeof args[2] === 'function') {
          args[2](retr);
        }
      } else {
        if(args[0] === 'init' && typeof args[3] === 'object') {
          args[3] = Object.assign(args[3], { tag_version: 'V2' });
        }
        queue.push(args);
      }
    }

    function postMessageEventHandler(event) {
      var msgIsString = typeof event.data === 'string';
      var json = {};

      try {
        if (msgIsString) {
          json = JSON.parse(event.data);
        } else {
          json = event.data;
        }
      } catch (ignore) {}

      var payload = json.__tcfapiCall;

      if (payload) {
        window.__tcfapi(
          payload.command,
          payload.version,
          function(retValue, success) {
            var returnMsg = {
              __tcfapiReturn: {
                returnValue: retValue,
                success: success,
                callId: payload.callId
              }
            };
            if (msgIsString) {
              returnMsg = JSON.stringify(returnMsg);
            }
            if (event && event.source && event.source.postMessage) {
              event.source.postMessage(returnMsg, '*');
            }
          },
          payload.parameter
        );
      }
    }

    while (win) {
      try {
        if (win.frames[TCF_LOCATOR_NAME]) {
          cmpFrame = win;
          break;
        }
      } catch (ignore) {}

      if (win === window.top) {
        break;
      }
      win = win.parent;
    }
    if (!cmpFrame) {
      addFrame();
      win.__tcfapi = tcfAPIHandler;
      win.addEventListener('message', postMessageEventHandler, false);
    }
  };

  makeStub();

  var uspStubFunction = function() {
    var arg = arguments;
    if (typeof window.__uspapi !== uspStubFunction) {
      setTimeout(function() {
        if (typeof window.__uspapi !== 'undefined') {
          window.__uspapi.apply(window.__uspapi, arg);
        }
      }, 500);
    }
  };

  var checkIfUspIsReady = function() {
    uspTries++;
    if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
      console.warn('USP is not accessible');
    } else {
      clearInterval(uspInterval);
    }
  };

  if (typeof window.__uspapi === 'undefined') {
    window.__uspapi = uspStubFunction;
    var uspInterval = setInterval(checkIfUspIsReady, 6000);
  }
})();
</script>
<!-- End Quantcast Choice. Consent Manager Tag v2.0 (for TCF 2.0) -->

<script type="text/javascript" async=true>
document.addEventListener("DOMContentLoaded", function (event) {
  window.__tcfapi("addEventListener", 2, function (tcData, listenerSuccess) {
    if (listenerSuccess && tcData.eventStatus === "tcloaded") {
    }
    if (listenerSuccess && tcData.eventStatus === "useractioncomplete") {
      if (!tcData.gdprApplies) {
        window._satellite.setVar("CC-Analyticsconsent", true)
        window._satellite.setVar("CC-CSconsent", true)
        var event = new CustomEvent("event-view-end")
        var obj = document.querySelector("body")
        obj.dispatchEvent(event)
      } else {
        /**
         * IAB vendors.
         */
        var vendor_consent_id_list = []
        var vendor_consent_id_list_str = ""
        Object.keys(tcData.vendor.consents).forEach(function (key) {
          if (tcData.vendor.consents[key]) {
            vendor_consent_id_list.push(key)
          }
        })
        vendor_consent_id_list_str = vendor_consent_id_list.join()
        window.__tcfapi("getNonIABVendorConsents", 2, function (nonIabConsent, nonIabSuccess) {
          var CSconsent = false
          var analyticsConsent = false

          const satelliteSetting = () => {
            window._satellite.setVar("CC-Analyticsconsent", analyticsConsent)
            window._satellite.setVar("CC-CSconsent", CSconsent)
            var event = new CustomEvent("event-view-end")
            var obj = document.querySelector("body")
            obj.dispatchEvent(event)
          }

          if (nonIabSuccess && nonIabConsent.nonIabVendorConsents) {
            var nonIABVendorsIds = nonIabConsent.nonIabVendorConsents

            if (nonIABVendorsIds != undefined) {
              CSconsent = nonIABVendorsIds[1]
              analyticsConsent = nonIABVendorsIds[3]
              if (window._satellite) {
                satelliteSetting()
              } else {
                const interval = window.setInterval(() => {
                  if (window._satellite) {
                    satelliteSetting()
                    clearInterval(interval)
                  }
                }, 300)
              }
            }
          }
        })
      }
    }
  })
})

</script>

    <title>The Official Rolex Newsroom website</title>


<link rel="canonical" href="https://newsroom.rolex.com/" />



                <link href="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/shared/rolex_fav_icon_32x32.jpg" rel="shortcut icon" />



<meta property="fb:app_id"  content="App ID Rolex Newsroom" /><meta property="og:description"  content="Discover the Rolex Newsroom, the official source for the latest news on Rolex collections and commitments. See all the content on newsroom.rolex.com" /><meta property="og:type"  content="website" /><meta property="og:site_name"  content="Rolex Newsroom" /><meta property="og:admins"  content="Admins Rolex Newsroom" /><meta property="og:image"  content="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/gmt-master-ii/search-share/newsroom-topolino-share-m126710grnr-0003_2401jva_001_rvb.jpg" /><meta property="og:title"  content="The Official Rolex Newsroom website" /><meta property="og:url"  content="https://newsroom.rolex.com" />


<meta  name="description" content="Discover the Rolex Newsroom, the official source for the latest news on Rolex collections and commitments. See all the content on newsroom.rolex.com" />

<script type="text/javascript" src="/ruxitagentjs_ICA27SVfqrux_10201200909073022.js" data-dtconfig="app=77dd3b185c7597e1|featureHash=ICA27SVfqrux|vcv=2|reportUrl=/rb_bf20090htd|rdnt=1|uxrgce=1|bp=2|cuc=ukulfesn|dpvc=1|lastModification=1601381082119|dtVersion=10201200909073022|tp=500, 50,0,1|uxdcw=1500|vs=2"></script>


<meta property="twitter:site"  content="website" /><meta property="twitter:image"  content="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/gmt-master-ii/search-share/newsroom-topolino-share-m126710grnr-0003_2401jva_001_rvb.jpg" /><meta property="twitter:description"  content="Discover the Rolex Newsroom, the official source for the latest news on Rolex collections and commitments. See all the content on newsroom.rolex.com" /><meta property="twitter:title"  content="The Official Rolex Newsroom website" /><meta property="twitter:card"  content="summary_large_image" />

    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="alternate" href="https://newsroom.rolex.com/fr" hreflang="fr" />
    <link rel="alternate" href="https://newsroom.rolex.com" hreflang="x-default" />
    <link rel="alternate" href="https://newsroom.rolex.com" hreflang="en" />
    <link rel="alternate" href="https://newsroom.rolex.com/zh-hant" hreflang="zh-hant" />
    <link rel="alternate" href="https://newsroom.rolex.com/zh-hans" hreflang="zh-hans" />
    <meta name="google-site-verification" content="x0VyG-O0vGCQfqBtER1_SornXuNp9CoC05ZDCqWWjZU" />


<script type="text/javascript">
    var digitalDataLayer = {
        environment: {
            environmentName: "Production",
            environmentVersion: "1.3.14",
            siteName: "Newsroom",
            statusCode: 200
        },
        location: {
            countryCode: "NL",
            languageCode: "en"
        },
        page: {
            pageInfo: {
                pageName: "home",
                pageReferrer: document.referrer,
                pageSiteSection: "home",
                pageSiteSubSection: "",
                pageType: "homepage",
                pageURL: "https://newsroom.rolex.com/"
            }
        },
        user: {
            loginStatus: "Not logged"
        }
    }
</script>
<script src="https://assets.adobedtm.com/7e3b3fa0902e/f9ab356d1fd3/launch-0c4d5e94a362.min.js" async></script>


    
    <link rel="stylesheet" href="/themes/rolex/app.css?v=1.3.14" as="style">
    <link href="https://fast.fonts.net/t/1.css?apiType=css&amp;projectid=3fadd8a3-dbcb-4cce-bb01-f72c00230171"
          rel="stylesheet" media="all">

</head>

<body class="default-device bodyclass">
    
<ul>
    <li>
        <a href="#contentLink" class="skipto">
            <span class="skipto__text">Skip to content</span>
        </a>
    </li>
    <li>
        <a href="#footer" class="skipto">
            <span class="skipto__text">Skip to footer</span>
        </a>
    </li>
</ul>

    <div class="svg-sprite" style="display:none">
        <svg xmlns="http://www.w3.org/2000/svg"><symbol id="sprite-arrow" viewBox="0 0 21 15"><path d="M20.97 8H2l6.19 5.92-.69.72L.04 7.51 7.5.36l.69.72L2.01 7h18.96z" fill="#FFF" fill-rule="evenodd"/></symbol><symbol id="sprite-bookmark" viewBox="0 0 15 17.007"><path d="M2 2a1 1 0 011.007-1h11.986A1 1 0 0116 2v14.434c0 .554-.357.727-.789.392l-5.421-4.2a1.36 1.36 0 00-1.579 0l-5.421 4.2c-.437.338-.79.174-.79-.392z" fill-rule="evenodd" transform="translate(-1.5 -.5)"/></symbol><symbol id="sprite-chevron" viewBox="0 0 15 17"><path d="M8.48 15.43L.57 7.93 8.48.43l1.95 1.95L4.6 7.93l5.83 5.55z" transform="translate(2 .46)" fill="currentColor"/></symbol><symbol id="sprite-close" viewBox="0 0 11 11"><path d="M6.9 5.5L11 9.6 9.6 11 5.5 6.9 1.4 11 0 9.6l4.1-4.1L0 1.4 1.4 0l4.1 4.1L9.6 0 11 1.4z"/></symbol><symbol id="sprite-download-icon" viewBox="0 0 16 15"><path d="M15 13.3V15H0v-1.7h15zM8.3 0v7.7h2.5L9.1 9.3l-1.6 1.6-1.6-1.6-1.7-1.6h2.5V0h1.6z" transform="translate(.35)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-exit-icon" viewBox="0 0 15 15"><path d="M7.89 11h1.66v4H0V0h9.55v4H7.89V1.66H1.66v11.68h6.23V11zm5.49-5.13l-1.62-1.64v2.45H4.09v1.66h7.68v2.45l1.62-1.64L15 7.5l-1.62-1.63z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-facebook-icon" viewBox="0 0 15 15"><path d="M8 0v2.25H5.07c-.31 0-.57.32-.57.63V4.5h3.25l-.61 2.25H4.5V15H2.25V6.75H0V4.5h2.25V2.75C2.25 1.16 3.42 0 5 0h3z" transform="translate(4)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-instagram-icon" viewBox="0 0 15 15"><path d="M10.86 0H4.14C1.86 0 0 1.86 0 4.14v6.72C0 13.14 1.86 15 4.14 15h6.72c2.28 0 4.14-1.86 4.14-4.14V4.14C15 1.86 13.14 0 10.86 0zm0 13.67H4.14c-1.55 0-2.81-1.26-2.81-2.81V4.14c0-1.55 1.26-2.81 2.81-2.81h6.72c1.55 0 2.81 1.26 2.81 2.81v6.72c0 1.55-1.26 2.81-2.81 2.81zM7.5 3.54c-2.13 0-3.87 1.73-3.87 3.87a3.87 3.87 0 007.74 0c0-2.14-1.74-3.87-3.87-3.87zm0 6.4c-1.4 0-2.53-1.14-2.53-2.53 0-1.4 1.14-2.53 2.53-2.53a2.54 2.54 0 012.53 2.53c0 1.39-1.13 2.53-2.53 2.53zm4.72-7.25c.18.18.29.43.29.69 0 .26-.1.51-.29.69-.18.18-.43.29-.69.29-.26 0-.51-.1-.69-.29a.985.985 0 01-.29-.69c0-.26.1-.51.29-.69.18-.18.43-.29.69-.29.25.01.51.11.69.29z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-languages" viewBox="0 0 29 29"><path d="M18.021 9.004l.083.345-.29.829-.29-.125.028-.69.47-.36zm-4.57-6.988v.622l.455-.194.124-.193-.483-.898-.29.194.014.234-.276.318-.014.331h.331l.138-.414zM10.3.636l-.494-.14-.622.65.801 2.002.373.082.028-.649.262-.152.014-.248.262-.47-.193-.359-.428-.718zm-.786 8.009l-.925-.663-1.368-.124-.193.317-.276-.096-.138-.484-.415-.027.166-.47-.331-.028-.345.263L5.455 7l.207-.552.925-.124.166.455.235-.027V6.31l.649-.856.814-.428 1.064-.442-.746-1.602-.345.193-.276-.718-.65.028-.165 1.284-.235.028-.994-1.008.207-.525 1.022-.194V.83l-2.555.248L3.452.331l-.621.553L1.16 0 .235.525l.345.483H.207l-.097.373.511.069-.51.387.165.552.442.097L0 3.052l1.119-.525.607-.331 1.008.594.787 1.284V5.22l.47.856.787 1.174.953.331.4.18.484.594.331-.055-.373.58.304 1.173.65.553-.788 3.038.276.649.787.193-.483-.497.65-1.174 1.394-1.146.11-.525.677-.096.677-1.34-1.202-.552-.11-.511zm16.281.235l-.069.552-.483-.18.083-.303-.539-.042-.69.622-.732.262.18.967-.07.193.276.152 1.091-.263.428.235.208-.11.138.386.552.152.4-.234.221-1.16-.607-.58-.387-.65zm-2.706-.553l.58.11.262-.787-.152-.124-.787.47.097.331zm5.095-6.352L29 1.533l-.221-.594-5.924-.8s-3.59.372-5.58.565L15.564.4l-.69.36-.276.635-.332.235-.014.538.18.11.373-.207.18.553.33-.124.222-.553-.221-.22.193-.415.235-.276.138.014-.138.331-.138.11.055.139-.014.013h.014l.318.815-.277-.097-.193.484-.704-.014-.124-.345-.166.207.055.22-.249.015-.303.414-.567.18.152.29.235.358-.746-.041.042.69.58.083.387-.566.538-.262.235.262.317.414.235-.262-.455-.29-.014-.276.22.097.36.276-.014.276.276.331.124-.414.346.4.607.111-.096.318-.235.138-.884-.221-.221.304-.58-.36-.097-.372-1.436.22-.732.87-.138 1.16.76.705 1.367-.083.4 1.202-.152.69.65 1.505.731-.124.732-1.326.4-.304-.11-.925.718-.635.221-.746-.718.318-.732-1.602.152-.028.718 1.354 1.381-.801-.47-.346-.358.18-.221-.511.152-.083.317.249 1.077.193.442.511.4.967.318-.29v-.373l.87-.58.318.649.262-.07.056.65.262.47-.58-.277.428.58.47.428 1.118.194-.607-.235-.442-.152-.152-.69-.36-.387.015-.387.414.414.4-.317-.373-.539.18-.276.829-.041.372-.663-.262-.732.331-.345.249.317.097.4.29-.151-.11-.456.248-.345.4-.07.47-1.242-.4-.276.552-.511.732.041.607-.47.47-.068-.76.884.014.773.58-.69-.028-.484.594-.124zm-2.21 1.27h-.151l-.028.774-.4.814-.511.36-.028.33.94-.538.04-.552.318-.276-.248-.194.138-.455-.07-.263zm2.417 7.789l.07.594-.691.621.442.041.4-.58.318-.4-.207-.014-.332-.262zM24.885 8.12l.607.594.346.027.152-.124.483.304-.193-.4-.926-.429-.47.028z" transform="translate(0 7.43)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-linkedin-icon" viewBox="0 0 15 16"><path d="M15 8.55v5.74h-3.1V8.93c0-1.34-.47-2.26-1.6-2.26-.86 0-1.39.62-1.62 1.22-.07.21-.11.51-.11.81v5.59h-3.1s.04-9.05 0-10h3.1V5.7c0 .01.01.01 0 .01V5.7c.48-.68 1.17-1.66 2.83-1.66 2.05 0 3.6 1.43 3.6 4.51zM1.68 0C.66 0 0 .72 0 1.66c0 .93.64 1.67 1.64 1.67h.02c1.03 0 1.68-.74 1.68-1.67C3.31.72 2.69 0 1.68 0zM.24 14.28H3.1v-10H.24v10z" transform="translate(0 .36)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol preserveAspectRatio="xMidYMid" id="sprite-loader-lightbox" viewBox="33 33 31 31"><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.9090909090909091s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(32.727 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.8181818181818182s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(65.455 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.7272727272727273s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(98.182 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.6363636363636364s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(130.91 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5454545454545454s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(163.636 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.45454545454545453s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(196.364 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.36363636363636365s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(229.09 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.2727272727272727s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(261.818 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.18181818181818182s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(294.545 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.09090909090909091s" repeatCount="indefinite"/></rect><rect x="48.5" y="36" rx="0" ry="0" width="3" height="6" fill="#fff" transform="rotate(327.273 50 50)"><animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"/></rect></symbol><symbol stroke="currentColor" id="sprite-loader" viewBox="0 0 44 44"><g fill="none" fill-rule="evenodd" stroke-width="2"><circle cx="22" cy="22" r="1"><animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite"/><animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite"/></circle><circle cx="22" cy="22" r="1"><animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite"/><animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite"/></circle></g></symbol><symbol id="sprite-logo" viewBox="0 0 86.3 61"><style>.st1{fill:#006039}</style><path class="st1" d="M1.4 55.7v4.5H0v-6.3h1.4l3.9 4.5v-4.5h1.4v6.3H5.4l-4-4.5zm9.9-1.9h6V55h-4.6v1.3h2.9v1.2h-2.9v1.4h4.6v1.2h-6.1v-6.3zm17.2 4.5l1.5-4.5h1.5l-2.1 6.3h-1.5L26.2 56l-1.7 4.1H23l-2-6.3h1.5l1.5 4.5 1.8-4.5h.8l1.9 4.5zm6.4 1.3v-1.5c.8.6 1.9 1 3 1 1 0 1.8-.2 1.8-.7 0-.5-.4-.7-1.7-.8h-.7c-1.5-.1-2.4-.7-2.4-2 0-1.4 1.5-2 3.2-2 1 0 1.8.2 2.5.5v1.4c-.6-.3-1.6-.7-2.6-.7s-1.7.3-1.7.8c0 .4.3.7 1.2.7h.8c1.7.1 2.9.5 2.9 1.9s-1.4 2.1-3.2 2.1c-1.3 0-2.4-.3-3.1-.7zm11.8-1.7v2.3h-1.4v-6.3h3.5c1.4 0 2.7.5 2.7 1.9 0 1-.8 1.6-1.6 1.7.3.1.7.4 1.1.9l1.5 1.8h-1.8l-1.1-1.3c-.5-.6-1-1-2-1h-.9zm2-1.2c.8 0 1.2-.3 1.2-.9 0-.5-.4-.8-1.2-.8h-2v1.7h2zm6.7.3c0-2.2 1.7-3.4 3.8-3.4 2.1 0 3.8 1.2 3.8 3.4s-1.7 3.4-3.8 3.4c-2.1 0-3.8-1.2-3.8-3.4zm6.1 0c0-1.4-1-2.2-2.3-2.2-1.3 0-2.3.8-2.3 2.2 0 1.4 1 2.2 2.3 2.2 1.3 0 2.3-.8 2.3-2.2zm5.3 0c0-2.2 1.7-3.4 3.8-3.4 2.1 0 3.8 1.2 3.8 3.4s-1.7 3.4-3.8 3.4c-2.1 0-3.8-1.2-3.8-3.4zm6.1 0c0-1.4-1-2.2-2.3-2.2-1.3 0-2.3.8-2.3 2.2 0 1.4 1 2.2 2.3 2.2 1.3 0 2.3-.8 2.3-2.2zm5.6-3.2H80l2.4 3 2.4-3h1.5v6.3h-1.4v-4.5l-2.1 2.5h-.7L80 55.7v4.5h-1.4v-6.4zM26.4 30.8c3.7 0 7.1 2.7 7.8 6.3 1.4 6.9-7.3 11.5-12.9 7s-2-13.3 5.1-13.3zm40.3.6l-.1 3.6v1.3h-1.1v-1.7c-.1-1.2-1-2.2-2.4-2.2h-5.3v5.1h2c.9-.1 1.6-.8 1.6-1.7v-.7h.9V41h-1v-1c-.1-.8-.8-1.6-1.8-1.6h-1.4v6h5.6c1.2-.1 2.2-1 2.2-2.3v-1.7H67v5.1H52.2v-1.1h2.1v-12h-2.1v-1.1l14.5.1zm10.1-.1v1.1h-1.2c-.5 0-.6.2-.6.5 0 .1.1.2.1.2l.5.6 2.3 2.7 2.9-3.3c.1-.1.1-.1.1-.2 0-.2-.3-.5-.5-.5h-1.3v-1.1h5.7v1.1H84c-1.1 0-1.4.4-2.3 1.3l-3.3 3.8 4.9 5.8c.9.8 1.1 1.2 2.1 1.2h.7v1.1h-8v-1.1h1.5c.2 0 .4-.3.4-.5 0-.1 0-.2-.1-.4l-.4-.5-2.9-3.4-3.4 4c-.1.1-.1.2-.1.4s0 .4.5.4h1.6v1.1H69v-1.1h.9c1.1 0 1.4-.4 2.3-1.3l3.9-4.4-4.3-5.2c-.8-.8-1-1.2-2-1.2h-.4v-1.1h7.4zm-65.6-.1c2.3 0 3.8 1.6 3.8 3.7 0 1.8-1.4 3.4-3.1 3.7.5.1 1.1.4 1.6.7.8.6 1 1.2 1.5 2.5l1 2.7c.3 0 1.4 0 1.6-.1v1H13c-.8-4-1.2-4.7-1.6-5.2-.8-.9-1.5-1.2-2.1-1.5-.4-.1-1-.1-1.5-.1H5.6v5.8h2.3v1.2H.1v-1.1H2V32.3H0v-1.1h11.2zm32.6.2v1.1h-2v12h4.8c1.2-.1 2.2-1 2.2-2.3V40H50v5.5H36.2v-1.1h2.1V32.5h-2.1v-1.1h7.6zM29.5 34c-1.5-2-4.6-2.2-6.2-.2-2 2.3-2 6-.5 8.6 1.5 2.6 5.1 3.1 6.9.5 1.7-2.6 1.7-6.4-.2-8.9zM9.1 32.4H5.6v5.2h3.6c1.5-.2 2.7-1.2 2.7-2.6 0-1.5-1.2-2.6-2.8-2.6z"/><path d="M32.3 8h.4l4.4 14.5c.5 1.6 2.9 2.8 5.7 2.8 2.9 0 5.2-1.2 5.7-2.8l4.4-14.3h.4c.9 0 1.5-.6 1.5-1.5s-.6-1.5-1.5-1.5-1.5.6-1.5 1.5c0 .6.4 1.1.9 1.3l-5 10.4.8-14.1c.9 0 1.5-.6 1.5-1.5s-.6-1.5-1.5-1.5S47 2 47 2.8s.5 1.2 1.1 1.5L44.7 18 43.1 2.9c.8-.1 1.2-.7 1.2-1.5s-.6-1.5-1.5-1.5-1.5.6-1.5 1.5c0 .7.6 1.3 1.4 1.5L40.9 18 37.7 4.3c.6-.1 1.1-.7 1.1-1.5s-.6-1.5-1.5-1.5-1.5.7-1.5 1.5.6 1.5 1.5 1.5l.8 14.1-5-10.4c.5-.2.9-.7.9-1.3 0-.8-.6-1.5-1.5-1.5s-1.6.6-1.6 1.5c-.1.7.6 1.3 1.4 1.3zm10.5 13.3c2.6 0 4.8.6 4.8 1.5 0 .8-2.1 1.5-4.8 1.5-2.6 0-4.8-.6-4.8-1.5.1-.9 2.2-1.5 4.8-1.5z" fill="#a37e2c"/></symbol><symbol id="sprite-mail" viewBox="0 0 32 32"><path d="M5.315 9.274a1.006 1.006 0 00-.315.733v11.986c0 .29.12.551.313.735L13.05 16 5.315 9.274zm22.372-.002c.194.184.313.445.313.735v11.986c0 .29-.121.55-.315.733L19.95 16l7.737-6.728zm-8.485 7.379L26.5 23h-20l7.298-6.35L16.5 19l2.702-2.35zM6.004 8A2 2 0 004 9.994v12.012C4 23.107 4.89 24 6.004 24h20.992A2 2 0 0029 22.006V9.994C29 8.893 28.11 8 26.996 8H6.004zM16.5 17.7l10-8.7h-20l10 8.7z" fill="currentColor" fill-rule="evenodd" stroke="currentColor"/></symbol><symbol id="sprite-newspaper" viewBox="0 0 460.1 500"><g fill="currentColor"><path d="M398.6 147H-8.6A26.439 26.439 0 00-35 173.4v447.2A26.375 26.375 0 00-8.6 647h407.3a26.5 26.5 0 0026.4-26.4V173.4a26.589 26.589 0 00-26.5-26.4zm3.4 473.6a3.372 3.372 0 01-3.4 3.4H-8.6a3.372 3.372 0 01-3.4-3.4V173.4a3.372 3.372 0 013.4-3.4h407.3a3.372 3.372 0 013.4 3.4l-.1 447.2z" transform="translate(35 -147)"/><path d="M25.1 422.3h339.8v21.2H25.1zm0 72h339.8v21.2H25.1zm0 71.9h339.8v21.2H25.1zm0-359.7h195.1v21.2H25.1zm0 72h195.1v21.2H25.1zm0 71.9h195.1v21.2H25.1zm226.1 21.9h113.7V206.5H251.2zm22.1-143.1h69.6v120.4h-69.6z" transform="translate(35 -147)"/></g></symbol><symbol id="sprite-pdf" viewBox="0 0 14 19"><path fill="currentColor" d="M0 4.524h5.6V0H0v4.524zM8.4 0v4.524H14V0H8.4zM0 11.762h5.6V7.238H0v4.524zm8.4 0H14V7.238H8.4v4.524zM0 19h5.6v-4.523H0V19zm8.4 0H14v-4.523H8.4V19z"/></symbol><symbol id="sprite-pinterest-icon" viewBox="0 0 15 15"><path d="M12 5.34c0 3.18-2.04 5.75-4.87 5.75-.95 0-1.85-.49-2.15-1.06 0 0-.47 1.76-.59 2.2-.19.71-.65 1.57-1.02 2.18-.03.05-.06.11-.1.16-.02.03-.04.05-.05.08-.12.15-.25.29-.39.35 0 0-.16-.13-.25-.58 0-.03-.02-.07-.02-.1l-.03-.3v-.01c-.06-.7-.08-1.58.07-2.24.17-.72 1.1-4.59 1.1-4.59s-.27-.56-.27-1.38c0-1.29.76-2.24 1.7-2.24.8 0 1.19.59 1.19 1.3 0 .79-.51 1.98-.78 3.08-.22.92.47 1.67 1.39 1.67 1.67 0 2.95-1.73 2.95-4.23 0-2.21-1.62-3.76-3.92-3.76-2.67 0-4.24 1.97-4.24 4.01 0 .79.31 1.65.7 2.11.07.09.08.17.06.26-.07.29-.23.92-.26 1.05-.04.17-.13.2-.31.12C.73 8.63 0 6.95 0 5.59 0 2.68 2.15 0 6.21 0 9.47 0 12 2.28 12 5.34z" transform="translate(1.5)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-search-arrow" viewBox="0 0 11 11"><path d="M11 5.5L6.7 9.7 5.3 8.2l1.8-1.7H0v-2h7.1L5.3 2.8l1.4-1.4z" fill="#fff"/></symbol><symbol id="sprite-search" viewBox="0 0 16 15"><path d="M15 14l-4.143-4.143c.786-1 1.286-2.357 1.286-3.786A6.066 6.066 0 006.07 0 6.066 6.066 0 000 6.071a6.066 6.066 0 006.071 6.072c1.429 0 2.715-.5 3.786-1.286L14 15l1-1zm-8.929-3.286A4.634 4.634 0 011.43 6.071 4.634 4.634 0 016.07 1.43a4.634 4.634 0 014.643 4.642 4.634 4.634 0 01-4.643 4.643z" transform="translate(.5)" fill="currentColor" fill-rule="nonzero"/></symbol><symbol id="sprite-share-icon" viewBox="0 0 15 15"><path d="M7.5 10a2.5 2.5 0 110 5 2.5 2.5 0 010-5zm-5-5a2.5 2.5 0 110 5 2.5 2.5 0 010-5zm5-5a2.5 2.5 0 110 5 2.5 2.5 0 010-5z" transform="translate(2)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-share" viewBox="0 0 15 15"><path d="M7.5 10a2.5 2.5 0 110 5 2.5 2.5 0 010-5zm-5-5a2.5 2.5 0 110 5 2.5 2.5 0 010-5zm5-5a2.5 2.5 0 110 5 2.5 2.5 0 010-5z" transform="translate(2)" fill="currentColor" fill-rule="nonzero"/></symbol><symbol id="sprite-subscribe-icon" viewBox="0 0 15 15"><path d="M11.4 15l-5.7-4.2L0 15V2.3C0 .3 2.8 0 5.8 0c4 0 5.7.3 5.7 2.3V15h-.1zM2 2.4V11l3.8-2.8L9.5 11V2.3C9.1 2.2 8.3 2 5.8 2 3 2 2.2 2.3 2 2.4z" transform="translate(1.8)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-twitter-icon" viewBox="0 0 15 15"><path class="st0" d="M8.9 6.4L14.3.1H13L8.3 5.5 4.6.1H.2l5.7 8.3L.2 15h1.3l5-5.8 4 5.8h4.3L8.9 6.4zm-1.8 2l-.6-.8L2 1h2l3.7 5.3.6.8L13 14h-2L7.1 8.4z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-wechat-icon" viewBox="0 0 15 15"><path d="M9.525 5.006c.787 0 1.528.14 2.203.385.038-.225.066-.46.066-.694C11.794 2.109 9.15 0 5.897 0S0 2.11 0 4.706c0 1.34.703 2.55 1.837 3.403L1.82 8.1s.403.263.29.806c-.112.544-.206.928-.13 1.04.074.113.271-.018 1.115-.534.384-.262.722-.271.937-.243.31-2.344 2.653-4.163 5.494-4.163zM7.847 2.437c.45 0 .815.347.815.779 0 .43-.365.778-.815.778-.45 0-.816-.347-.816-.778 0-.432.366-.779.816-.779zm-4.725.779c0-.432.365-.779.816-.779.45 0 .815.347.815.779 0 .43-.365.778-.816.778-.45 0-.815-.347-.815-.778zm10.94 6.534c0-2.128-2.034-3.853-4.537-3.853S4.987 7.622 4.987 9.75s2.035 3.853 4.538 3.853c.44 0 .853-.056 1.256-.15l-.01.01s.01 0 .02-.01c.056-.01.112-.028.168-.047.17-.028.432-.019.741.197.647.422.806.525.863.44.056-.093-.02-.402-.104-.852-.093-.45.225-.657.225-.657l-.009.01c.844-.713 1.387-1.697 1.387-2.794zm-6.037-.59a.63.63 0 01-.628-.638.63.63 0 01.628-.638.63.63 0 01.628.638.63.63 0 01-.628.637zm3.01 0a.63.63 0 01-.629-.638.63.63 0 01.628-.638.63.63 0 01.628.638.63.63 0 01-.628.637z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-weibo-icon" viewBox="0 0 15 15"><path d="M11.07 7.09c-.25-.09-.33-.09-.25-.44.25-.62.25-1.24 0-1.59-.49-.71-1.8-.71-3.28 0 0 0-.49.27-.33-.18.25-.8.16-1.51-.16-1.86-.82-.89-2.95 0-4.84 2.04C.82 6.56 0 8.15 0 9.57 0 12.23 3.11 14 6.15 14c4.02 0 6.64-2.75 6.64-4.7.08-1.24-.9-1.95-1.72-2.21zm-4.84 5.67c-2.46.27-4.51-.97-4.67-2.66-.17-1.77 1.64-3.37 4.1-3.63 2.46-.27 4.51.89 4.67 2.66.16 1.77-1.64 3.36-4.1 3.63zM15 4.87C15 2.21 12.95 0 10.49 0c-.33 0-.49.27-.49.53 0 .35.25.53.49.53 1.89 0 3.44 1.68 3.44 3.72 0 .35.25.53.49.53.42.18.58-.08.58-.44zm-2.05-.09c-.25-1.24-1.15-2.3-2.38-2.57-.24-.08-.57.18-.65.45-.08.27.16.62.41.71.74.18 1.39.8 1.56 1.68.08.27.33.53.66.44.24-.08.48-.35.4-.71zM5 8.24c-.98.18-1.64 1.06-1.48 1.95.16.89 1.07 1.42 2.05 1.24.98-.18 1.64-1.06 1.48-1.95C6.89 8.51 5.98 7.97 5 8.24z" transform="translate(0 .5)" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-youku-icon" viewBox="0 0 15 15"><path d="M7.5 0C3.36 0 0 3.36 0 7.5 0 11.64 3.36 15 7.5 15c4.14 0 7.5-3.36 7.5-7.5C15 3.36 11.64 0 7.5 0zm0 13.06c-3.07 0-5.56-2.5-5.56-5.56 0-3.06 2.5-5.56 5.56-5.56 3.06 0 5.56 2.5 5.56 5.56 0 3.06-2.49 5.56-5.56 5.56zM5.56 3.63L10.4 7.5l-4.84 3.87V3.63z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol id="sprite-youtube-icon" viewBox="0 0 15 15"><path d="M12.19 0H2.81C1.27 0 0 1.26 0 2.81v5.62c0 1.55 1.27 2.81 2.81 2.81h9.37c1.55 0 2.81-1.27 2.81-2.81V2.81A2.804 2.804 0 0012.19 0zM5.62 9.37v-7.5l4.69 3.75-4.69 3.75z" transform="translate(0 1.88)" fill="currentColor" fill-rule="evenodd"/></symbol></svg>
    </div>


        <div id="main-container" key="main_container_key" v-no-js-handler>
        


<signalr-toast></signalr-toast>
        
<header-component>
    <div class="header-wrapper">
        <header role="banner">
            <div class="header">
                <div class="header__container container container-large">
                    <div class="header__nav">

<panel position="left" @panelIsClosing="parentScope.focusOpeningButton()" position="left">
    <template v-slot:button="parentScope">
        <button ref="openMenuButton" type="button" class="header__menu-btn" aria-label="Menu">
            <div class="header__burger">
                <span class="header__burger-bar"></span>
                <span class="header__burger-bar"></span>
            </div>
            <span class="header__menu-text">Menu</span>
        </button>
    </template>

    <template v-slot:default="scope">
        <div class="panel__logo">
            <svg focusable="false" role="img" aria-label="Logo Rolex Newsroom" aria-hidden="true">
                <use href="#sprite-logo"></use>
            </svg>
        </div>
        <button type="button" class="panel__close-btn btn-close"
                v-on:click="scope.closePanel()" v-show="!scope.showSubPanel">
            <span class="off-screen">Close Panel</span>
            <svg focusable="false" class="panel__close-btn--svg" role="img" aria-hidden="true">
                <use href="#sprite-close"></use>
            </svg>
        </button>
        <div class="panel__content" v-show="!scope.showSubPanel">
                <div class="component Roller rounded">
<a href="#skip-roller-{CE23BF58-8B71-42B8-AA6A-016DE1C6B030}" class="skipto">
    <span class="skipto__text">Skip Roller</span>
</a>

<roller class="roller roller--nav" guid="{CE23BF58-8B71-42B8-AA6A-016DE1C6B030}">
  
  <li class="roller__item roller-link">
  <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=196&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=196&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=250&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="New watches 2024">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=196" alt="New watches 2024">
    </noscript>
</media>

        <div class="roller-link__title heading">
            New watches 2024
        </div>
        <div class="roller-link__copy">
               
        </div>
        
          
          

          <a href="/watches/new-watches" class="ghost-link" ><span class="off-screen">New watches 2024</span></a>
        
   </li>
  
  <li class="roller__item roller-link">
  <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/m226659-0002_1901ac_008_500x626.jpg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/m226659-0002_1901ac_008_500x626.jpg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/m226659-0002_1901ac_008_500x626.jpg?imwidth=250&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Collections">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/m226659-0002_1901ac_008_500x626.jpg?imwidth=196&amp;impolicy=grid-08" alt="Collections">
    </noscript>
</media>

        <div class="roller-link__title heading">
            Collections
        </div>
        <div class="roller-link__copy">
             
        </div>
        
          
          

          <a href="/watches" class="ghost-link" ><span class="off-screen">Collections</span></a>
        
   </li>
  
  <li class="roller__item roller-link">
  <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_375x375.jpg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_375x375.jpg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_375x375.jpg?imwidth=250&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Watchmaking">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_375x375.jpg?imwidth=196&amp;impolicy=grid-08" alt="Watchmaking">
    </noscript>
</media>

        <div class="roller-link__title heading">
            Watchmaking
        </div>
        <div class="roller-link__copy">
               
        </div>
        
          
          

          <a href="/watchmaking" class="ghost-link" ><span class="off-screen">Watchmaking</span></a>
        
   </li>
  
  <li class="roller__item roller-link">
  <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/world-of-rolex-navigation-push.jpeg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/world-of-rolex-navigation-push.jpeg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/world-of-rolex-navigation-push.jpeg?imwidth=250&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Features">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/world-of-rolex-navigation-push.jpeg?imwidth=196&amp;impolicy=grid-08" alt="Features">
    </noscript>
</media>

        <div class="roller-link__title heading">
            World of Rolex
        </div>
        <div class="roller-link__copy">
             
        </div>
        
          
          

          <a href="/world-of-rolex" class="ghost-link" ><span class="off-screen">World of Rolex</span></a>
        
   </li>
  
  <li class="roller__item roller-link">
  <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/rolexheadquarters_14rg_001_500x626.jpg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/rolexheadquarters_14rg_001_500x626.jpg?imwidth=196&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/rolexheadquarters_14rg_001_500x626.jpg?imwidth=250&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Corporate News">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/navigation/rolexheadquarters_14rg_001_500x626.jpg?imwidth=196&amp;impolicy=grid-08" alt="Corporate News">
    </noscript>
</media>

        <div class="roller-link__title heading">
            About Rolex
        </div>
        <div class="roller-link__copy">
             
        </div>
        
          
          

          <a href="/about-rolex" class="ghost-link" ><span class="off-screen">About Rolex</span></a>
        
   </li>
  
  </roller>

<a id="skip-roller-{CE23BF58-8B71-42B8-AA6A-016DE1C6B030}"></a>
        </div>

            <nav class="nav-menu">
                <div class="nav-menu__blocks">
                    

    <div class="component link-list nav-menu__block">
            <div role="heading" id="{2404C7AE-7CD6-4064-A4A9-2B1E3335744A}" class="menu__title" aria-level="1">
                <p>Rolex Watches</p>
            </div>
        <ul aria-labelledby="{2404C7AE-7CD6-4064-A4A9-2B1E3335744A}">
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/watches/new-watches" >New watches 2024</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/watches" >Collections</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/watches/perpetual-collection" >Perpetual collection</a>
           
        
</li>
        </ul>
    </div>


    <div class="component link-list nav-menu__block">
            <div role="heading" id="{491DC328-2472-46FC-AD6C-C743CA2A0C66}" class="menu__title" aria-level="1">
                <p>Watchmaking</p>
            </div>
        <ul aria-labelledby="{491DC328-2472-46FC-AD6C-C743CA2A0C66}">
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/watchmaking/excellence-in-the-making" >Excellence in the making</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/watchmaking/features" >Features</a>
           
        
</li>
        </ul>
    </div>


    <div class="component link-list nav-menu__block">
            <div role="heading" id="{4DEAB254-2716-44A3-B272-B4DADD824D34}" class="menu__title" aria-level="1">
                <p>World of Rolex</p>
            </div>
        <ul aria-labelledby="{4DEAB254-2716-44A3-B272-B4DADD824D34}">
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/world-of-rolex/rolex-and-sports" >Rolex and Sports</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/world-of-rolex/perpetuating-arts-and-culture" >Rolex Perpetual Arts Initiative</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/world-of-rolex/perpetual-planet" >Perpetual Planet Initiative</a>
           
        
</li>
        </ul>
    </div>

                </div>
                <div class="nav-menu__blocks">
                    

    <div class="component link-list nav-menu__block">
            <div role="heading" id="{8B7D39F7-A4D3-4E3F-B230-A2108CB68032}" class="menu__title" aria-level="1">
                <p>About Rolex</p>
            </div>
        <ul aria-labelledby="{8B7D39F7-A4D3-4E3F-B230-A2108CB68032}">
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/about-rolex/rolex-sites" >Company overview</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/about-rolex/history-of-rolex" >History of Rolex</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/about-rolex/sustainability" >Sustainability</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/about-rolex/oyster-collection" >Oyster Perpetual Watches</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/about-rolex/rolex-world-service" >Rolex World Service</a>
           
        
</li>
<li class="nav-menu__item">
        
          
          
          
          
          
             <a href="/about-rolex/rolex-certified-pre-owned-programme" >Rolex Certified Pre-Owned Programme</a>
           
        
</li>
        </ul>
    </div>



                </div>
            </nav>
        </div>
        <button type="button" v-on:click="scope.openSubPanel()" class="language-selector__btn">
            <svg focusable="false" class="language-selector__btn--svg" role="img" aria-hidden="true">
                <use xlink:href="#sprite-languages"/>
            </svg>
            <span class="language-selector__btn--text">Languages</span>
        </button>
        <button type="button" class="panel__close-btn btn-close closeSubPanelButton"
                v-on:click="scope.closeSubPanel()">
            <span class="off-screen">Close Panel</span>
            <svg focusable="false" class="panel__close-btn--svg" role="img" aria-hidden="true">
                <use href="#sprite-chevron"></use>
            </svg>
        </button>
        <div class="subpanel__wrapper"
             :class="{'subpanel__wrapper--opened': scope.showSubPanel}">
            <div class="language-selector">
    <div id="languagesTitle" class="language-selector__title heading">Languages</div>
    <ul aria-labelledby="languagesTitle" class="language-selector__list">
                <li class="language-selector__item">
                    <a href="/fr" lang="fr" data-language="fr" data-tagging-data-language="French" v-akamai-cookie>Fran&#231;ais</a>
                </li>
                <li class="language-selector__item language-selector__item--selected" data-tagging-data-language="English" lang="en" aria-current="page">English</li>
                <li class="language-selector__item">
                    <a href="/zh-hant" lang="zh-hant" data-language="zh-hant" data-tagging-data-language="Zh-hant" v-akamai-cookie>繁體中文</a>
                </li>
                <li class="language-selector__item">
                    <a href="/zh-hans" lang="zh-hans" data-language="zh-hans" data-tagging-data-language="Zh-hans" v-akamai-cookie>简体中文</a>
                </li>
    </ul>
</div>

        </div>
    </template>
</panel>
                        <nav>
                            

    <div class="component link-list header__nav__list">
        <ul aria-labelledby="{2D598175-133E-47F4-8CE8-84146E8E20DC}">
<li class="header__item">

 
 
 
 
 
 
    <a href="/watches" class="header__link" > Rolex Watches</a>
  

</li>
<li class="header__item">

 
 
 
 
 
 
    <a href="/watchmaking" class="header__link" > Watchmaking</a>
  

</li>
<li class="header__item">

 
 
 
 
 
 
    <a href="/world-of-rolex" class="header__link" > World of Rolex</a>
  

</li>
<li class="header__item">

 
 
 
 
 
 
    <a href="/about-rolex" class="header__link" > About Rolex</a>
  

</li>
        </ul>
    </div>

                        </nav>
                    </div>

                    <div class="header__logo">
                        
<svg role="img" aria-label="Logo Rolex Newsroom">
    <use xlink:href="#sprite-logo" />
</svg>

                    </div>

                    <div class="component link-list header__tools">
                        <ul>
                            

<div class="component link rolex-component">
    <div class="component-content">


    </div>
</div>    <div class="component rolex-component">



  <div class="component link-list">
    <service-menu-search :data="{'text': 'Search' }">
      <div class="container">
        <div class="component coveo-searchbox">





<script>
    var hasDOMContentLoadedFired = false;
    var hasCoveoSearchEndpointInitalizedFired = false; 
    function initCoveo() {    
        setTimeout(function () {        
            var searchboxElement = document.getElementById("_185F67BF-1D73-4AEE-9564-FDE5B0EB24D9");      
            if (typeof CoveoForSitecore !== 'undefined') {            
                searchboxElement.addEventListener("CoveoComponentInitialized", function() {
                    CoveoForSitecore.initSearchboxIfStandalone(searchboxElement, "/search");
                });        
            }   
        }, 0);
    } 
    window.hasCoveoSearchEndpointInitialized = false;
    document.addEventListener('CoveoSearchEndpointInitialized', function () {    
        hasCoveoSearchEndpointInitalizedFired = true;   
        window.hasCoveoSearchEndpointInitialized = true;    
        if (hasDOMContentLoadedFired) {        
            initCoveo();    
        }
    });
    document.addEventListener('DOMContentLoaded', function () {    
        hasDOMContentLoadedFired = true;    
        if (hasCoveoSearchEndpointInitalizedFired) {        
            initCoveo();    
        }
    });
</script>    <div id="_185F67BF-1D73-4AEE-9564-FDE5B0EB24D9_container" class="coveo-for-sitecore-search-box-container"
                     data-prebind-maximum-age='currentMaximumAge'
>
        <div id="_185F67BF-1D73-4AEE-9564-FDE5B0EB24D9"
             class="CoveoSearchbox"
                             data-enable-field-addon='false'
                 data-enable-omnibox='true'
                 data-enable-query-extension-addon='false'
                 data-enable-query-suggest-addon='true'
                 data-enable-simple-field-addon='true'
                 data-prebind-maximum-age='currentMaximumAge'
                 data-placeholder='Search'
                 data-clear-filters-on-new-query='false'
>
            
            
<script type="text/javascript">
    document.addEventListener("CoveoSearchEndpointInitialized", function() {
        var componentId = "_185F67BF-1D73-4AEE-9564-FDE5B0EB24D9";
        var componentElement = document.getElementById(componentId);

        function showError(error) {
                console.error(error);
        }

        function areCoveoResourcesIncluded() {
            return typeof (Coveo) !== "undefined";
        }

        if (areCoveoResourcesIncluded()) {
            var event = document.createEvent("CustomEvent");
            event.initEvent("CoveoComponentInitialized", false, true);
            
            setTimeout(function() {
                componentElement.dispatchEvent(event);
            }, 0);
        } else {
            componentElement.classList.add("invalid");
            showError("The Coveo Resources component must be included in this page.");
        }
    });
</script>
            <div class="CoveoForSitecoreBindWithUserContext"></div>
            <div class="CoveoForSitecoreExpressions"></div>
            <div class="CoveoForSitecoreConfigureSearchHub" data-sc-search-hub="coveo-prd-rlxnews"></div>
        </div>
        
    </div>
</div>
      </div>
    </service-menu-search>
</div>

        </div>
    <div class="component rolex-component">




<service-menu-bookmark :data="{'text': 'Bookmarks', 'link': '/bookmarks' }" ></service-menu-bookmark>

        </div>

                        </ul>
                    </div>
                   
                    
                </div>
            </div>
        </header>
        <script type="application/ld+json">
    {
        "@context": "http://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement":
        [
                
                {
                    "@type": "ListItem",
                    "position": 1,
                    "item":
                    {
                        "@id": "https://newsroom.rolex.com",
                        "name": "Home"
                    }
                }
                
        ]
    }
</script>


    </div>
</header-component>

            <main id="content">
                <span id="contentLink"></span>
                <div class="component introduction container">

    
      <h1 class="introduction__title heading">ROLEX IS EXCLUSIVE SPONSOR OF THE GOVERNORS AWARDS, CELEBRATING LIFETIME ACHIEVEMENT IN FILM</h1>
      
    

  <div class="introduction__buttons">
  

    
    
    
    
    
    

  </div>

  <div class="introduction__text">
      
      
  </div>

        </div>
    <div class="component rolex-component article container rounded">




  
    
    <article class="article__item">
      <a href="/world-of-rolex/perpetuating-arts-and-culture/rolex-and-cinema/rolex-and-cinema-2024/news-8/rolex-is-exclusive-sponsor-of-the-governors-awards-celebrating-lifetime-achievement-in-film" class="article__item__clickable" aria-label="">
        <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetuating-arts-and-culture/rolex-and-cinema/2024/governors-awards/banner/gettyimages-1913168595.jpg?imwidth=338&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetuating-arts-and-culture/rolex-and-cinema/2024/governors-awards/banner/gettyimages-1913168595.jpg?imwidth=926&amp;impolicy=grid-23&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetuating-arts-and-culture/rolex-and-cinema/2024/governors-awards/banner/gettyimages-1913168595.jpg?imwidth=1140&amp;impolicy=grid-3&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetuating-arts-and-culture/rolex-and-cinema/2024/governors-awards/banner/gettyimages-1913168595.jpg?imwidth=338" alt="">
    </noscript>
</media>

        <header>
        
          <h2 class="heading article__title"></h2>
        
        </header>
      </a>
      <div class="article__wrapper">
           
            <div class="article__date" v-date-format>2024-11-15</div>
        
        <div class="article__hashtag">
          
          
             <a class="article__hashtag__item" href="https://newsroom.rolex.com/search#f:category=[PerpetualArts]" aria-label="PerpetualArts">#PerpetualArts</a>
          
        </div>
      </div>

      
        
        <a class="article__copy rich-text" href="/world-of-rolex/perpetuating-arts-and-culture/rolex-and-cinema/rolex-and-cinema-2024/news-8/rolex-is-exclusive-sponsor-of-the-governors-awards-celebrating-lifetime-achievement-in-film">
          <p style="text-align: justify;">Rolex is Exclusive Sponsor of the Governors Awards, celebrating lifetime achievement in film and humanitarian efforts that have brought credit to the industry.&nbsp;</p>
        </a>
      

        
          
        
    </article>
  

        </div>
    <div class="component introduction container">

    
      <h1 class="introduction__title heading">MAMIRAUÁ SUSTAINABLE DEVELOPMENT RESERVE</h1>
      
    

  <div class="introduction__buttons">
  

    
    
    
    
    
    

  </div>

  <div class="introduction__text">
      
      
  </div>

        </div>
    <div class="component rolex-component article container rounded">




  
    
    <article class="article__item">
      <a href="/world-of-rolex/perpetual-planet/rolex-and-exploration/rolex-and-exploration/news-20/ppi-michel-andre-mamiraua" class="article__item__clickable" aria-label="">
        <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetual-planet/rolex-and-exploration/ppi-michel-andre-mamiraua/banner/rae_andre_23db_1571.jpg?imwidth=338&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetual-planet/rolex-and-exploration/ppi-michel-andre-mamiraua/banner/rae_andre_23db_1571.jpg?imwidth=926&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetual-planet/rolex-and-exploration/ppi-michel-andre-mamiraua/banner/rae_andre_23db_1571.jpg?imwidth=1140&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetual-planet/rolex-and-exploration/ppi-michel-andre-mamiraua/banner/rae_andre_23db_1571.jpg?imwidth=338" alt="">
    </noscript>
</media>

        <header>
        
          <h2 class="heading article__title"></h2>
        
        </header>
      </a>
      <div class="article__wrapper">
           
            <div class="article__date" v-date-format>2024-11-15</div>
        
        <div class="article__hashtag">
          
          
        </div>
      </div>

      
        
        <a class="article__copy rich-text" href="/world-of-rolex/perpetual-planet/rolex-and-exploration/rolex-and-exploration/news-20/ppi-michel-andre-mamiraua">
          Thanks to two Rolex Laureates, an amazon reserve is at the cutting edge of bioacoustic technology.<br />
        </a>
      

        
          
        
    </article>
  

        </div>
    <div class="component introduction container margin__top--medium">

    
      <h1 class="introduction__title heading">Rolex watches</h1>
      
    

  <div class="introduction__buttons">
  

    
    
    
    
    
    

  </div>

  <div class="introduction__text">
      
      
        <div class="rich-text">Explore the Rolex collection of prestigious, high-precision timepieces. Rolex offers a wide assortment of Classic and Professional watch models to suit any wrist. Discover the broad selection of Rolex watches to find a perfect combination of style and functionality.</div>
      
  </div>

        </div>
    <div class="component Roller rounded">
<a href="#skip-roller-{A65EC16C-0BBF-4A69-BB2C-5FF99E1D674C}" class="skipto">
    <span class="skipto__text">Skip Roller</span>
</a>

<roller class="roller roller--content" guid="{A65EC16C-0BBF-4A69-BB2C-5FF99E1D674C}">
  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="New Watches 2024">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/homepage/newsroom-hub-m126710grnr-0003_2401jva_001_rvb.jpg?imwidth=256" alt="New Watches 2024">
    </noscript>
</media>

            <div class="roller-link__title heading">
                New Watches 2024
            </div>
            <div class="roller-link__copy">
                  
            </div>
            
              
              

              <a href="/watches/new-watches" class="ghost-link" ><span class="off-screen">New Watches 2024</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=256" alt="">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Oyster Perpetual collection
            </div>
            <div class="roller-link__copy">
                  
            </div>
            
              
              

              <a href="/watches/oyster-collection" class="ghost-link" ><span class="off-screen">Oyster Perpetual collection</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/hors-caraibes/roller/ratio_0-8_1908.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/hors-caraibes/roller/ratio_0-8_1908.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/hors-caraibes/roller/ratio_0-8_1908.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Perpetual Collection">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024-04/hors-caraibes/roller/ratio_0-8_1908.jpg?imwidth=256" alt="Perpetual Collection">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Perpetual Collection
            </div>
            <div class="roller-link__copy">
                 
            </div>
            
              
              

              <a href="/watches/perpetual-collection" class="ghost-link" ><span class="off-screen">Perpetual Collection</span></a>
            

          
      </li>

  
  </roller>

<a id="skip-roller-{A65EC16C-0BBF-4A69-BB2C-5FF99E1D674C}"></a>
        </div>
    <div class="component introduction container margin__top--medium">

    
      <h1 class="introduction__title heading">Watchmaking</h1>
      
    

  <div class="introduction__buttons">
  

    
    
    
    
    
    

  </div>

  <div class="introduction__text">
      
      
  </div>

        </div>
    <div class="component rolex-component article article--2cols container rounded">





  
  
    <article class="article__item">
      <a href="/watchmaking/excellence-in-the-making" class="article__item__clickable" aria-label="Excellence in the making">
        <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_c14-v3.jpg?imwidth=338&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_c14-v3.jpg?imwidth=448&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_c14-v3.jpg?imwidth=555&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2023/watchmaking/hub/inaugural_2302_001h_wide_rvb_c14-v3.jpg?imwidth=338" alt="">
    </noscript>
</media>

        <header>
        
          <h2 class="heading article__title">Excellence in the making</h2>
        
        </header>
      </a>
        <div class="article__wrapper">
            
                <div class="article__date" v-date-format></div>
            
          <div class="article__hashtag">
          
          
          </div>
        </div>
        
      
        
          <a class="article__copy rich-text" href="/watchmaking/excellence-in-the-making">
            &nbsp;&nbsp;
          </a>
        

        

          
        
    </article>
  
  
    <article class="article__item">
      <a href="/watchmaking/features" class="article__item__clickable" aria-label="Features">
        <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024/features/banner/helium_valve_s_338x241.jpg?imwidth=338&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024/features/banner/helium_valve_m_448x320.jpg?imwidth=448&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024/features/banner/helium_valve_l_555x396.jpg?imwidth=555&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2024/features/banner/helium_valve_s_338x241.jpg?imwidth=338" alt="">
    </noscript>
</media>

        <header>
        
          <h2 class="heading article__title">Features</h2>
        
        </header>
      </a>
        <div class="article__wrapper">
            
                <div class="article__date" v-date-format></div>
            
          <div class="article__hashtag">
          
          
          </div>
        </div>
        
      
        
          <a class="article__copy rich-text" href="/watchmaking/features">
            &nbsp;&nbsp;
          </a>
        

        

          
        
    </article>
  

        </div>
    <div class="component introduction container margin__top--medium">

    
      <h1 class="introduction__title heading">World of Rolex</h1>
      
    

  <div class="introduction__buttons">
  

    
    
    
    
    
    

  </div>

  <div class="introduction__text">
      
      
        <div class="rich-text"><p style="text-align: justify;">For almost a century, Rolex has developed partnerships with a diverse, extraordinary collection of talent from myriad disciplines, including exploration, elite sports and the arts, as well as the events and organizations they are associated with.
</p></div>
      
  </div>

        </div>
    <div class="component Roller rounded">
<a href="#skip-roller-{1CB0760E-2D68-46AF-AC33-8CC9291167AB}" class="skipto">
    <span class="skipto__text">Skip Roller</span>
</a>

<roller class="roller roller--content" guid="{1CB0760E-2D68-46AF-AC33-8CC9291167AB}">
  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/sportsl_rg19ac_1018.jpg?imwidth=256&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/sportsl_rg19ac_1018.jpg?imwidth=368&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/sportsl_rg19ac_1018.jpg?imwidth=432&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/sportsl_rg19ac_1018.jpg?imwidth=256&amp;impolicy=grid-08" alt="">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Rolex and sports
            </div>
            <div class="roller-link__copy">
                Equestrian, Golf, Motor sport, Tennis and Yachting
            </div>
            
              
              

              <a href="/world-of-rolex/rolex-and-sports" class="ghost-link" ><span class="off-screen">Rolex and sports</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/artculturel09perpmusicpesaro20ra0025.jpg?imwidth=256&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/artculturel09perpmusicpesaro20ra0025.jpg?imwidth=368&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/artculturel09perpmusicpesaro20ra0025.jpg?imwidth=432&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/artculturel09perpmusicpesaro20ra0025.jpg?imwidth=256&amp;impolicy=grid-08" alt="">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Perpetual Arts Initiative
            </div>
            <div class="roller-link__copy">
                Architecture, Cinema, Music, Mentoring programme
            </div>
            
              
              

              <a href="/world-of-rolex/perpetuating-arts-and-culture" class="ghost-link" ><span class="off-screen">Perpetual Arts Initiative</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetualplanetl_20180909_utp_jl_46_copyright-julien-leblond--under-the-pole.jpg?imwidth=256&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetualplanetl_20180909_utp_jl_46_copyright-julien-leblond--under-the-pole.jpg?imwidth=368&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetualplanetl_20180909_utp_jl_46_copyright-julien-leblond--under-the-pole.jpg?imwidth=432&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/world-of-rolex/perpetualplanetl_20180909_utp_jl_46_copyright-julien-leblond--under-the-pole.jpg?imwidth=256&amp;impolicy=grid-08" alt="">
    </noscript>
</media>

            <div class="roller-link__title heading">
                PERPETUAL PLANET INITIATIVE
            </div>
            <div class="roller-link__copy">
                A commitment to a Perpetual Planet
            </div>
            
              
              

              <a href="/world-of-rolex/perpetual-planet" class="ghost-link" ><span class="off-screen">PERPETUAL PLANET INITIATIVE</span></a>
            

          
      </li>

  
  </roller>

<a id="skip-roller-{1CB0760E-2D68-46AF-AC33-8CC9291167AB}"></a>
        </div>
    <div class="component introduction container">

    
      <h1 class="introduction__title heading">About Rolex</h1>
      
    

  <div class="introduction__buttons">
  

    
    
    
    
    
    

  </div>

  <div class="introduction__text">
      
      
  </div>

        </div>
    <div class="component Roller rounded">
<a href="#skip-roller-{7656C588-4DE1-4B25-9680-7C2CF24FEB74}" class="skipto">
    <span class="skipto__text">Skip Roller</span>
</a>

<roller class="roller roller--content" guid="{7656C588-4DE1-4B25-9680-7C2CF24FEB74}">
  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/aca_2310cw_0002_cropped.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/aca_2310cw_0002_cropped.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/aca_2310cw_0002_cropped.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="The four Rolex sites">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/aca_2310cw_0002_cropped.jpg?imwidth=256" alt="The four Rolex sites">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Company overview
            </div>
            <div class="roller-link__copy">
                The four Rolex sites
            </div>
            
              
              

              <a href="/about-rolex/rolex-sites" class="ghost-link" ><span class="off-screen">Company overview</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/3cols14astrokeofgenius.jpeg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/3colm09astrokeofgenius.jpeg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/3colm09astrokeofgenius.jpeg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="History of Rolex">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/3cols14astrokeofgenius.jpeg?imwidth=256" alt="History of Rolex">
    </noscript>
</media>

            <div class="roller-link__title heading">
                History of Rolex
            </div>
            <div class="roller-link__copy">
                Hans Wilsdorf, founder of Rolex<br/>
            </div>
            
              
              

              <a href="/about-rolex/history-of-rolex" class="ghost-link" ><span class="off-screen">History of Rolex</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/sustainable-development/banner-vignette/20231113_csr_mosaique_432x540px.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/sustainable-development/banner-vignette/20231113_csr_mosaique_432x540px.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/sustainable-development/banner-vignette/20231113_csr_mosaique_432x540px.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Sustainability">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/sustainable-development/banner-vignette/20231113_csr_mosaique_432x540px.jpg?imwidth=256" alt="Sustainability">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Sustainability
            </div>
            <div class="roller-link__copy">
                Rolex is a responsible and committed manufacturer of sustainable products<br/>
            </div>
            
              
              

              <a href="/about-rolex/sustainability" class="ghost-link" ><span class="off-screen">Sustainability</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Oyster Perpetual Watches">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/2022/day-date/roller-asset/r0-8_m228238-0042_2106jva_002.jpg?imwidth=256" alt="Oyster Perpetual Watches">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Oyster Perpetual Watches
            </div>
            <div class="roller-link__copy">
                History and evolution of Rolex collections
            </div>
            
              
              

              <a href="/about-rolex/oyster-collection" class="ghost-link" ><span class="off-screen">Oyster Perpetual Watches</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/sav_geneve_19dh_026_1_4.jpg?imwidth=256&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/sav_geneve_19dh_026_09.jpg?imwidth=368&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/sav_geneve_19dh_026_09.jpg?imwidth=432&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="Rolex world service">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/about-rolex-hub/sav_geneve_19dh_026_1_4.jpg?imwidth=256" alt="Rolex world service">
    </noscript>
</media>

            <div class="roller-link__title heading">
                Rolex world service
            </div>
            <div class="roller-link__copy">
                Watches designed and built to last<br/>
            </div>
            
              
              

              <a href="/about-rolex/rolex-world-service" class="ghost-link" ><span class="off-screen">Rolex world service</span></a>
            

          
      </li>

  
      <li class="roller__item roller-link">
      
      <media type="image" :srcset="{&quot;0&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/rolex-certified-pre-owned-programme/explorer-1989_2208_001_v1_booklet_30pc.jpg?imwidth=256&amp;impolicy=grid-08&quot;,&quot;768&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/rolex-certified-pre-owned-programme/explorer-1989_2208_001_v1_booklet_30pc.jpg?imwidth=368&amp;impolicy=grid-08&quot;,&quot;1025&quot;:&quot;https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/rolex-certified-pre-owned-programme/explorer-1989_2208_001_v1_booklet_30pc.jpg?imwidth=432&amp;impolicy=grid-08&quot;}" class="">
    <img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" alt="">
    <noscript>
        <img src="https://newsroom-content.rolex.com/-/media/project/rolex/newsroom/rolex/rolex-newsroom-int/about-rolex/rolex-certified-pre-owned-programme/explorer-1989_2208_001_v1_booklet_30pc.jpg?imwidth=256&amp;impolicy=grid-08" alt="">
    </noscript>
</media>

            <div class="roller-link__title heading">
                ROLEX CERTIFIED PRE-OWNED PROGRAMME
            </div>
            <div class="roller-link__copy">
                A new programme by Rolex
            </div>
            
              
              

              <a href="/about-rolex/rolex-certified-pre-owned-programme" class="ghost-link" ><span class="off-screen">ROLEX CERTIFIED PRE-OWNED PROGRAMME</span></a>
            

          
      </li>

  
  </roller>

<a id="skip-roller-{7656C588-4DE1-4B25-9680-7C2CF24FEB74}"></a>
        </div>

            </main>
        
<footer class="footer" id="footer" role="contentinfo">
    <div class="container container-large">
        <div class="footer__language-selector">
            <panel position="left" color="light">
    <template #button>
        <button type="button" class="language-selector__btn--dark">
            <svg focusable="false" class="language-selector__btn--svg" role="img" aria-hidden="true">
                <use xlink:href="#sprite-languages" />
            </svg>
            <span class="language-selector__btn--text">Languages</span>
        </button>
    </template>
    <template v-slot:default="scope">
        <div class="panel__logo">
            <svg focusable="false" role="img" aria-hidden="true">
                <use xlink:href="#sprite-logo" />
            </svg>
        </div>
        <button type="button" class="panel__close-btn btn-close" v-on:click="scope.closePanel()">
            <span class="off-screen">Close Panel</span>
            <svg focusable="false" class="panel__close-btn--svg" role="img" aria-hidden="true">
                <use xlink:href="#sprite-close" />
            </svg>
        </button>
        <div class="panel__content">
            <div class="language-selector">
                <div id="languagesTitle" class="language-selector__title heading">
                    Languages
                </div>
                <ul aria-labelledby="languagesTitle" class="language-selector__list">
                    <li class="language-selector__item">
                        <a href="/fr" data-language="fr" lang="fr"
                            v-akamai-cookie>Fran&#231;ais</a>
                    </li>
                    <li class="language-selector__item language-selector__item--selected" lang="en" aria-current="page">
                        English
                    </li>
                    <li class="language-selector__item">
                        <a href="/zh-hant" data-language="zh-hant" lang="zh-hant"
                            v-akamai-cookie>繁體中文</a>
                    </li>
                    <li class="language-selector__item">
                        <a href="/zh-hans" data-language="zh-hans" lang="zh-hans"
                            v-akamai-cookie>简体中文</a>
                    </li>
                </ul>
            </div>
        </div>
    </template>
</panel>

        </div>
        <div class="accessibility-switcher">
            <accessibility-switcher>
                <template #button>
                    <svg focusable="false">
                        <use xlink:href="#sprite-chevron" />
                    </svg>
                    Accessibility
                </template>
            </accessibility-switcher>
        </div>
    </div>
    <div class="container">
        <accessibility-container>
            <template v-slot:default="scope">
                <div class="footer__column"></div>
                <div class="footer__column">
                    <p class="accessibility__title">Increase contrast</p>
                    <input id="contrastToggle" class="off-screen" type="checkbox" v-on:click="scope.accessibilityAction('contrast')" :checked="scope.higherContrast" :tabindex="scope.opened ? '' : '-1'">
                    <label for="contrastToggle" class="accessibility__switch">
                        <div>
                            <span class="accessibility__slider"></span>
                        </div>
                        <p v-if="scope.higherContrast">
                            <span class="off-screen">
                                Increase contrast
                                </span>
                            Enabled
                        </p>
                        <p v-else>
                            <span class="off-screen">
                                Increase contrast
                            </span>
                            Disabled
                        </p>
                    </label>
                </div>
                <div class="footer__column">
                    <p class="accessibility__title">Reduce animations</p>
                    <input id="animationToggle" class="off-screen" type="checkbox" v-on:click="scope.accessibilityAction('animation')" :checked="scope.animationDisabled" aria-label="Reduce animations" :tabindex="scope.opened ? '' : '-1'">
                    <label for="animationToggle" class="accessibility__switch">
                        <div>
                            <span class="accessibility__slider"></span>
                        </div>
                        <p v-if="scope.animationDisabled">
                            <span class="off-screen">
                                Reduce animations
                            </span>
                            Enabled
                        </p>
                        <p v-else>
                            <span class="off-screen">
                                Reduce animations
                            </span>
                            Disabled
                        </p>
                    </label>
                </div>
            </template>
        </accessibility-container>
    </div>
    <div class="container">
        <div class="footer__main">
            <div class="footer__column">
                

    <div class="component link-list footer__menu footer__menu--not-mobile">
            <div role="heading" id="{53D666A1-6601-4972-B9FB-612AB9419EF1}" class="menu__title" aria-level="1">
                <p>ROLEX WATCHES</p>
            </div>
        <ul aria-labelledby="{53D666A1-6601-4972-B9FB-612AB9419EF1}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/watches/new-watches" > <span>New watches 2024</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/watches" > <span>Collections</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/watches/perpetual-collection" > <span>Perpetual collection</span></a>
               
           
        
</li>
        </ul>
    </div>


    <div class="component link-list footer__menu">
            <div role="heading" id="{10875856-62CC-40F9-BD92-E9D28E6AA92C}" class="menu__title" aria-level="1">
                <p>WORLD OF ROLEX</p>
            </div>
        <ul aria-labelledby="{10875856-62CC-40F9-BD92-E9D28E6AA92C}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/world-of-rolex/rolex-and-sports" > <span>Rolex and Sports</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/world-of-rolex/perpetuating-arts-and-culture" > <span>Rolex Perpetual Arts Initiative</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/world-of-rolex/perpetual-planet" > <span>Perpetual Planet Initiative</span></a>
               
           
        
</li>
        </ul>
    </div>







            </div>
            <div class="footer__column">
                

    <div class="component link-list footer__menu">
            <div role="heading" id="{4F1C15C6-E6DF-49E6-8FDE-4F64F1890475}" class="menu__title" aria-level="1">
                <p>WATCHMAKING</p>
            </div>
        <ul aria-labelledby="{4F1C15C6-E6DF-49E6-8FDE-4F64F1890475}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/watchmaking/excellence-in-the-making" > <span>Excellence in the Making</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/watchmaking/features" > <span>Features</span></a>
               
           
        
</li>
        </ul>
    </div>


    <div class="component link-list footer__menu">
            <div role="heading" id="{916B4E91-6147-428B-94CE-2B0C8D1EC5E9}" class="menu__title" aria-level="1">
                <p>OFFICIAL CHANNELS</p>
            </div>
        <ul aria-labelledby="{916B4E91-6147-428B-94CE-2B0C8D1EC5E9}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.facebook.com/rolex/"
                  aria-label="Facebook - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.facebook.com/rolex/"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="Facebook"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-facebook-icon"></use></svg> <span>Facebook</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.instagram.com/rolex/"
                  aria-label="Instagram - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.instagram.com/rolex/"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="Instagram"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-instagram-icon"></use></svg> <span>Instagram</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://twitter.com/rolex"
                  aria-label="X - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://twitter.com/rolex"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="Twitter"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-twitter-icon"></use></svg> <span>X</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.youtube.com/rolex"
                  aria-label="Youtube - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.youtube.com/rolex"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="YouTube"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-youtube-icon"></use></svg> <span>Youtube</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.pinterest.fr/rolex/"
                  aria-label="Pinterest - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.pinterest.fr/rolex/"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="Pinterest"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-pinterest-icon"></use></svg>  <span>Pinterest</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.linkedin.com/company/rolex"
                  aria-label="LinkedIn - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.linkedin.com/company/rolex"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="LinkedIn"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-linkedin-icon"></use></svg> <span>LinkedIn</span></a>
               
           
        
</li>
        </ul>
    </div>







            </div>
            <div class="footer__column">
                

    <div class="component link-list footer__menu">
            <div role="heading" id="{FEFB345D-A76D-4EFA-904A-BAA7F56C67D2}" class="menu__title" aria-level="1">
                <p>ABOUT ROLEX</p>
            </div>
        <ul aria-labelledby="{FEFB345D-A76D-4EFA-904A-BAA7F56C67D2}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/about-rolex/rolex-sites" > <span>Company overview</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/about-rolex/history-of-rolex" > <span>History of Rolex</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/about-rolex/sustainability" > <span>Sustainability</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/about-rolex/oyster-collection" > <span>Oyster Perpetual Watches</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/about-rolex/rolex-world-service" > <span>Rolex World Service</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/about-rolex/rolex-certified-pre-owned-programme" > <span>Rolex Certified Pre-Owned Programme</span></a>
               
           
        
</li>
        </ul>
    </div>


    <div class="component link-list footer__menu">
            <div role="heading" id="{72E6B5DB-15F6-4BB7-96A0-940AD3D66DF1}" class="menu__title" aria-level="1">
                <p>LEGAL NOTICE</p>
            </div>
        <ul aria-labelledby="{72E6B5DB-15F6-4BB7-96A0-940AD3D66DF1}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/legal" > <span>Terms of use</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="/cookie-policy" > <span>Cookie policy</span></a>
               
           
        
</li>
        </ul>
    </div>







            </div>
        </div>
        

    <div class="component link-list footer__menu footer__external-links">
        <ul aria-labelledby="{2AB4D620-7101-436F-980C-988081150AD1}">
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.rolex.com/?cmpid=newsroom_rolexcom"
                  aria-label="Discover our watches on rolex.com - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.rolex.com/?cmpid=newsroom_rolexcom"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="Rolex.com"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-exit-icon"></use></svg> <span>Discover our watches on rolex.com</span></a>
               
           
        
</li>
<li class="menu__item" data-tag-wrapper>
        
          
          
          
          
          
          
          
          
               
                  <a href="https://www.rolex.org/?cmpid=newsroom_rolexorg"
                  aria-label="Our corporate commitments on rolex.org - new tab"
                  target="_blank"
                  rel="noopener noreferrer"
                  data-tag-outlink-url="https://www.rolex.org/?cmpid=newsroom_rolexorg"
                  data-tag-triggerName="outlink"
                  data-tag-outlink-name="Rolex.org"
                  event="click" dom="true" v-tag:adobeevent.dom
                  rel='noopener noreferrer'><svg><use xlink:href="#sprite-exit-icon"></use></svg> <span>Our corporate commitments on rolex.org</span></a>
               
           
        
</li>
        </ul>
    </div>

    </div>
    <div class="footer__backtotop">
        <scroll-top>
            <template #button>
                <button type="button" aria-label="Back to top" title="Back to top">
                    <svg aria-hidden="true" focusable="false" role="img">
                        <use xlink:href="#sprite-chevron">
                        </use>
                    </svg>
                </button>
            </template>
        </scroll-top>
    </div>
</footer>

        



        </div>


    <!-- /#wrapper -->
    
<div class="component coveo-searchresources">

    <script class="coveo-script" type="text/javascript" src='https://static.cloud.coveo.com/searchui/v2.10083/js/CoveoJsSearch.Lazy.min.js'></script>
    <script class="coveo-for-sitecore-script" type="text/javascript" src='https://static.cloud.coveo.com/coveoforsitecore/ui/v0.52.10/js/CoveoForSitecore.Lazy.min.js'></script>
    <script type="text/javascript" src="https://static.cloud.coveo.com/searchui/v2.10083/js/cultures/en.js"></script>

    <div>


        
        
<!-- Resources -->
                <div id="_585F194D-786A-427E-9DE3-63CCD3A9DB5C"
                     class="CoveoForSitecoreContext"
                       data-sc-should-have-analytics-component='true'
  data-sc-analytics-enabled='true'
  data-sc-current-language='en'
  data-prebind-sc-language-field-name='fieldTranslator'
  data-sc-language-field-name='_language'
  data-sc-labels='{&quot;Descending&quot; : &quot;Descending&quot; , &quot;Ascending&quot; : &quot;Ascending&quot; , &quot;Language&quot; : &quot;Language&quot; , &quot;Updated By&quot; : &quot;Updated by&quot; , &quot;Created&quot; : &quot;Created&quot; , &quot;Creation Time&quot; : &quot;Creation time.&quot; , &quot;Created By&quot; : &quot;Created by&quot; , &quot;Last Time Modified&quot; : &quot;Last time modified.&quot; , &quot;Uniform resource identifier&quot; : &quot;URI&quot; , &quot;Template&quot; : &quot;Template&quot; , &quot;Search is currently unavailable&quot; : &quot;Oops! Something went wrong on the server.&quot; , &quot;If the problem persists contact the administrator.&quot; : &quot;If the problem persists contact the administrator.&quot;}'
  data-sc-maximum-age='900000'
  data-sc-page-name='Home'
  data-sc-page-name-full-path='/sitecore/content/Rolex/Newsroom/Rolex/Rolex Newsroom INT/Home'
  data-sc-index-source-name='Coveo_web1_index - coveo-prd-rlxnews'
  data-sc-is-in-experience-editor='false'
  data-sc-is-user-anonymous='true'
  data-sc-item-uri='sitecore://web/{585F194D-786A-427E-9DE3-63CCD3A9DB5C}?lang=en&amp;ver=92'
  data-sc-item-id='585f194d-786a-427e-9de3-63ccd3a9db5c'
  data-prebind-sc-latest-version-field-name='fieldTranslator'
  data-sc-latest-version-field-name='_latestversion'
  data-sc-rest-endpoint-uri='https://platform-eu.cloud.coveo.com/rest'
  data-sc-site-name='Rolex Newsroom INT CD1'
  data-sc-field-prefix='f'
  data-sc-field-suffix='62784'
  data-sc-prefer-source-specific-fields='false'
  data-sc-external-fields='[{&quot;fieldName&quot;:&quot;permanentid&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_author&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_date&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_hashtags&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_media&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_media_type&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_media_url&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_all_images&quot;,&quot;shouldEscape&quot;:false},{&quot;fieldName&quot;:&quot;twitter_text&quot;,&quot;shouldEscape&quot;:false}]'
  data-sc-source-specific-fields='[{&quot;fieldName&quot;:&quot;attachmentparentid&quot;},{&quot;fieldName&quot;:&quot;author&quot;},{&quot;fieldName&quot;:&quot;clickableuri&quot;},{&quot;fieldName&quot;:&quot;collection&quot;},{&quot;fieldName&quot;:&quot;concepts&quot;},{&quot;fieldName&quot;:&quot;date&quot;},{&quot;fieldName&quot;:&quot;filetype&quot;},{&quot;fieldName&quot;:&quot;indexeddate&quot;},{&quot;fieldName&quot;:&quot;isattachment&quot;},{&quot;fieldName&quot;:&quot;language&quot;},{&quot;fieldName&quot;:&quot;printableuri&quot;},{&quot;fieldName&quot;:&quot;rowid&quot;},{&quot;fieldName&quot;:&quot;size&quot;},{&quot;fieldName&quot;:&quot;title&quot;},{&quot;fieldName&quot;:&quot;topparent&quot;},{&quot;fieldName&quot;:&quot;topparentid&quot;},{&quot;fieldName&quot;:&quot;transactionid&quot;},{&quot;fieldName&quot;:&quot;uri&quot;},{&quot;fieldName&quot;:&quot;urihash&quot;}]'
>
                </div>
                                <script type="text/javascript">
        var endpointConfiguration = {
            itemUri: "sitecore://web/{585F194D-786A-427E-9DE3-63CCD3A9DB5C}?lang=en&amp;ver=92",
            siteName: "Rolex Newsroom INT CD1",
            restEndpointUri: "https://platform-eu.cloud.coveo.com/rest"
        };
        if (typeof (CoveoForSitecore) !== "undefined") {
            CoveoForSitecore.SearchEndpoint.configureSitecoreEndpoint(endpointConfiguration);
            CoveoForSitecore.version = "5.0.943.3";
            var context = document.getElementById("_585F194D-786A-427E-9DE3-63CCD3A9DB5C");
            if (!!context) {
                CoveoForSitecore.Context.configureContext(context);
            }
        }
                                </script>    </div>
</div>

<script id="panel-dictionary">
    var dictionaryData = {"close-panel":"Close Panel","open-lightbox":"Open lightbox","share":"Share","share-description":"Choose the way you wish to share the selected content.","share-social-networks":"With social networks","share-email":"By Email","share-disclaimer":"Rolex S.A respects your right to privacy and is committed to maintaining your confidence and trust. the details you provide through this website will not be used to send unsolicited email, and will not be sold to a third party. Rolex S.A does not gather any information from you without your knowledge and consent, and no personal details are required to access the website. information provided to Rolex S.A is stored in a secure location and is accessible only by designated staff.","recipients-email":"Recipient's email","recipients-name":"Recipient's name","send":"Send","send-me-a-copy":"Please send me a copy as well","your-email":"Your email","your-name":"Your name","download-accept-and-download":"Accept and Download","download-description":"Choose the asset that suits your need.","download-description-pdf":"Choose your language","download-close-panel":"","download-open-panel":"Download","download-image-high-quality":"Print quality","download-image-low-quality":"Web quality","download-technical-sheet":"Technical sheet","download-terms-of-use":"All material, software, data, media, images contained in the website are owned by Rolex. By downloading images, you agree not to use these materials for any business, commercial or public purpose. You may install and use any download on a single desktop computer.","download-terms-of-use-pdf":"All material, software, data, media, images contained in the website are owned by Rolex. By downloading images, you agree not to use these materials for any business, commercial or public purpose. You may install and use any download on a single desktop computer.","download-title":"Download","download-title-pdf":"Download PDF","bookmark-add-to-bookmark":"Add to bookmark","bookmark-added-to-bookmark":"Added to bookmark","download-all-title":"Download ZIP","download-all-description":"Choose the asset that suits your need.","download-all-terms-of-use-all-assets":"All material, software, data, media, images contained in the website are owned by Rolex. By downloading images, you agree not to use these materials for any business, commercial or public purpose. You may install and use any download on a single desktop computer.","download-all-all-assets-infos":"The recipient will receive an email shortly with a link to download all selected assets","download-all-mandatory":"* Required fields","download-all-accept-and-send":"Accept and Send","download-all-success-message":"Thank you, you will get an email shortly as soon as your zip is ready.","download-all-send-by-email":"Send by Email","download-all-zip-processing":"","download-remove-zip":"","download-zip":"Your file is ready, click to download ({ZipSize})","download-confirmation-zip-generation":"Your download request has been taken into account.","download-zip-error":"","bookmark-delete-from-bookmark":"Removed from bookmark","bookmark-limit-bookmark":"You have reach the maximum number of items in your bookmarks","bookmark-remove-from-bookmark":"remove from bookmark","filters-title":"Filters","filters-see-results":"See results","filters-open-filters":"Open filters","lightbox-previous":"previous","lightbox-next":"next","lightbox-pdf-mobile":"pdf","lightbox-pdf-large":"pdf large","lightbox-video":"video","lightbox-close":"close","lightbox-loading":"loading","search-error-minimum-characters":"Please enter at least 3 characters","search-no-result":"No results found. Please enter another search term","search-title-panel":"Search","search-panel-close":"close panel","download-all-error-message":"","download-all-success-message-direct":"","download-all-error-message-direct":"","message-close":"close","slider-go-to-image":"Go to image"}
</script>

<script id="coveo-dictionary">
    String.toLocaleString({
       "en" : {"InsertAQuery":"Insert a query","PressEnterToSend":"Press enter to send","ShowingResultsOf":"Result<pl>s</pl> {0}<pl>-{1}</pl> of {2}","ShowingResultsOfWithQuery":"Result<pl>s</pl> {0}<pl>-{1}</pl> of {2} for {3}","didYouMean":"Did you mean: {0}","autoCorrectedQueryTo":"","CollapseFacet":"Collapse {0} facet","ExpandFacet":"Expand {0} facet"}
    });
</script>
<script id="rlx-search-settings">var searchPage = "/search"</script>



    <script src="/themes/rolex/vendors~app.js?v=1.3.14"></script>
    


<script src="/scripts/jstools/jquery-3.5.1.min.js"></script>
<script src="/scripts/jstools/jquery.signalR-2.4.1.min.js"></script>
<script src="/services/v1/signalr/hubs"></script>
    <script src="/themes/rolex/app.js?v=1.3.14"></script>

</body>

</html>
