{"id":6361,"date":"2026-08-28T03:56:23","date_gmt":"2026-08-28T03:56:23","guid":{"rendered":"https:\/\/pearlresorts.com\/?page_id=6361"},"modified":"2026-09-03T05:41:18","modified_gmt":"2026-09-03T05:41:18","slug":"festive-season-le-bora-bora","status":"publish","type":"page","link":"https:\/\/pearlresorts.com\/fr\/festive-season-le-bora-bora\/","title":{"rendered":"Festive Season &#8211; Le Bora Bora"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"6361\" class=\"elementor elementor-6361\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7beb37ec e-con e-atomic-element e-flexbox-base e-7beb37ec-523066e \" data-id=\"7beb37ec\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7beb37ec\" data-e-type=\"e-flexbox\" data-id=\"7beb37ec\">\n    \t\t<div class=\"elementor-element elementor-element-1bac10e7 elementor-widget elementor-widget-html\" data-id=\"1bac10e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"sky\">\n  <div id=\"shooting-star\"><\/div>\n  <canvas id=\"sky-canvas\"><\/canvas>\n<\/div>\n\n<style>\n  #sky {\n    position: fixed;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    height: 100dvh;\n    z-index: -1;\n    pointer-events: none;\n    background: #080B18;\n    overflow: hidden;\n  }\n\n  #sky::after {\n    content: '';\n    position: absolute;\n    inset: 0;\n    background-image: url(\"data:image\/svg+xml;utf8,<svg xmlns='http:\/\/www.w3.org\/2000\/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'\/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.09 0'\/><\/filter><rect width='100%25' height='100%25' filter='url(%23n)'\/><\/svg>\");\n    opacity: 0.85;\n    mix-blend-mode: overlay;\n    pointer-events: none;\n  }\n  #sky-canvas {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    opacity: 0;\n    transition: opacity 0.6s ease;\n    pointer-events: none;\n  }\n\n  #shooting-star {\n    position: absolute;\n    top: var(--ss-top, 18%);\n    left: var(--ss-left, 65%);\n    width: 3px;\n    height: 3px;\n    border-radius: 50%;\n    background: #ffffff;\n    opacity: 0;\n    box-shadow:\n      0 0 4px 1px rgba(255, 255, 255, 0.9),\n      -80px 25px 12px -4px rgba(255, 255, 255, 0);\n  }\n  #shooting-star.is-active {\n    animation: shooting-star-fly 0.5s cubic-bezier(0.3, 0, 0.4, 1) forwards;\n  }\n  @keyframes shooting-star-fly {\n    0% {\n      opacity: 0;\n      transform: translate(0, 0);\n    }\n    12% {\n      opacity: 1;\n    }\n    75% {\n      opacity: 1;\n    }\n    100% {\n      opacity: 0;\n      transform: translate(var(--ss-dx, -320px), var(--ss-dy, 170px));\n    }\n  }\n<\/style>\n\n<script>\n(function() {\n  const sky = document.getElementById('sky');\n  const canvas = document.getElementById('sky-canvas');\n  const ctx = canvas.getContext('2d');\n  const shootingStar = document.getElementById('shooting-star');\n\n  \/\/ Respecte la pr\u00e9f\u00e9rence syst\u00e8me \"r\u00e9duire les animations\" \u2014 on saute directement\n  \/\/ \u00e0 l'\u00e9tat final (nuit \u00e9toil\u00e9e) plut\u00f4t que de jouer la s\u00e9quence compl\u00e8te.\n  const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n\n  \/\/ --- Fond fixe (nuit \u00e9toil\u00e9e d\u00e8s l'ouverture) ; seule la dur\u00e9e sert\n  \/\/     \u00e0 cadencer l'apparition progressive des \u00e9toiles ---\n  const SKY_COLOR = [8, 11, 24]; \/\/ #080B18 \u2014 nuit \u00e9toil\u00e9e\n  const STAR_FADE_DURATION = 1800; \/\/ ms, dur\u00e9e de l'apparition des \u00e9toiles\n  const TOTAL_DURATION = STAR_FADE_DURATION;\n\n  let W = window.innerWidth;\n  let VH = window.innerHeight;\n  let dpr = window.devicePixelRatio || 1;\n\n  const bandAngle = -0.45;\n\n  \/\/ --- G\u00e9n\u00e8re une teinte \"type d'\u00e9toile\" r\u00e9aliste : la plupart proches du blanc,\n  \/\/     avec une l\u00e9g\u00e8re variation vers le bleu, le jaune ou l'orang\u00e9 (classification\n  \/\/     stellaire simplifi\u00e9e O\/B\/A\/F\/G\/K\/M), plut\u00f4t que des \u00e9toiles 100% blanches ---\n  function randomStarTint() {\n    const r = Math.random();\n    let hue, saturation;\n    if (r < 0.55) {\n      hue = 0; saturation = 0; \/\/ blanc pur, majorit\u00e9 des \u00e9toiles\n    } else if (r < 0.75) {\n      hue = 215; saturation = 25 + Math.random() * 15; \/\/ bleut\u00e9 (\u00e9toiles chaudes)\n    } else if (r < 0.92) {\n      hue = 45; saturation = 20 + Math.random() * 20; \/\/ jaun\u00e2tre\n    } else {\n      hue = 25; saturation = 25 + Math.random() * 20; \/\/ orang\u00e9 (\u00e9toiles froides, plus rares)\n    }\n    return { hue, saturation };\n  }\n\n  const stars = [];\n\n  const bgCount = Math.round(400 * (W \/ 1400));\n  for (let i = 0; i < bgCount; i++) {\n    const tint = randomStarTint();\n    stars.push({\n      x: Math.random() * W,\n      y: Math.random() * VH,\n      size: Math.random() * 1.8 + 0.8,\n      baseOpacity: Math.random() * 0.5 + 0.18,\n      phase: Math.random() * Math.PI * 2,\n      speed: Math.random() * 0.7 + 0.5,\n      depth: Math.random() * 0.6 + 0.2,\n      big: false,\n      hue: tint.hue,\n      sat: tint.saturation\n    });\n  }\n\n  const bigCount = Math.round(16 * (W \/ 1400));\n  for (let i = 0; i < bigCount; i++) {\n    const tint = randomStarTint();\n    stars.push({\n      x: Math.random() * W,\n      y: Math.random() * VH,\n      size: Math.random() * 1.6 + 2.6,\n      baseOpacity: Math.random() * 0.35 + 0.55,\n      phase: Math.random() * Math.PI * 2,\n      speed: Math.random() * 0.5 + 0.3,\n      depth: Math.random() * 0.4 + 0.15,\n      big: true,\n      hue: tint.hue,\n      sat: tint.saturation\n    });\n  }\n\n  const bandCount = Math.round(600 * (W \/ 1400));\n  for (let i = 0; i < bandCount; i++) {\n    const t = Math.random();\n    const alongBand = (t - 0.5) * Math.max(W, VH) * 1.6;\n    const spreadFactor = 60 + Math.abs(Math.sin(t * Math.PI)) * 140;\n    const spread = (Math.random() - 0.5) * spreadFactor;\n\n    const cx = W \/ 2 + alongBand * Math.cos(bandAngle) - spread * Math.sin(bandAngle);\n    const cy = VH \/ 2 + alongBand * Math.sin(bandAngle) + spread * Math.cos(bandAngle);\n\n    if (cx < -50 || cx > W + 50 || cy < -50 || cy > VH + 50) continue;\n\n    const tint = randomStarTint();\n    stars.push({\n      x: cx,\n      y: cy,\n      size: Math.random() * 1.8 + 0.6,\n      baseOpacity: Math.random() * 0.4 + 0.12,\n      phase: Math.random() * Math.PI * 2,\n      speed: Math.random() * 0.7 + 0.5,\n      depth: Math.random() * 0.5 + 0.15,\n      big: false,\n      hue: tint.hue,\n      sat: tint.saturation\n    });\n  }\n\n  \/\/ --- Amas d'\u00e9toiles (clusters) : 2 \u00e0 3 petits groupes resserr\u00e9s, comme de vrais\n  \/\/     amas ouverts, plut\u00f4t qu'une distribution uniquement al\u00e9atoire uniforme ---\n  const clusterCount = 2 + Math.round(Math.random()); \/\/ 2 ou 3\n  for (let c = 0; c < clusterCount; c++) {\n    const clusterX = Math.random() * W;\n    const clusterY = Math.random() * VH * 0.75; \/\/ \u00e9vite le bas de l'\u00e9cran\n    const clusterStars = 8 + Math.floor(Math.random() * 8); \/\/ 8 \u00e0 15\n    const clusterRadius = 35 + Math.random() * 30;\n\n    for (let i = 0; i < clusterStars; i++) {\n      const angle = Math.random() * Math.PI * 2;\n      const dist = Math.random() * clusterRadius;\n      const tint = randomStarTint();\n      stars.push({\n        x: clusterX + Math.cos(angle) * dist,\n        y: clusterY + Math.sin(angle) * dist,\n        size: Math.random() * 1.4 + 0.7,\n        baseOpacity: Math.random() * 0.45 + 0.25,\n        phase: Math.random() * Math.PI * 2,\n        speed: Math.random() * 0.7 + 0.5,\n        depth: Math.random() * 0.5 + 0.2,\n        big: false,\n        hue: tint.hue,\n        sat: tint.saturation\n      });\n    }\n  }\n\n  \/\/ --- Voie lact\u00e9e : halos radiaux, g\u00e9n\u00e9r\u00e9s une fois (positions relatives \u00e0 W\/VH\n  \/\/     courants), avec leur propre profondeur de parallax \u2014 plus faible que les\n  \/\/     \u00e9toiles, pour para\u00eetre plus lointaine\/en arri\u00e8re-plan ---\n  const MILKY_WAY_DEPTH = 0.12;\n  let milkyWayBlobs = [];\n\n  function generateMilkyWayBlobs() {\n    milkyWayBlobs = [];\n    const blobCount = Math.round(90 * (W \/ 1400));\n    const bandLength = Math.max(W, VH) * 1.6;\n\n    for (let i = 0; i < blobCount; i++) {\n      const t = Math.random();\n      const alongBand = (t - 0.5) * bandLength;\n      const spreadFactor = 55 + Math.abs(Math.sin(t * Math.PI)) * 130;\n      const spread = (Math.random() - 0.5) * spreadFactor;\n\n      const cx = W \/ 2 + alongBand * Math.cos(bandAngle) - spread * Math.sin(bandAngle);\n      const cy = VH \/ 2 + alongBand * Math.sin(bandAngle) + spread * Math.cos(bandAngle);\n\n      if (cx < -200 || cx > W + 200 || cy < -200 || cy > VH + 200) continue;\n\n      milkyWayBlobs.push({\n        x: cx,\n        y: cy,\n        radius: 90 + Math.random() * 160,\n        peakAlpha: 0.012 + Math.random() * 0.018\n      });\n    }\n  }\n  generateMilkyWayBlobs();\n\n  const textEls = document.querySelectorAll('[data-sky-text]');\n\n  \/\/ --- Parallax souris (desktop) ---\n  let mouseX = 0, mouseY = 0;\n  let offsetX = 0, offsetY = 0;\n\n  window.addEventListener('mousemove', (e) => {\n    mouseX = (e.clientX \/ W - 0.5) * 2;\n    mouseY = (e.clientY \/ VH - 0.5) * 2;\n  }, { passive: true });\n\n  \/\/ --- Parallax scroll (tactile) ---\n  const isTouchDevice = window.matchMedia('(hover: none) and (pointer: coarse)').matches;\n  let lastScrollYForDrift = window.scrollY || window.pageYOffset;\n  let scrollDrift = 0;\n  const SCROLL_DRIFT_MAX = 1;\n\n  function resizeCanvas() {\n    dpr = window.devicePixelRatio || 1;\n    canvas.width = W * dpr;\n    canvas.height = VH * dpr;\n    ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n  }\n  resizeCanvas();\n\n  function regenerate() {\n    const oldW = W, oldVH = VH;\n    W = window.innerWidth;\n    VH = window.innerHeight;\n    const scaleX = W \/ oldW;\n    const scaleY = VH \/ oldVH;\n    stars.forEach(s => {\n      s.x *= scaleX;\n      s.y *= scaleY;\n    });\n    resizeCanvas();\n    generateMilkyWayBlobs();\n  }\n  window.addEventListener('resize', regenerate);\n\n  \/\/ Fond fixe d\u00e8s l'ouverture \u2014 plus de transition de couleur\n  sky.style.background = 'rgb(' + SKY_COLOR[0] + ',' + SKY_COLOR[1] + ',' + SKY_COLOR[2] + ')';\n  \/\/ Texte : couleur claire fixe d\u00e8s le d\u00e9part, puisque le fond est sombre d\u00e8s l'ouverture\n  textEls.forEach(el => { el.style.color = '#FBFAF6'; });\n\n  const startTime = performance.now() - (prefersReducedMotion ? TOTAL_DURATION : 0);\n\n  function render(now) {\n    const elapsed = now - startTime;\n\n    if (isTouchDevice) {\n      const currentScrollYForDrift = window.scrollY || window.pageYOffset;\n      const deltaForDrift = currentScrollYForDrift - lastScrollYForDrift;\n      lastScrollYForDrift = currentScrollYForDrift;\n      scrollDrift += deltaForDrift * 0.012;\n      scrollDrift = Math.max(-SCROLL_DRIFT_MAX, Math.min(SCROLL_DRIFT_MAX, scrollDrift));\n      scrollDrift *= 0.94;\n      offsetX += (scrollDrift - offsetX) * 0.05;\n      offsetY += (scrollDrift * 0.6 - offsetY) * 0.05;\n    } else {\n      offsetX += (mouseX - offsetX) * 0.05;\n      offsetY += (mouseY - offsetY) * 0.05;\n    }\n\n    \/\/ --- Parallax de scroll : d\u00e9cale l\u00e9g\u00e8rement les \u00e9toiles selon leur\n    \/\/     profondeur, peu importe l'appareil. \"Wrap\" vertical pour que\n    \/\/     l'effet reste fluide m\u00eame sur une page tr\u00e8s longue, plut\u00f4t que\n    \/\/     de finir \"vide\" apr\u00e8s trop de scroll. ---\n    const currentScrollY = window.scrollY || window.pageYOffset;\n    const scrollParallaxStrength = 0.06;\n\n    \/\/ Les \u00e9toiles apparaissent progressivement d\u00e8s le chargement, sur STAR_FADE_DURATION\n    const starVisibility = Math.max(0, Math.min(1, elapsed \/ STAR_FADE_DURATION));\n    canvas.style.opacity = starVisibility > 0 ? '1' : '0';\n\n    const t = now \/ 1000;\n    const maxParallax = 18;\n\n    ctx.clearRect(0, 0, W, VH);\n\n    \/\/ --- Voie lact\u00e9e d'abord (arri\u00e8re-plan), profondeur de parallax r\u00e9duite ---\n    if (starVisibility > 0 && milkyWayBlobs.length) {\n      const mwPx = offsetX * maxParallax * MILKY_WAY_DEPTH;\n      const mwPy = offsetY * maxParallax * MILKY_WAY_DEPTH;\n      const mwOpacity = starVisibility * 0.6;\n\n      ctx.save();\n      ctx.globalCompositeOperation = 'lighter';\n      ctx.globalAlpha = mwOpacity;\n      ctx.translate(mwPx, mwPy);\n\n      for (let i = 0; i < milkyWayBlobs.length; i++) {\n        const blob = milkyWayBlobs[i];\n        const grad = ctx.createRadialGradient(blob.x, blob.y, 0, blob.x, blob.y, blob.radius);\n        grad.addColorStop(0, 'rgba(230, 234, 250, ' + blob.peakAlpha.toFixed(4) + ')');\n        grad.addColorStop(1, 'rgba(230, 234, 250, 0)');\n        ctx.fillStyle = grad;\n        ctx.beginPath();\n        ctx.arc(blob.x, blob.y, blob.radius, 0, Math.PI * 2);\n        ctx.fill();\n      }\n      ctx.restore();\n    }\n\n    \/\/ --- \u00c9toiles (premier plan), profondeur de parallax individuelle ---\n    ctx.save();\n    ctx.globalCompositeOperation = 'source-over';\n\n    for (let i = 0; i < stars.length; i++) {\n      const s = stars[i];\n      const twinkle = 0.5 + 0.5 * Math.sin(t * s.speed + s.phase);\n      const opacity = starVisibility * s.baseOpacity * (0.55 + twinkle * 0.45);\n      if (opacity <= 0.003) continue;\n\n      const px = s.x + offsetX * maxParallax * s.depth;\n      let py = s.y + offsetY * maxParallax * s.depth;\n\n      \/\/ D\u00e9calage de scroll par profondeur, avec boucle verticale pour\n      \/\/ que l'effet reste subtil et continu peu importe la longueur de page\n      const scrollShift = (-currentScrollY * scrollParallaxStrength * s.depth) % VH;\n      py = ((py + scrollShift) % VH + VH) % VH;\n\n      ctx.globalAlpha = opacity;\n      ctx.fillStyle = s.sat > 0\n        ? 'hsl(' + s.hue + ', ' + s.sat.toFixed(0) + '%, 92%)'\n        : '#ffffff';\n\n      ctx.beginPath();\n      ctx.arc(px, py, s.size \/ 2, 0, Math.PI * 2);\n      ctx.fill();\n\n      if (s.big) {\n        ctx.save();\n        ctx.globalAlpha = opacity * 0.4;\n        const glow = ctx.createRadialGradient(px, py, 0, px, py, s.size * 2.4);\n        glow.addColorStop(0, 'rgba(255,255,255,0.6)');\n        glow.addColorStop(1, 'rgba(255,255,255,0)');\n        ctx.fillStyle = glow;\n        ctx.beginPath();\n        ctx.arc(px, py, s.size * 2.4, 0, Math.PI * 2);\n        ctx.fill();\n        ctx.restore();\n      }\n    }\n    ctx.restore();\n\n    \/\/ Ne replanifie la frame suivante que si l'onglet est visible \u2014\n    \/\/ \u00e9vite de consommer CPU\/batterie inutilement en arri\u00e8re-plan.\n    if (!document.hidden) {\n      requestAnimationFrame(render);\n    }\n  }\n\n  requestAnimationFrame(render);\n\n  \/\/ Reprend la boucle d\u00e8s que l'onglet redevient visible (elle s'\u00e9tait\n  \/\/ arr\u00eat\u00e9e d'elle-m\u00eame dans render() faute de nouvelle frame planifi\u00e9e).\n  document.addEventListener('visibilitychange', () => {\n    if (!document.hidden) {\n      requestAnimationFrame(render);\n    }\n  });\n\n  \/\/ --- \u00c9toile filante : passages r\u00e9currents, position\/trajectoire al\u00e9atoires ---\n  if (!prefersReducedMotion) {\n    function triggerShootingStar() {\n      const startTop = 5 + Math.random() * 35;\n      const startLeft = 20 + Math.random() * 60;\n\n      const distance = 220 + Math.random() * 180;\n      const angle = (20 + Math.random() * 25) * (Math.PI \/ 180);\n      const direction = Math.random() < 0.5 ? 1 : -1;\n      const dx = Math.cos(angle) * distance * direction;\n      const dy = Math.sin(angle) * distance;\n\n      shootingStar.style.setProperty('--ss-top', startTop + '%');\n      shootingStar.style.setProperty('--ss-left', startLeft + '%');\n      shootingStar.style.setProperty('--ss-dx', dx.toFixed(0) + 'px');\n      shootingStar.style.setProperty('--ss-dy', dy.toFixed(0) + 'px');\n\n      shootingStar.classList.remove('is-active');\n      void shootingStar.offsetWidth;\n      shootingStar.classList.add('is-active');\n\n      const nextDelay = 18000 + Math.random() * 14000;\n      setTimeout(triggerShootingStar, nextDelay);\n    }\n\n    setTimeout(triggerShootingStar, TOTAL_DURATION + 500);\n  }\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-464970ef e-con e-atomic-element e-flexbox-base e-464970ef-6c053bd main-header festive-season-bg \" data-id=\"464970ef\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"464970ef\" data-e-type=\"e-flexbox\" data-id=\"464970ef\">\n    <div class=\"elementor-element elementor-element-231fc128 e-con e-atomic-element e-flexbox-base e-231fc128-dff4d9b \" data-id=\"231fc128\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"231fc128\" data-e-type=\"e-flexbox\" data-id=\"231fc128\">\n    <div class=\"elementor-element elementor-element-61c4a880 e-con e-atomic-element e-flexbox-base e-61c4a880-d868ddb \" data-id=\"61c4a880\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"61c4a880\" data-e-type=\"e-flexbox\" data-id=\"61c4a880\">\n    \t\t\t<h2 data-interaction-id=\"bdc16e0\" class=\"e-bdc16e0-6fe19ce body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"bdc16e0\"><a href=\"https:\/\/pearlresorts.com\/fr\/festive-season\/\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tFestive Season\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"6e420221\" class=\"e-6e420221-f267e48 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"6e420221\">&nbsp; \u3009<\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"1bb88ae4\" class=\"e-1bb88ae4-afdc6a5 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"1bb88ae4\">Le Bora Bora<\/h2>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-417101cc e-con e-atomic-element e-flexbox-base e-417101cc-d8a0124 \" data-id=\"417101cc\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"417101cc\" data-e-type=\"e-flexbox\" data-id=\"417101cc\">\n    \t\t\t<h2 data-interaction-id=\"2c898726\" class=\"body-text-small e-2c898726-6596b47 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"2c898726\"><a href=\"#program\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tThe program\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"34a09cf3\" class=\"body-text-small e-34a09cf3-1a28711 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"34a09cf3\"><a href=\"#about\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tAbout\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"32b88ff8\" class=\"e-32b88ff8-6f3a2b9 body-text-small subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"32b88ff8\"><a href=\"#collection\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tThe collection\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"531e9bfe\" class=\"body-text-small e-531e9bfe-c676791 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"531e9bfe\"><a href=\"#conditions\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tConditions\n\t<\/a><\/h2>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-13799ade e-con e-atomic-element e-flexbox-base e-13799ade-db3bff1 \" data-id=\"13799ade\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"13799ade\" data-e-type=\"e-flexbox\" data-id=\"13799ade\">\n    \t\t<div class=\"elementor-element elementor-element-7d1a25aa elementor-widget elementor-widget-button\" data-id=\"7d1a25aa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/bookings.leborabora.com\/en\/search-rates?hotel=62726\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Book now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-c3d6cb9 e-con e-atomic-element e-flexbox-base e-c3d6cb9-868b949 \" data-id=\"c3d6cb9\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c3d6cb9\" data-e-type=\"e-flexbox\" data-id=\"c3d6cb9\">\n    \t\t<div class=\"elementor-element elementor-element-5acb7ee0 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"5acb7ee0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-2869490d elementor-widget elementor-widget-off-canvas\" data-id=\"2869490d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;entrance_animation_mobile&quot;:&quot;slideInDown&quot;,&quot;exit_animation_mobile&quot;:&quot;slideInDown&quot;}\" data-widget_type=\"off-canvas.default\">\n\t\t\t\t\t\t\t<div id=\"off-canvas-2869490d\" class=\"e-off-canvas\" role=\"dialog\" aria-hidden=\"true\" aria-label=\"Anchors\" aria-modal=\"true\" inert=\"\" data-delay-child-handlers=\"true\">\n\t\t\t<div class=\"e-off-canvas__overlay\"><\/div>\n\t\t\t<div class=\"e-off-canvas__main\">\n\t\t\t\t<div class=\"e-off-canvas__content\">\n\t\t\t\t\t<div class=\"elementor-element elementor-element-a511787 e-con-full festive-season-bg e-flex e-con e-child\" data-id=\"a511787\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<h2 data-interaction-id=\"2a5d97ad\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"2a5d97ad\"><a href=\"#about\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tAbout\n\t<\/a><\/h2>\n\t\t\t\t\t\n<hr class=\"e-145008ea-d7fa399 e-divider-base\" data-interaction-id=\"145008ea\"  data-e-type=\"widget\" data-id=\"145008ea\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"3848d988\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"3848d988\">Festive Program<\/h2>\n\t\t\t\t\t\n<hr class=\"e-102f1a4e-f4dc3cd e-divider-base\" data-interaction-id=\"102f1a4e\"  data-e-type=\"widget\" data-id=\"102f1a4e\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"7a766bf\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"7a766bf\">Our collection<\/h2>\n\t\t\t\t\t\n<hr class=\"e-53cf5cd3-bc9d0b3 e-divider-base\" data-interaction-id=\"53cf5cd3\"  data-e-type=\"widget\" data-id=\"53cf5cd3\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"44bd0472\" class=\"body-text-small white-text e-heading-base\" data-e-type=\"widget\" data-id=\"44bd0472\">Conditions<\/h2>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-3ad21abd e-con e-atomic-element e-flexbox-base e-3ad21abd-8dd26e7 \" data-id=\"3ad21abd\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3ad21abd\" id=\"program\" data-e-type=\"e-flexbox\" data-id=\"3ad21abd\">\n    <div class=\"elementor-element elementor-element-446e80c9 e-con e-atomic-element e-flexbox-base e-446e80c9-e5b7ede \" data-id=\"446e80c9\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"446e80c9\" data-e-type=\"e-flexbox\" data-id=\"446e80c9\">\n    <div class=\"elementor-element elementor-element-6c61f9b7 e-con e-atomic-element e-flexbox-base e-6c61f9b7-fcd0b4c \" data-id=\"6c61f9b7\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6c61f9b7\" data-e-type=\"e-flexbox\" data-id=\"6c61f9b7\">\n    <div class=\"elementor-element elementor-element-6beb24cd e-con e-atomic-element e-flexbox-base e-6beb24cd-306949d \" data-id=\"6beb24cd\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6beb24cd\" data-e-type=\"e-flexbox\" data-id=\"6beb24cd\">\n    <div class=\"elementor-element elementor-element-1fa40197 e-con e-atomic-element e-flexbox-base e-1fa40197-7c9520b \" data-id=\"1fa40197\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1fa40197\" data-e-type=\"e-flexbox\" data-id=\"1fa40197\">\n    \t\t<div class=\"elementor-element elementor-element-559efb87 elementor-widget__width-inherit elementor-widget-tablet__width-inherit elementor-widget-mobile__width-initial elementor-widget elementor-widget-heading\" data-id=\"559efb87\" data-element_type=\"widget\" data-e-type=\"widget\" data-intro-reveal=\"\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Celebrate the festive season at Le Bora Bora<\/h3>\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-237b7991 e-con e-atomic-element e-flexbox-base e-237b7991-8f2fff8 \" data-id=\"237b7991\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"237b7991\" data-e-type=\"e-flexbox\" data-id=\"237b7991\">\n    \n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-53e0a529 e-con e-atomic-element e-flexbox-base e-53e0a529-abc0dd4 \" data-id=\"53e0a529\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"53e0a529\" data-e-type=\"e-flexbox\" data-id=\"53e0a529\">\n    <div class=\"elementor-element elementor-element-1496595f e-con e-atomic-element e-flexbox-base e-1496595f-265440a \" data-id=\"1496595f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1496595f\" data-e-type=\"e-flexbox\" data-id=\"1496595f\">\n    \n<\/div>\n<div class=\"elementor-element elementor-element-32f29bfb e-con e-atomic-element e-flexbox-base e-32f29bfb-2b09875 \" data-id=\"32f29bfb\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"32f29bfb\" data-e-type=\"e-flexbox\" data-id=\"32f29bfb\">\n    \t\t\t<p class=\"e-4b0857da-b588295 body-text-small e-paragraph-base\" data-interaction-id=\"4b0857da\" data-e-type=\"widget\" data-id=\"4b0857da\" >At Le Bora Bora by Pearl Resorts, the festive season follows the rhythm of the island. Evenings gather around the traditional Pae Pae, where Polynesian music and dance unfold against the silhouette of Mount Otemanu. Here, celebration is made for sharing \u2014 a time to come together, surrounded by the warmth of Polynesian culture. <\/p>\n\t\t\t\t\t<p class=\"e-798c323f-875fa9f body-text-small e-paragraph-base\" data-interaction-id=\"798c323f\" data-e-type=\"widget\" data-id=\"798c323f\" >After dark, a walk through the resort\u2019s untamed gardens reveals another side of the island: a quieter world, alive beneath the night sky.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-7632dc7b e-con e-atomic-element e-flexbox-base e-7632dc7b-b9a7d23 \" data-id=\"7632dc7b\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7632dc7b\" data-e-type=\"e-flexbox\" data-id=\"7632dc7b\">\n    \t\t<div class=\"elementor-element elementor-element-14699792 elementor-widget elementor-widget-button\" data-id=\"14699792\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.calameo.com\/pearlresortsoftahiti\/read\/0057163202703e1f9a140\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">The festive program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-149427a3 e-con e-atomic-element e-flexbox-base e-149427a3-44d8706 \" data-id=\"149427a3\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"149427a3\" data-e-type=\"e-flexbox\" data-id=\"149427a3\">\n    <div class=\"elementor-element elementor-element-76984d86 e-con e-atomic-element e-flexbox-base e-76984d86-4092eb5 \" data-id=\"76984d86\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"76984d86\" data-e-type=\"e-flexbox\" data-id=\"76984d86\">\n    \t\t\t\n<hr class=\"e-445396c1-cbbd8b6 e-divider-base\" data-interaction-id=\"445396c1\"  data-e-type=\"widget\" data-id=\"445396c1\" \/>\n\t\t\t\t<div class=\"elementor-element elementor-element-ecd15ba elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"ecd15ba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Calque_3\" data-name=\"Calque 3\" viewBox=\"0 0 170.33 169.39\"><defs><style>      .cls-1 {        fill: #fff;      }    <\/style><\/defs><path class=\"cls-1\" d=\"M143.01,118.85c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65ZM126.31,109.21c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65Z\"><\/path><path class=\"cls-1\" d=\"M55.04,67.74c-.13,0-.36.25-.48.18-1.75-1.01-1.64-1.2-3.39-2.21s-1.9-.76-3.65-1.77c-.37-.21-.61-1.06-.4-1.43.21-.37.85-.2,1.21.01,1.75,1.01,1.98.62,3.73,1.63s1.5,1.45,3.25,2.46c.37.21.72.55.51.91-.14.25-.51.2-.78.2ZM43.48,61.07c-.13,0-.36.25-.48.18-2.18-1.26-2.07-1.44-4.25-2.7s-2.33-1.01-4.51-2.27-2.19-1.24-4.38-2.51-1.95-1.66-4.14-2.92c-.37-.21-.82-.67-.61-1.04.21-.37.81-.16,1.17.05,2.18,1.26,2.36.95,4.54,2.21s2.22,1.19,4.41,2.45,1.93,1.7,4.11,2.96,2.42.86,4.6,2.12c.37.21.55.91.34,1.28-.14.25-.54.19-.81.19Z\"><\/path><path class=\"cls-1\" d=\"M112.38,70.39c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,1.86-1.07,1.97-.89,3.83-1.96s1.73-1.29,3.6-2.37,1.92-.97,3.78-2.04,1.89-1.03,3.76-2.1,1.82-1.15,3.69-2.23c.39-.23.79.09,1.02.48.23.39.29.88-.1,1.11-1.86,1.07-1.81,1.17-3.67,2.24s-2,.84-3.86,1.91-1.82,1.15-3.68,2.22-1.81,1.17-3.68,2.25-1.99.85-3.86,1.93c-.13.08-.2.48-.34.48ZM135.86,56.83c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,2.35-1.36,2.46-1.17,4.81-2.53s2.22-1.57,4.57-2.93c.39-.23,1.07.04,1.29.44.23.39.03.96-.36,1.18-2.35,1.36-2.31,1.43-4.66,2.78s-2.49,1.11-4.84,2.46c-.13.08-.18.52-.32.52Z\"><\/path><path class=\"cls-1\" d=\"M26.02,120.28c-.27,0-.75-.34-.89-.59-.21-.37.1-1.05.46-1.26,1.64-.95,1.75-.76,3.4-1.71s1.72-.82,3.37-1.77,1.65-.94,3.3-1.89c.36-.21.73-.36.94,0,.21.37-.04.69-.41.91-1.64.95-1.61,1.01-3.25,1.96s-1.52,1.17-3.17,2.12-1.75.78-3.39,1.73c-.12.07-.22.5-.35.5ZM40.45,111.95c-.27,0-.75-.34-.9-.59-.21-.37.1-1.05.46-1.26,1.84-1.06,1.95-.87,3.78-1.93s1.91-.93,3.75-1.99,1.84-1.05,3.68-2.11,1.67-1.35,3.51-2.41,1.95-.86,3.79-1.93c.37-.21.64-.19.85.18.21.37.26.89-.11,1.1-1.84,1.06-1.93.89-3.77,1.95s-1.67,1.34-3.51,2.4-1.95.86-3.79,1.92-1.77,1.18-3.61,2.25-1.95.88-3.78,1.94c-.12.07-.23.48-.36.48Z\"><\/path><path class=\"cls-1\" d=\"M103.47,54.82c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.01-1.75,1.18-1.65,2.2-3.41s1.08-1.72,2.09-3.47.75-1.91,1.76-3.66c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.01,1.75-1.04,1.74-2.05,3.49s-1.14,1.68-2.15,3.44-.77,1.89-1.79,3.65c-.15.26-.53.49-.81.49ZM112.35,39.44c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.28-2.22,1.46-2.12,2.74-4.35s1.35-2.19,2.64-4.41,1.02-2.38,2.3-4.61c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.28,2.22-1.31,2.21-2.6,4.43s-1.41,2.15-2.7,4.38-1.04,2.36-2.33,4.59c-.15.26-.53.49-.81.49Z\"><\/path><path class=\"cls-1\" d=\"M51.22,144.97c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.79,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22ZM60.86,128.27c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.8,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22Z\"><\/path><path class=\"cls-1\" d=\"M120.06,145.04c-.27,0-.55-.02-.69-.27-1.06-1.83-1.17-1.77-2.23-3.61s-.64-2.08-1.69-3.92-1.18-1.77-2.24-3.6-1.09-1.82-2.15-3.66-1.13-1.8-2.19-3.64c-.21-.37-.06-.6.31-.81.37-.21.88-.37,1.1,0,1.06,1.84,1.13,1.8,2.19,3.63s.76,2.01,1.82,3.84,1.4,1.64,2.46,3.47,1.03,1.86,2.09,3.7.89,1.94,1.96,3.77c.21.37.03.9-.33,1.11-.12.07-.27-.02-.4-.02ZM106.83,122.12c-.27,0-.55-.02-.69-.27-.95-1.64-1.06-1.58-2.01-3.22s-.52-1.89-1.47-3.54-1.07-1.58-2.02-3.22c-.21-.37-.18-.59.19-.8.36-.21.67-.19.88.18.95,1.64.84,1.71,1.79,3.35s1.3,1.44,2.25,3.09,1.02,1.61,1.97,3.25c.21.37-.18.89-.55,1.1-.12.07-.21.08-.34.08Z\"><\/path><path class=\"cls-1\" d=\"M71.87,61.81c-.28,0-.28-.39-.44-.65-.04-.07-.22.03-.26-.03-.23-.39-.02-.55.37-.78.39-.23.62-.32.84.07.04.07.22-.03.26.04.23.39-.05.81-.44,1.04-.13.08-.2.32-.34.32ZM68.98,56.81c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.05-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52ZM58.7,39c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.06-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52Z\"><\/path><path class=\"cls-1\" d=\"M52.62,81.71c1.28.37,1.4-.07,2.73-.15s1.31-.5,2.64-.58,1.36.34,2.69.26,1.32-.28,2.65-.35,1.34.05,2.68-.03,1.34-.06,2.67-.14,1.32-.34,2.65-.42,1.36.32,2.7.24,1.33-.19,2.67-.27c1.16-.07,2.37-.55,3.14-1.31s.89-2,.96-3.16c.08-1.33.17-1.33.25-2.66s.23-1.33.31-2.66-.14-1.34-.06-2.68.03-1.34.11-2.67.5-1.31.58-2.64.17-1.33.24-2.66-.15-1.35-.07-2.68.17-1.33.25-2.67.1-1.32-.26-2.61c-.9.09-1.49.27-2.36.42s-1.83.05-2.69.27-1.7.6-2.54.89-1.7.58-2.52.95-1.6.83-2.38,1.26-1.5.98-2.24,1.47-1.6.85-2.3,1.4-1.16,1.4-1.81,2.01-1.58.95-2.19,1.61-1.09,1.44-1.64,2.14-.78,1.63-1.27,2.38-1.31,1.29-1.74,2.07-.81,1.6-1.18,2.42-.71,1.65-1,2.5-.7,1.67-.93,2.54-.35,1.77-.51,2.65-.13,1.97-.21,2.87ZM72.96,72.08c-.96.96-2.26.96-3.22,0-.96-.96-1.26-2.56-.3-3.53.96-.96,2.57-.66,3.53.3.96.96.96,2.26,0,3.23Z\"><\/path><path class=\"cls-1\" d=\"M81.06,93.7c-.07-1.16-.81-2.02-1.58-2.79s-1.64-1.25-2.8-1.32c-1.33-.08-1.34-.05-2.67-.13s-1.32-.34-2.65-.42-1.35.21-2.68.13-1.32-.28-2.65-.36-1.34-.03-2.67-.1-1.31-.47-2.65-.55-1.35.17-2.69.09-1.35.13-2.69.05-1.37-.67-2.66-.3c.09.9.02,1.8.18,2.67s.61,1.71.84,2.56.48,1.72.78,2.56.35,1.79.72,2.61.87,1.58,1.3,2.36.88,1.57,1.38,2.31.92,1.57,1.47,2.27,1.38,1.18,1.99,1.84,1.25,1.27,1.9,1.88,1.13,1.45,1.83,2,1.43,1.1,2.18,1.6,1.57.89,2.36,1.32,1.66.69,2.48,1.06,1.61.81,2.45,1.11,1.81.18,2.68.41,1.71.42,2.6.57,1.76.52,2.66.6c.37-1.28-.4-1.33-.48-2.66s.41-1.36.33-2.7-.1-1.33-.18-2.66-.03-1.34-.11-2.67-.16-1.33-.24-2.66-.17-1.33-.25-2.66-.25-1.33-.33-2.66.07-1.35,0-2.68-.06-1.34-.14-2.68ZM73.05,100.74c-.96.96-2.66,1.19-3.62.23-.96-.96-.92-2.84.04-3.8.96-.96,2.82-.99,3.78-.02.96.96.76,2.63-.2,3.6Z\"><\/path><path class=\"cls-1\" d=\"M94.6,89.68c-1.16.07-2.22.28-2.99,1.05s-1.17,1.82-1.24,2.97c-.08,1.33-.18,1.33-.26,2.66s-.11,1.33-.19,2.67-.25,1.32-.33,2.65-.04,1.34-.12,2.67.13,1.35.05,2.68.15,1.35.07,2.68-.36,1.32-.44,2.65.19,1.35.12,2.69-.92,1.41-.55,2.7c.9-.09,1.91-.32,2.79-.47s1.77-.29,2.63-.52,1.64-.72,2.48-1.02,1.85-.19,2.67-.55,1.43-1.15,2.21-1.58,1.62-.76,2.36-1.25,1.34-1.18,2.04-1.73,1.52-.96,2.17-1.57,1.29-1.23,1.9-1.89,1.22-1.31,1.77-2.01.96-1.5,1.46-2.25,1.25-1.34,1.68-2.12.5-1.75.87-2.56,1.05-1.5,1.35-2.35.44-1.75.67-2.61.42-1.74.58-2.63.25-2.06.34-2.96c-1.28-.37-1.4.62-2.73.7s-1.36-.28-2.69-.2-1.33.17-2.66.25-1.33.09-2.67.17-1.32.26-2.66.34-1.34-.09-2.68-.01-1.33.2-2.66.28-1.38-.37-2.71-.2-1.29.58-2.63.65ZM101.87,100.99c-.96.96-2.73.76-3.69-.2-.96-.96-1.03-2.59-.07-3.55.96-.96,2.58-.89,3.55.07.96.96,1.17,2.72.21,3.68Z\"><\/path><path class=\"cls-1\" d=\"M88.78,51.76c-.37,1.28-.06,1.37.02,2.7s.11,1.33.19,2.67.05,1.33.13,2.66.12,1.33.2,2.66.51,1.31.59,2.64-.18,1.35-.11,2.69.36,1.32.44,2.65-.46,1.37-.38,2.71.24,1.33.32,2.67c.07,1.16.51,2.35,1.28,3.12s1.98.84,3.14.91c1.33.08,1.33.21,2.66.29s1.33.08,2.67.16,1.31.41,2.64.48,1.35-.26,2.69-.18,1.32.28,2.66.35,1.32.28,2.66.36,1.35-.14,2.68-.06,1.34-.05,2.68.03,1.41.71,2.7.35c-.09-.9-.49-1.84-.65-2.71s-.31-1.75-.53-2.61-.06-1.86-.35-2.7-.91-1.57-1.27-2.39-.75-1.62-1.18-2.4-1.01-1.47-1.51-2.21-.68-1.72-1.23-2.42-1.26-1.3-1.86-1.95-1.39-1.13-2.05-1.74-1.21-1.33-1.92-1.88-1.46-1.03-2.21-1.52-1.5-.98-2.28-1.41-1.64-.71-2.46-1.08-1.63-.7-2.48-.99-1.69-.56-2.55-.79-1.72-.46-2.6-.62-1.83-.37-2.72-.46ZM101.61,72.15c-.96.96-2.31.87-3.27-.09s-.98-2.24-.02-3.2c.96-.96,2.24-.94,3.2.02.96.96,1.05,2.31.09,3.28Z\"><\/path><path class=\"cls-1\" d=\"M169.88,83.05c-7.52-.44-7.53-.29-15.05-.73-7.52-.44-7.53-.23-15.05-.67-7.52-.44-7.55.02-15.07-.42-7.52-.44-7.52-.53-15.04-.98-7.52-.44-7.48-1.17-15-1.61-1.87-.11-3.79-.99-3.9-2.86-.44-7.52-.54-7.51-.98-15.03-.44-7.52.45-7.57,0-15.09-.44-7.52-1.07-7.48-1.51-15.01-.44-7.52-.12-7.54-.57-15.06-.44-7.52-1.1-7.48-1.55-15.01C86.13,0,86.22,0,85.64,0s-1.01-.03-1.04.55c-.44,7.52-.09,7.54-.53,15.06-.44,7.52-1.4,7.46-1.85,14.98-.44,7.52.05,7.55-.4,15.07-.44,7.52-.79,7.5-1.23,15.02s.32,7.57-.12,15.09c-.11,1.87-1.95,3.34-3.83,3.46-7.52.44-7.51.65-15.02,1.09-7.52.44-7.53.23-15.05.67-7.52.44-7.5.87-15.02,1.32-7.52.44-7.55.03-15.07.47-7.52.44-7.52.5-15.04.95-.58.03-1.44.44-1.44,1.03s.88.55,1.46.58c7.52.44,7.48,1.14,15,1.59,7.52.44,7.53.28,15.05.72,7.52.44,7.52.5,15.04.94,7.52.44,7.54.15,15.06.59,7.52.44,7.55-.03,15.07.42,1.87.11,3.17,2.29,3.28,4.17.44,7.52-.08,7.55.36,15.07.44,7.52,1.27,7.47,1.71,14.99.44,7.52-.25,7.56.2,15.08.44,7.52.67,7.51,1.11,15.03s.99,7.49,1.44,15.01c.03.58.28.41.86.41s1.17.19,1.21-.39c.44-7.52.15-7.54.59-15.05.44-7.52.76-7.5,1.2-15.02.44-7.52.66-7.51,1.1-15.03.44-7.52.07-7.54.51-15.07.44-7.52.71-7.51,1.15-15.03.11-1.87,1.34-3.7,3.21-3.81,7.52-.44,7.5-.78,15.02-1.22,7.52-.44,7.56.23,15.08-.22,7.52-.44,7.5-.88,15.02-1.32,7.52-.44,7.58.53,15.1.09,7.52-.44,7.51-.57,15.04-1.01.58-.03.44-.94.44-1.52s.15-1.67-.43-1.7ZM158.32,84.76l-7.25.51h0c-3.33.19-3.43,0-6.9.2-3.55.21-3.55.23-7.09.44-3.54.21-3.53.46-7.07.67-3.55.21-3.55.09-7.1.3-3.55.21-3.56.01-7.1.22-3.55.21-3.55.1-7.1.31-3.55.21-3.53.51-7.07.72-3.54.21-3.56-.07-7.1.14-2.76.16-5.18,2.61-5.35,5.37-.21,3.55.28,3.58.07,7.13-.21,3.55-.69,3.52-.9,7.07-.21,3.55-.11,3.55-.32,7.1-.21,3.55-.27,3.54-.48,7.09-.21,3.55.05,3.56-.16,7.11-.21,3.55-.18,3.55-.39,7.09-.21,3.55-.11,3.55-.32,7.1-.2,3.41-.38,3.54-.58,6.68h0s-.43,7.22-.43,7.22c0,0,0,0-.01,0-.01,0-.02,0-.04,0l-.29-5.21c.11-.53.18-1.08.15-1.64-.21-3.55-.51-3.53-.72-7.08-.21-3.55-.17-3.55-.38-7.1-.21-3.55-.37-3.54-.58-7.08-.21-3.55.24-3.57.03-7.12-.21-3.55-.36-3.54-.57-7.08s-.51-3.53-.72-7.07c-.21-3.55.09-3.56-.12-7.11-.21-3.54-.6-3.52-.81-7.07-.16-2.76-2.08-5.13-4.84-5.29-3.55-.21-3.57.07-7.12-.14s-3.55-.14-7.1-.35c-3.55-.21-3.53-.46-7.08-.67-3.54-.21-3.54-.28-7.09-.49-3.55-.21-3.57.11-7.11-.1q-3.55-.21-7.09-.41c-3.55-.21-3.54-.36-7.08-.57-3.55-.21-3.55-.1-7.1-.31-.03,0-.07,0-.1,0l-6.96-.39c0-.07-.01-.12-.01-.19,0,0,0,0,0,0l6.76-.4c.11,0,.23,0,.34,0,3.55-.21,3.55-.19,7.1-.4,3.55-.21,3.54-.38,7.09-.59,3.54-.21,3.56.07,7.11-.14,3.55-.21,3.54-.34,7.09-.55,3.55-.21,3.54-.34,7.08-.55,3.55-.21,3.56.11,7.11-.1,3.55-.21,3.52-.67,7.06-.88,3.54-.21,3.56,0,7.1-.22,2.76-.16,5.16-2.3,5.33-5.06.21-3.55-.1-3.57.11-7.12.21-3.55.55-3.53.76-7.08.21-3.55-.05-3.56.16-7.11.21-3.55.02-3.56.23-7.1.21-3.55.37-3.54.58-7.08.21-3.55.03-3.56.24-7.1q.21-3.55.43-7.09c.21-3.55.59-3.52.8-7.07.03-.46,0-.92-.08-1.38l.34-5.81s0,0,0,0c0,0,0,0,0,0l.31,5.48c-.12.57-.2,1.15-.16,1.73.21,3.55.34,3.54.55,7.09.21,3.55.53,3.53.74,7.08.21,3.55.27,3.54.48,7.09.21,3.55-.02,3.56.19,7.11.21,3.55-.02,3.56.18,7.11.21,3.55.25,3.54.46,7.09.21,3.55.36,3.54.56,7.08.21,3.54.25,3.54.46,7.09.16,2.76,2.35,4.99,5.11,5.15,3.55.21,3.55.16,7.1.37,3.55.21,3.55.28,7.1.49,3.55.21,3.55.17,7.1.38,3.54.21,3.54.22,7.09.43,3.55.21,3.54.39,7.08.6,3.55.21,3.55.17,7.09.37,3.55.21,3.54.29,7.09.5,3.35.2,3.55,0,6.55.15l7.58.45s0,0,0,0c0,0,0,0,0,0Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n<hr class=\"e-5180ad1-99c0a9d e-divider-base\" data-interaction-id=\"5180ad1\"  data-e-type=\"widget\" data-id=\"5180ad1\" \/>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-1fa9cd16 e-con e-atomic-element e-flexbox-base e-1fa9cd16-733dd28 \" data-id=\"1fa9cd16\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1fa9cd16\" id=\"about\" data-e-type=\"e-flexbox\" data-id=\"1fa9cd16\">\n    <div class=\"elementor-element elementor-element-2934f6f8 e-con e-atomic-element e-flexbox-base e-2934f6f8-cec5eaf \" data-id=\"2934f6f8\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2934f6f8\" data-e-type=\"e-flexbox\" data-id=\"2934f6f8\">\n    <div class=\"elementor-element elementor-element-63551812 e-con e-atomic-element e-flexbox-base e-63551812-e34c47a \" data-id=\"63551812\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"63551812\" data-e-type=\"e-flexbox\" data-id=\"63551812\">\n    \t\t\t<img fetchpriority=\"high\" decoding=\"async\" class=\"e-image-base e-3f6ecd7f-38dfa2c\" data-interaction-id=\"3f6ecd7f\" data-e-type=\"widget\" data-id=\"3f6ecd7f\" id=\"6851\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main.webp\" width=\"1920\" height=\"1280\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main-300x200.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main-1024x683.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main-768x512.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main-1536x1024.webp 1536w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/BOB-main-18x12.webp 18w\" alt=\"\"\/>\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-37887027 e-con e-atomic-element e-flexbox-base e-37887027-7f87033 \" data-id=\"37887027\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"37887027\" data-e-type=\"e-flexbox\" data-id=\"37887027\">\n    \t\t<div class=\"elementor-element elementor-element-b0f8dff elementor-widget elementor-widget-heading\" data-id=\"b0f8dff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The property<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<h3 data-interaction-id=\"5b4f69af\" class=\"e-5b4f69af-79cc086 h2 e-heading-base\" data-e-type=\"widget\" data-id=\"5b4f69af\" >Le Bora Bora<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-559b64a6 e-con e-atomic-element e-flexbox-base e-559b64a6-112987a \" data-id=\"559b64a6\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"559b64a6\" data-e-type=\"e-flexbox\" data-id=\"559b64a6\">\n    \t\t\t<p class=\"e-7475011-66b7a99 body-text-small e-paragraph-base\" data-interaction-id=\"7475011\" data-e-type=\"widget\" data-id=\"7475011\">At the heart of Bora Bora\u2019s lagoon, beneath the watchful presence of Mount Otemanu, art offers an intimate way into the culture of the islands.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-602b1b07 carousel-centered pagination-light elementor-widget__width-inherit elementor-pagination-position-inside elementor-pagination-type-bullets elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"602b1b07\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Le Taha&#039;a&quot;,&quot;_id&quot;:&quot;046cca1&quot;},{&quot;_id&quot;:&quot;5b75855&quot;,&quot;slide_title&quot;:&quot;Le Bora Bora&quot;},{&quot;_id&quot;:&quot;ded07b9&quot;,&quot;slide_title&quot;:&quot;Vahine Private Island&quot;},{&quot;slide_title&quot;:&quot;Le Tikehau&quot;,&quot;_id&quot;:&quot;4354dee&quot;},{&quot;slide_title&quot;:&quot;Le Nuku Hiva&quot;,&quot;_id&quot;:&quot;4c25937&quot;},{&quot;slide_title&quot;:&quot;Le Taha&#039;a&quot;,&quot;_id&quot;:&quot;6e9eb9a&quot;},{&quot;slide_title&quot;:&quot;Le Bora Bora&quot;,&quot;_id&quot;:&quot;2b9c8b9&quot;},{&quot;slide_title&quot;:&quot;Vahine Private Island&quot;,&quot;_id&quot;:&quot;e524b5c&quot;},{&quot;_id&quot;:&quot;6bfe188&quot;,&quot;slide_title&quot;:&quot;Le Tikehau&quot;},{&quot;slide_title&quot;:&quot;Le Nuku Hiva&quot;,&quot;_id&quot;:&quot;ec9ef08&quot;},{&quot;slide_title&quot;:&quot;Le Nuku Hiva&quot;,&quot;_id&quot;:&quot;10da59f&quot;}],&quot;slides_to_show&quot;:&quot;6&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;4&quot;,&quot;slides_to_show_mobile&quot;:&quot;2&quot;,&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:16,&quot;sizes&quot;:[]},&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"polite\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4bfe9c66 e-flex e-con-boxed e-con e-child\" data-id=\"4bfe9c66\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-77a65310 e-con e-atomic-element e-flexbox-base e-77a65310-309bf03 \" data-id=\"77a65310\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"77a65310\" data-e-type=\"e-flexbox\" data-id=\"77a65310\">\n    \t\t\t<img decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"1ba2a6e2\" data-e-type=\"widget\" data-id=\"1ba2a6e2\" id=\"6312\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-06.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-06.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-06-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-06-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-06-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-06-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2ba25ccc e-flex e-con-boxed e-con e-child\" data-id=\"2ba25ccc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-33cbf588 e-con e-atomic-element e-flexbox-base e-33cbf588-e16e9ad \" data-id=\"33cbf588\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"33cbf588\" data-e-type=\"e-flexbox\" data-id=\"33cbf588\">\n    \t\t\t<img decoding=\"async\" class=\"e-image-base e-3e33ea6d-ea5d8f8\" data-interaction-id=\"3e33ea6d\" data-e-type=\"widget\" data-id=\"3e33ea6d\" id=\"6316\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-07.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-07.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-07-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-07-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-07-15x12.webp 15w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2e91c977 e-flex e-con-boxed e-con e-child\" data-id=\"2e91c977\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6bb858b3 e-con e-atomic-element e-flexbox-base e-6bb858b3-43865b5 \" data-id=\"6bb858b3\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6bb858b3\" data-e-type=\"e-flexbox\" data-id=\"6bb858b3\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"34bfbf24\" data-e-type=\"widget\" data-id=\"34bfbf24\" id=\"6313\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-08.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-08.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-08-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-08-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-08-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-08-12x12.webp 12w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5fc3f4a9 e-flex e-con-boxed e-con e-child\" data-id=\"5fc3f4a9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5755fe6f e-con e-atomic-element e-flexbox-base e-5755fe6f-907c7a7 \" data-id=\"5755fe6f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5755fe6f\" data-e-type=\"e-flexbox\" data-id=\"5755fe6f\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"7a21f47b\" data-e-type=\"widget\" data-id=\"7a21f47b\" id=\"6314\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-09.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-09.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-09-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-09-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-09-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-09-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1dfd26dc e-con-full e-flex e-con e-child\" data-id=\"1dfd26dc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-500fab1e e-con e-atomic-element e-flexbox-base e-500fab1e-9faeb99 \" data-id=\"500fab1e\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"500fab1e\" data-e-type=\"e-flexbox\" data-id=\"500fab1e\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"542333ab\" data-e-type=\"widget\" data-id=\"542333ab\" id=\"6315\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-10.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-10.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-10-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-10-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-10-15x12.webp 15w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-679fec0b e-flex e-con-boxed e-con e-child\" data-id=\"679fec0b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-40028e1e e-con e-atomic-element e-flexbox-base e-40028e1e-b553233 \" data-id=\"40028e1e\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"40028e1e\" data-e-type=\"e-flexbox\" data-id=\"40028e1e\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"53512b04\" data-e-type=\"widget\" data-id=\"53512b04\" id=\"6317\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-11.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-11.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-11-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-11-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-11-15x12.webp 15w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"7\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d85b580 e-flex e-con-boxed e-con e-child\" data-id=\"d85b580\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-743a6389 e-con e-atomic-element e-flexbox-base e-743a6389-7bff02c \" data-id=\"743a6389\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"743a6389\" data-e-type=\"e-flexbox\" data-id=\"743a6389\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"6fd1e85c\" data-e-type=\"widget\" data-id=\"6fd1e85c\" id=\"6307\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-01.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-01.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-01-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-01-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-01-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-01-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"8\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6f9a32d0 e-flex e-con-boxed e-con e-child\" data-id=\"6f9a32d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-f9e7a5b e-con e-atomic-element e-flexbox-base e-f9e7a5b-63ec1cb \" data-id=\"f9e7a5b\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"f9e7a5b\" data-e-type=\"e-flexbox\" data-id=\"f9e7a5b\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"4df04a40\" data-e-type=\"widget\" data-id=\"4df04a40\" id=\"6308\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-02.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-02.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-02-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-02-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-02-15x12.webp 15w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"9\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-660024ba e-flex e-con-boxed e-con e-child\" data-id=\"660024ba\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4b098004 e-con e-atomic-element e-flexbox-base e-4b098004-3d80c1a \" data-id=\"4b098004\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4b098004\" data-e-type=\"e-flexbox\" data-id=\"4b098004\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"585c90ca\" data-e-type=\"widget\" data-id=\"585c90ca\" id=\"6309\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-03.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-03.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-03-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-03-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-03-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-03-12x12.webp 12w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"10\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-62b21067 e-con-full e-flex e-con e-child\" data-id=\"62b21067\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4129006f e-con e-atomic-element e-flexbox-base e-4129006f-21c2d76 \" data-id=\"4129006f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4129006f\" data-e-type=\"e-flexbox\" data-id=\"4129006f\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"63d768a\" data-e-type=\"widget\" data-id=\"63d768a\" id=\"6310\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-04.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-04.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-04-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-04-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-04-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-04-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"11\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 sur 11\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3ba8a79 e-con-full e-flex e-con e-child\" data-id=\"3ba8a79\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c2877d8 e-con e-atomic-element e-flexbox-base e-c2877d8-2dd3284 \" data-id=\"c2877d8\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c2877d8\" data-e-type=\"e-flexbox\" data-id=\"c2877d8\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"36acc05\" data-e-type=\"widget\" data-id=\"36acc05\" id=\"6311\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-05.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-05.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-05-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-05-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-05-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-BOB-05-12x12.webp 12w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Pr\u00e9c\u00e9dent\">\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Suivant\">\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6c760dbf e-con e-atomic-element e-flexbox-base e-6c760dbf-f294646 \" data-id=\"6c760dbf\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6c760dbf\" data-e-type=\"e-flexbox\" data-id=\"6c760dbf\">\n    <div class=\"elementor-element elementor-element-68f1a2ce e-con e-atomic-element e-flexbox-base e-68f1a2ce-cd77300 \" data-id=\"68f1a2ce\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"68f1a2ce\" data-e-type=\"e-flexbox\" data-id=\"68f1a2ce\">\n    \t\t\t<p class=\"e-1fc2c13d-d348d00 body-text-small e-paragraph-base\" data-interaction-id=\"1fc2c13d\" data-e-type=\"widget\" data-id=\"1fc2c13d\">A Relais &amp; Ch\u00e2teaux house conceived as an open-air gallery, the resort brings together works by local artists that converse with the architecture, natural materials and lush landscape.<\/p>\n\t\t\t\t\t<p class=\"e-5b3045e-39212a9 body-text-small e-paragraph-base\" data-interaction-id=\"5b3045e\" data-e-type=\"widget\" data-id=\"5b3045e\">The experience extends through the flavours, music and dance of Polynesia \u2014 an invitation into a living culture, deeply rooted in the islands.<\/p>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-2a8d7a9d e-con e-atomic-element e-flexbox-base e-2a8d7a9d-93990aa \" data-id=\"2a8d7a9d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2a8d7a9d\" data-e-type=\"e-flexbox\" data-id=\"2a8d7a9d\">\n    \t\t<div class=\"elementor-element elementor-element-310488a5 elementor-widget elementor-widget-button\" data-id=\"310488a5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.leborabora.com\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Visit the website<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<h2 data-interaction-id=\"104cfaa7\" class=\"e-104cfaa7-ac9700d button-secondary underline-centered e-heading-base\" data-e-type=\"widget\" data-id=\"104cfaa7\"><a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-tikehau\/\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tDiscover the program\n\t<\/a><\/h2>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-32953e8 e-con e-atomic-element e-flexbox-base e-32953e8-b1b9b3a \" data-id=\"32953e8\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"32953e8\" data-e-type=\"e-flexbox\" data-id=\"32953e8\">\n    <div class=\"elementor-element elementor-element-26483305 e-con e-atomic-element e-flexbox-base e-26483305-f4fd9ac \" data-id=\"26483305\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"26483305\" data-e-type=\"e-flexbox\" data-id=\"26483305\">\n    \t\t\t\n<hr class=\"e-5df4ec56-8d3ff93 e-divider-base\" data-interaction-id=\"5df4ec56\"  data-e-type=\"widget\" data-id=\"5df4ec56\" \/>\n\t\t\t\t<div class=\"elementor-element elementor-element-31b87ef2 elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"31b87ef2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Calque_3\" data-name=\"Calque 3\" viewBox=\"0 0 170.33 169.39\"><defs><style>      .cls-1 {        fill: #fff;      }    <\/style><\/defs><path class=\"cls-1\" d=\"M143.01,118.85c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65ZM126.31,109.21c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65Z\"><\/path><path class=\"cls-1\" d=\"M55.04,67.74c-.13,0-.36.25-.48.18-1.75-1.01-1.64-1.2-3.39-2.21s-1.9-.76-3.65-1.77c-.37-.21-.61-1.06-.4-1.43.21-.37.85-.2,1.21.01,1.75,1.01,1.98.62,3.73,1.63s1.5,1.45,3.25,2.46c.37.21.72.55.51.91-.14.25-.51.2-.78.2ZM43.48,61.07c-.13,0-.36.25-.48.18-2.18-1.26-2.07-1.44-4.25-2.7s-2.33-1.01-4.51-2.27-2.19-1.24-4.38-2.51-1.95-1.66-4.14-2.92c-.37-.21-.82-.67-.61-1.04.21-.37.81-.16,1.17.05,2.18,1.26,2.36.95,4.54,2.21s2.22,1.19,4.41,2.45,1.93,1.7,4.11,2.96,2.42.86,4.6,2.12c.37.21.55.91.34,1.28-.14.25-.54.19-.81.19Z\"><\/path><path class=\"cls-1\" d=\"M112.38,70.39c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,1.86-1.07,1.97-.89,3.83-1.96s1.73-1.29,3.6-2.37,1.92-.97,3.78-2.04,1.89-1.03,3.76-2.1,1.82-1.15,3.69-2.23c.39-.23.79.09,1.02.48.23.39.29.88-.1,1.11-1.86,1.07-1.81,1.17-3.67,2.24s-2,.84-3.86,1.91-1.82,1.15-3.68,2.22-1.81,1.17-3.68,2.25-1.99.85-3.86,1.93c-.13.08-.2.48-.34.48ZM135.86,56.83c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,2.35-1.36,2.46-1.17,4.81-2.53s2.22-1.57,4.57-2.93c.39-.23,1.07.04,1.29.44.23.39.03.96-.36,1.18-2.35,1.36-2.31,1.43-4.66,2.78s-2.49,1.11-4.84,2.46c-.13.08-.18.52-.32.52Z\"><\/path><path class=\"cls-1\" d=\"M26.02,120.28c-.27,0-.75-.34-.89-.59-.21-.37.1-1.05.46-1.26,1.64-.95,1.75-.76,3.4-1.71s1.72-.82,3.37-1.77,1.65-.94,3.3-1.89c.36-.21.73-.36.94,0,.21.37-.04.69-.41.91-1.64.95-1.61,1.01-3.25,1.96s-1.52,1.17-3.17,2.12-1.75.78-3.39,1.73c-.12.07-.22.5-.35.5ZM40.45,111.95c-.27,0-.75-.34-.9-.59-.21-.37.1-1.05.46-1.26,1.84-1.06,1.95-.87,3.78-1.93s1.91-.93,3.75-1.99,1.84-1.05,3.68-2.11,1.67-1.35,3.51-2.41,1.95-.86,3.79-1.93c.37-.21.64-.19.85.18.21.37.26.89-.11,1.1-1.84,1.06-1.93.89-3.77,1.95s-1.67,1.34-3.51,2.4-1.95.86-3.79,1.92-1.77,1.18-3.61,2.25-1.95.88-3.78,1.94c-.12.07-.23.48-.36.48Z\"><\/path><path class=\"cls-1\" d=\"M103.47,54.82c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.01-1.75,1.18-1.65,2.2-3.41s1.08-1.72,2.09-3.47.75-1.91,1.76-3.66c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.01,1.75-1.04,1.74-2.05,3.49s-1.14,1.68-2.15,3.44-.77,1.89-1.79,3.65c-.15.26-.53.49-.81.49ZM112.35,39.44c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.28-2.22,1.46-2.12,2.74-4.35s1.35-2.19,2.64-4.41,1.02-2.38,2.3-4.61c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.28,2.22-1.31,2.21-2.6,4.43s-1.41,2.15-2.7,4.38-1.04,2.36-2.33,4.59c-.15.26-.53.49-.81.49Z\"><\/path><path class=\"cls-1\" d=\"M51.22,144.97c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.79,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22ZM60.86,128.27c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.8,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22Z\"><\/path><path class=\"cls-1\" d=\"M120.06,145.04c-.27,0-.55-.02-.69-.27-1.06-1.83-1.17-1.77-2.23-3.61s-.64-2.08-1.69-3.92-1.18-1.77-2.24-3.6-1.09-1.82-2.15-3.66-1.13-1.8-2.19-3.64c-.21-.37-.06-.6.31-.81.37-.21.88-.37,1.1,0,1.06,1.84,1.13,1.8,2.19,3.63s.76,2.01,1.82,3.84,1.4,1.64,2.46,3.47,1.03,1.86,2.09,3.7.89,1.94,1.96,3.77c.21.37.03.9-.33,1.11-.12.07-.27-.02-.4-.02ZM106.83,122.12c-.27,0-.55-.02-.69-.27-.95-1.64-1.06-1.58-2.01-3.22s-.52-1.89-1.47-3.54-1.07-1.58-2.02-3.22c-.21-.37-.18-.59.19-.8.36-.21.67-.19.88.18.95,1.64.84,1.71,1.79,3.35s1.3,1.44,2.25,3.09,1.02,1.61,1.97,3.25c.21.37-.18.89-.55,1.1-.12.07-.21.08-.34.08Z\"><\/path><path class=\"cls-1\" d=\"M71.87,61.81c-.28,0-.28-.39-.44-.65-.04-.07-.22.03-.26-.03-.23-.39-.02-.55.37-.78.39-.23.62-.32.84.07.04.07.22-.03.26.04.23.39-.05.81-.44,1.04-.13.08-.2.32-.34.32ZM68.98,56.81c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.05-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52ZM58.7,39c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.06-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52Z\"><\/path><path class=\"cls-1\" d=\"M52.62,81.71c1.28.37,1.4-.07,2.73-.15s1.31-.5,2.64-.58,1.36.34,2.69.26,1.32-.28,2.65-.35,1.34.05,2.68-.03,1.34-.06,2.67-.14,1.32-.34,2.65-.42,1.36.32,2.7.24,1.33-.19,2.67-.27c1.16-.07,2.37-.55,3.14-1.31s.89-2,.96-3.16c.08-1.33.17-1.33.25-2.66s.23-1.33.31-2.66-.14-1.34-.06-2.68.03-1.34.11-2.67.5-1.31.58-2.64.17-1.33.24-2.66-.15-1.35-.07-2.68.17-1.33.25-2.67.1-1.32-.26-2.61c-.9.09-1.49.27-2.36.42s-1.83.05-2.69.27-1.7.6-2.54.89-1.7.58-2.52.95-1.6.83-2.38,1.26-1.5.98-2.24,1.47-1.6.85-2.3,1.4-1.16,1.4-1.81,2.01-1.58.95-2.19,1.61-1.09,1.44-1.64,2.14-.78,1.63-1.27,2.38-1.31,1.29-1.74,2.07-.81,1.6-1.18,2.42-.71,1.65-1,2.5-.7,1.67-.93,2.54-.35,1.77-.51,2.65-.13,1.97-.21,2.87ZM72.96,72.08c-.96.96-2.26.96-3.22,0-.96-.96-1.26-2.56-.3-3.53.96-.96,2.57-.66,3.53.3.96.96.96,2.26,0,3.23Z\"><\/path><path class=\"cls-1\" d=\"M81.06,93.7c-.07-1.16-.81-2.02-1.58-2.79s-1.64-1.25-2.8-1.32c-1.33-.08-1.34-.05-2.67-.13s-1.32-.34-2.65-.42-1.35.21-2.68.13-1.32-.28-2.65-.36-1.34-.03-2.67-.1-1.31-.47-2.65-.55-1.35.17-2.69.09-1.35.13-2.69.05-1.37-.67-2.66-.3c.09.9.02,1.8.18,2.67s.61,1.71.84,2.56.48,1.72.78,2.56.35,1.79.72,2.61.87,1.58,1.3,2.36.88,1.57,1.38,2.31.92,1.57,1.47,2.27,1.38,1.18,1.99,1.84,1.25,1.27,1.9,1.88,1.13,1.45,1.83,2,1.43,1.1,2.18,1.6,1.57.89,2.36,1.32,1.66.69,2.48,1.06,1.61.81,2.45,1.11,1.81.18,2.68.41,1.71.42,2.6.57,1.76.52,2.66.6c.37-1.28-.4-1.33-.48-2.66s.41-1.36.33-2.7-.1-1.33-.18-2.66-.03-1.34-.11-2.67-.16-1.33-.24-2.66-.17-1.33-.25-2.66-.25-1.33-.33-2.66.07-1.35,0-2.68-.06-1.34-.14-2.68ZM73.05,100.74c-.96.96-2.66,1.19-3.62.23-.96-.96-.92-2.84.04-3.8.96-.96,2.82-.99,3.78-.02.96.96.76,2.63-.2,3.6Z\"><\/path><path class=\"cls-1\" d=\"M94.6,89.68c-1.16.07-2.22.28-2.99,1.05s-1.17,1.82-1.24,2.97c-.08,1.33-.18,1.33-.26,2.66s-.11,1.33-.19,2.67-.25,1.32-.33,2.65-.04,1.34-.12,2.67.13,1.35.05,2.68.15,1.35.07,2.68-.36,1.32-.44,2.65.19,1.35.12,2.69-.92,1.41-.55,2.7c.9-.09,1.91-.32,2.79-.47s1.77-.29,2.63-.52,1.64-.72,2.48-1.02,1.85-.19,2.67-.55,1.43-1.15,2.21-1.58,1.62-.76,2.36-1.25,1.34-1.18,2.04-1.73,1.52-.96,2.17-1.57,1.29-1.23,1.9-1.89,1.22-1.31,1.77-2.01.96-1.5,1.46-2.25,1.25-1.34,1.68-2.12.5-1.75.87-2.56,1.05-1.5,1.35-2.35.44-1.75.67-2.61.42-1.74.58-2.63.25-2.06.34-2.96c-1.28-.37-1.4.62-2.73.7s-1.36-.28-2.69-.2-1.33.17-2.66.25-1.33.09-2.67.17-1.32.26-2.66.34-1.34-.09-2.68-.01-1.33.2-2.66.28-1.38-.37-2.71-.2-1.29.58-2.63.65ZM101.87,100.99c-.96.96-2.73.76-3.69-.2-.96-.96-1.03-2.59-.07-3.55.96-.96,2.58-.89,3.55.07.96.96,1.17,2.72.21,3.68Z\"><\/path><path class=\"cls-1\" d=\"M88.78,51.76c-.37,1.28-.06,1.37.02,2.7s.11,1.33.19,2.67.05,1.33.13,2.66.12,1.33.2,2.66.51,1.31.59,2.64-.18,1.35-.11,2.69.36,1.32.44,2.65-.46,1.37-.38,2.71.24,1.33.32,2.67c.07,1.16.51,2.35,1.28,3.12s1.98.84,3.14.91c1.33.08,1.33.21,2.66.29s1.33.08,2.67.16,1.31.41,2.64.48,1.35-.26,2.69-.18,1.32.28,2.66.35,1.32.28,2.66.36,1.35-.14,2.68-.06,1.34-.05,2.68.03,1.41.71,2.7.35c-.09-.9-.49-1.84-.65-2.71s-.31-1.75-.53-2.61-.06-1.86-.35-2.7-.91-1.57-1.27-2.39-.75-1.62-1.18-2.4-1.01-1.47-1.51-2.21-.68-1.72-1.23-2.42-1.26-1.3-1.86-1.95-1.39-1.13-2.05-1.74-1.21-1.33-1.92-1.88-1.46-1.03-2.21-1.52-1.5-.98-2.28-1.41-1.64-.71-2.46-1.08-1.63-.7-2.48-.99-1.69-.56-2.55-.79-1.72-.46-2.6-.62-1.83-.37-2.72-.46ZM101.61,72.15c-.96.96-2.31.87-3.27-.09s-.98-2.24-.02-3.2c.96-.96,2.24-.94,3.2.02.96.96,1.05,2.31.09,3.28Z\"><\/path><path class=\"cls-1\" d=\"M169.88,83.05c-7.52-.44-7.53-.29-15.05-.73-7.52-.44-7.53-.23-15.05-.67-7.52-.44-7.55.02-15.07-.42-7.52-.44-7.52-.53-15.04-.98-7.52-.44-7.48-1.17-15-1.61-1.87-.11-3.79-.99-3.9-2.86-.44-7.52-.54-7.51-.98-15.03-.44-7.52.45-7.57,0-15.09-.44-7.52-1.07-7.48-1.51-15.01-.44-7.52-.12-7.54-.57-15.06-.44-7.52-1.1-7.48-1.55-15.01C86.13,0,86.22,0,85.64,0s-1.01-.03-1.04.55c-.44,7.52-.09,7.54-.53,15.06-.44,7.52-1.4,7.46-1.85,14.98-.44,7.52.05,7.55-.4,15.07-.44,7.52-.79,7.5-1.23,15.02s.32,7.57-.12,15.09c-.11,1.87-1.95,3.34-3.83,3.46-7.52.44-7.51.65-15.02,1.09-7.52.44-7.53.23-15.05.67-7.52.44-7.5.87-15.02,1.32-7.52.44-7.55.03-15.07.47-7.52.44-7.52.5-15.04.95-.58.03-1.44.44-1.44,1.03s.88.55,1.46.58c7.52.44,7.48,1.14,15,1.59,7.52.44,7.53.28,15.05.72,7.52.44,7.52.5,15.04.94,7.52.44,7.54.15,15.06.59,7.52.44,7.55-.03,15.07.42,1.87.11,3.17,2.29,3.28,4.17.44,7.52-.08,7.55.36,15.07.44,7.52,1.27,7.47,1.71,14.99.44,7.52-.25,7.56.2,15.08.44,7.52.67,7.51,1.11,15.03s.99,7.49,1.44,15.01c.03.58.28.41.86.41s1.17.19,1.21-.39c.44-7.52.15-7.54.59-15.05.44-7.52.76-7.5,1.2-15.02.44-7.52.66-7.51,1.1-15.03.44-7.52.07-7.54.51-15.07.44-7.52.71-7.51,1.15-15.03.11-1.87,1.34-3.7,3.21-3.81,7.52-.44,7.5-.78,15.02-1.22,7.52-.44,7.56.23,15.08-.22,7.52-.44,7.5-.88,15.02-1.32,7.52-.44,7.58.53,15.1.09,7.52-.44,7.51-.57,15.04-1.01.58-.03.44-.94.44-1.52s.15-1.67-.43-1.7ZM158.32,84.76l-7.25.51h0c-3.33.19-3.43,0-6.9.2-3.55.21-3.55.23-7.09.44-3.54.21-3.53.46-7.07.67-3.55.21-3.55.09-7.1.3-3.55.21-3.56.01-7.1.22-3.55.21-3.55.1-7.1.31-3.55.21-3.53.51-7.07.72-3.54.21-3.56-.07-7.1.14-2.76.16-5.18,2.61-5.35,5.37-.21,3.55.28,3.58.07,7.13-.21,3.55-.69,3.52-.9,7.07-.21,3.55-.11,3.55-.32,7.1-.21,3.55-.27,3.54-.48,7.09-.21,3.55.05,3.56-.16,7.11-.21,3.55-.18,3.55-.39,7.09-.21,3.55-.11,3.55-.32,7.1-.2,3.41-.38,3.54-.58,6.68h0s-.43,7.22-.43,7.22c0,0,0,0-.01,0-.01,0-.02,0-.04,0l-.29-5.21c.11-.53.18-1.08.15-1.64-.21-3.55-.51-3.53-.72-7.08-.21-3.55-.17-3.55-.38-7.1-.21-3.55-.37-3.54-.58-7.08-.21-3.55.24-3.57.03-7.12-.21-3.55-.36-3.54-.57-7.08s-.51-3.53-.72-7.07c-.21-3.55.09-3.56-.12-7.11-.21-3.54-.6-3.52-.81-7.07-.16-2.76-2.08-5.13-4.84-5.29-3.55-.21-3.57.07-7.12-.14s-3.55-.14-7.1-.35c-3.55-.21-3.53-.46-7.08-.67-3.54-.21-3.54-.28-7.09-.49-3.55-.21-3.57.11-7.11-.1q-3.55-.21-7.09-.41c-3.55-.21-3.54-.36-7.08-.57-3.55-.21-3.55-.1-7.1-.31-.03,0-.07,0-.1,0l-6.96-.39c0-.07-.01-.12-.01-.19,0,0,0,0,0,0l6.76-.4c.11,0,.23,0,.34,0,3.55-.21,3.55-.19,7.1-.4,3.55-.21,3.54-.38,7.09-.59,3.54-.21,3.56.07,7.11-.14,3.55-.21,3.54-.34,7.09-.55,3.55-.21,3.54-.34,7.08-.55,3.55-.21,3.56.11,7.11-.1,3.55-.21,3.52-.67,7.06-.88,3.54-.21,3.56,0,7.1-.22,2.76-.16,5.16-2.3,5.33-5.06.21-3.55-.1-3.57.11-7.12.21-3.55.55-3.53.76-7.08.21-3.55-.05-3.56.16-7.11.21-3.55.02-3.56.23-7.1.21-3.55.37-3.54.58-7.08.21-3.55.03-3.56.24-7.1q.21-3.55.43-7.09c.21-3.55.59-3.52.8-7.07.03-.46,0-.92-.08-1.38l.34-5.81s0,0,0,0c0,0,0,0,0,0l.31,5.48c-.12.57-.2,1.15-.16,1.73.21,3.55.34,3.54.55,7.09.21,3.55.53,3.53.74,7.08.21,3.55.27,3.54.48,7.09.21,3.55-.02,3.56.19,7.11.21,3.55-.02,3.56.18,7.11.21,3.55.25,3.54.46,7.09.21,3.55.36,3.54.56,7.08.21,3.54.25,3.54.46,7.09.16,2.76,2.35,4.99,5.11,5.15,3.55.21,3.55.16,7.1.37,3.55.21,3.55.28,7.1.49,3.55.21,3.55.17,7.1.38,3.54.21,3.54.22,7.09.43,3.55.21,3.54.39,7.08.6,3.55.21,3.55.17,7.09.37,3.55.21,3.54.29,7.09.5,3.35.2,3.55,0,6.55.15l7.58.45s0,0,0,0c0,0,0,0,0,0Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n<hr class=\"e-6532b7fd-57dd8b8 e-divider-base\" data-interaction-id=\"6532b7fd\"  data-e-type=\"widget\" data-id=\"6532b7fd\" \/>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-60e50b7e e-con e-atomic-element e-flexbox-base e-60e50b7e-dc1c346 section \" data-id=\"60e50b7e\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"60e50b7e\" id=\"collection\" data-e-type=\"e-flexbox\" data-id=\"60e50b7e\">\n    <div class=\"elementor-element elementor-element-63255f60 e-flex e-con-boxed e-con e-parent\" data-id=\"63255f60\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-341c56d4 e-con e-atomic-element e-flexbox-base e-341c56d4-9cf8525 \" data-id=\"341c56d4\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"341c56d4\" data-e-type=\"e-flexbox\" data-id=\"341c56d4\">\n    <div class=\"elementor-element elementor-element-278dc50d e-con e-atomic-element e-flexbox-base e-278dc50d-22113ac \" data-id=\"278dc50d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"278dc50d\" data-e-type=\"e-flexbox\" data-id=\"278dc50d\">\n    \t\t\t<h3 data-interaction-id=\"5596d092\" class=\"e-5596d092-14ca9f6 h3 e-heading-base\" data-e-type=\"widget\" data-id=\"5596d092\" >Experience the islands of Tahiti for the Festive Season<\/h3>\n\t\t<div class=\"elementor-element elementor-element-74ee0752 e-con e-atomic-element e-flexbox-base e-74ee0752-e2fb39e \" data-id=\"74ee0752\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"74ee0752\" data-e-type=\"e-flexbox\" data-id=\"74ee0752\">\n    \t\t\t<p class=\"e-3ebee567-bb02be3 body-text-small e-paragraph-base\" data-interaction-id=\"3ebee567\" data-e-type=\"widget\" data-id=\"3ebee567\">From the turquoise stillness of Bora Bora\u2019s lagoon to Taha\u2019a\u2019s vanilla-scented valleys and the pale sands of Tikehau, the festive season unfolds across French Polynesia. A time for gathering, for island ritual, for evenings that stretch beneath an open sky.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-2081d27 elementor-widget__width-initial pagination-light elementor-pagination-position-inside elementor-pagination-type-bullets elementor-widget elementor-widget-n-carousel\" data-id=\"2081d27\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;TAH&quot;,&quot;_id&quot;:&quot;6527683&quot;},{&quot;slide_title&quot;:&quot;TKH&quot;,&quot;_id&quot;:&quot;26fc36d&quot;}],&quot;slides_to_show&quot;:&quot;1&quot;,&quot;offset_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:140,&quot;sizes&quot;:[]},&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:32,&quot;sizes&quot;:[]},&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:24,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:24,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;offset_sides&quot;:&quot;both&quot;,&quot;offset_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;offset_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;pagination&quot;:&quot;bullets&quot;}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 sur 2\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-101f2ab3 e-flex e-con-boxed e-con e-child\" data-id=\"101f2ab3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-fd24733 e-con e-atomic-element e-flexbox-base e-fd24733-fc188bb festive-season-bg \" data-id=\"fd24733\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"fd24733\" data-e-type=\"e-flexbox\" data-id=\"fd24733\">\n    \t\t\t<a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-tahaa\/\" target=\"_blank\" class=\"e-image-link-base\" data-interaction-id=\"4fdcd88c\"\n\t><img loading=\"lazy\" decoding=\"async\" class=\"e-image-base e-4fdcd88c-a6071c8\" data-e-type=\"widget\" data-id=\"4fdcd88c\" id=\"3682\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah.webp\" width=\"1920\" height=\"1080\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-300x169.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-1024x576.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-768x432.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-1536x864.webp 1536w\" alt=\"\"\/>\t<\/a>\t\t<div class=\"elementor-element elementor-element-2e24f77d e-con e-atomic-element e-flexbox-base e-2e24f77d-f1db0e9 \" data-id=\"2e24f77d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2e24f77d\" data-e-type=\"e-flexbox\" data-id=\"2e24f77d\">\n    <div class=\"elementor-element elementor-element-5900325c e-con e-atomic-element e-flexbox-base e-5900325c-7811479 \" data-id=\"5900325c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5900325c\" data-e-type=\"e-flexbox\" data-id=\"5900325c\">\n    \t\t\t<h3 data-interaction-id=\"5f8dd2fd\" class=\"e-5f8dd2fd-8c531bd eyebrow white-text e-heading-base\" data-e-type=\"widget\" data-id=\"5f8dd2fd\" >Society Islands<\/h3>\n\t\t\t\t\t<h3 data-interaction-id=\"5d186a55\" class=\"e-5d186a55-72ac18c h4 white-text e-heading-base\" data-e-type=\"widget\" data-id=\"5d186a55\" >Le Taha'a<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-38a463a5 e-con e-atomic-element e-flexbox-base e-38a463a5-70f58ea \" data-id=\"38a463a5\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"38a463a5\" data-e-type=\"e-flexbox\" data-id=\"38a463a5\">\n    \t\t\t<p class=\"e-6590daa1-f7b8f40 body-text-small white-text e-paragraph-base\" data-interaction-id=\"6590daa1\" data-e-type=\"widget\" data-id=\"6590daa1\">The night unfolds slowly: Polynesian dance, a table set for celebration, music drifting across the lagoon, and fireworks beneath the stars.<\/p>\n\t\t<div class=\"elementor-element elementor-element-7a053b3c e-con e-atomic-element e-flexbox-base e-7a053b3c-15007cd \" data-id=\"7a053b3c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7a053b3c\" data-e-type=\"e-flexbox\" data-id=\"7a053b3c\">\n    \t\t<div class=\"elementor-element elementor-element-e06fd9e elementor-widget elementor-widget-button\" data-id=\"e06fd9e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/pearlresorts.com\/festive-season-le-tahaa\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover the program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 sur 2\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-43170b9e e-flex e-con-boxed e-con e-child\" data-id=\"43170b9e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-16b8ee14 e-con e-atomic-element e-flexbox-base e-16b8ee14-d1aaac7 festive-season-bg \" data-id=\"16b8ee14\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"16b8ee14\" data-e-type=\"e-flexbox\" data-id=\"16b8ee14\">\n    \t\t\t<a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-tikehau\/\" target=\"_blank\" class=\"e-image-link-base\" data-interaction-id=\"65c050dc\"\n\t><img loading=\"lazy\" decoding=\"async\" class=\"e-image-base e-65c050dc-bb69abf\" data-e-type=\"widget\" data-id=\"65c050dc\" id=\"3680\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh.webp\" width=\"1920\" height=\"1080\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-300x169.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-1024x576.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-768x432.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-1536x864.webp 1536w\" alt=\"\"\/>\t<\/a>\t\t<div class=\"elementor-element elementor-element-18c38df e-con e-atomic-element e-flexbox-base e-18c38df-1b4c268 \" data-id=\"18c38df\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"18c38df\" data-e-type=\"e-flexbox\" data-id=\"18c38df\">\n    <div class=\"elementor-element elementor-element-5c103d65 e-con e-atomic-element e-flexbox-base e-5c103d65-7c8bec3 \" data-id=\"5c103d65\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5c103d65\" data-e-type=\"e-flexbox\" data-id=\"5c103d65\">\n    \t\t\t<h3 data-interaction-id=\"772a9c78\" class=\"e-772a9c78-ddec70f eyebrow white-text e-heading-base\" data-e-type=\"widget\" data-id=\"772a9c78\" >Tuamotus<\/h3>\n\t\t\t\t\t<h3 data-interaction-id=\"6cd9bfd7\" class=\"e-6cd9bfd7-1930bb9 h4 white-text e-heading-base\" data-e-type=\"widget\" data-id=\"6cd9bfd7\" >Le Tikehau<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-3cf2f8a7 e-con e-atomic-element e-flexbox-base e-3cf2f8a7-f192bab \" data-id=\"3cf2f8a7\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3cf2f8a7\" data-e-type=\"e-flexbox\" data-id=\"3cf2f8a7\">\n    \t\t\t<p class=\"e-63606d3f-6018ff3 body-text-small white-text e-paragraph-base\" data-interaction-id=\"63606d3f\" data-e-type=\"widget\" data-id=\"63606d3f\">Beneath Tikehau\u2019s stars, a table is set for the season \u2014 a quiet celebration shaped by the stillness of the Tuamotus and the flavours of the islands.<\/p>\n\t\t<div class=\"elementor-element elementor-element-13a6e2c9 e-con e-atomic-element e-flexbox-base e-13a6e2c9-d7a9212 \" data-id=\"13a6e2c9\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"13a6e2c9\" data-e-type=\"e-flexbox\" data-id=\"13a6e2c9\">\n    \t\t<div class=\"elementor-element elementor-element-4710daee elementor-widget elementor-widget-button\" data-id=\"4710daee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/pearlresorts.com\/festive-season-le-tikehau\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover the program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-5dc2aa7a e-con e-atomic-element e-flexbox-base e-5dc2aa7a-9dfc44d section festive-season-bg \" data-id=\"5dc2aa7a\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5dc2aa7a\" id=\"conditions\" data-e-type=\"e-flexbox\" data-id=\"5dc2aa7a\">\n    <div class=\"elementor-element elementor-element-219fecb8 e-con e-atomic-element e-flexbox-base e-219fecb8-2597c87 \" data-id=\"219fecb8\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"219fecb8\" id=\"conditions\" data-e-type=\"e-flexbox\" data-id=\"219fecb8\">\n    \t\t\t<h3 data-interaction-id=\"20e86f33\" class=\"e-20e86f33-b02f325 h3 e-heading-base\" data-e-type=\"widget\" data-id=\"20e86f33\" >Frequently asked questions<\/h3>\n\t\t\t\t<div class=\"elementor-element elementor-element-7658bf1 elementor-widget__width-initial elementor-widget elementor-widget-n-accordion\" data-id=\"7658bf1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:200,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;none&quot;,&quot;default_state&quot;:&quot;expanded&quot;,&quot;max_items_expended&quot;:&quot;one&quot;}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1240\" class=\"e-n-accordion-item\" open>\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"true\" aria-controls=\"e-n-accordion-item-1240\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Rate Policies for the Festive Season <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1240\" class=\"elementor-element elementor-element-b21ee52 e-con-full e-flex e-con e-child\" data-id=\"b21ee52\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-3a54ef0a-ce038e7 body-text-small e-paragraph-base\" data-interaction-id=\"3a54ef0a\" data-e-type=\"widget\" data-id=\"3a54ef0a\">(Excluding Salon du Tourisme rates and conditions)<\/p>\n\t\t\t\t\t<p class=\"e-60dbe8c7-014e6e0 body-text-small e-paragraph-base\" data-interaction-id=\"60dbe8c7\" data-e-type=\"widget\" data-id=\"60dbe8c7\">If you are staying during the festive season,&nbsp;please note that both the Christmas Eve Dinner&nbsp;and the New Year\u2019s Eve Dinner are mandatory for all guests. These dinners must be prepaid at the following rates:<\/p>\n\t\t\t\t\t<p class=\"e-43a4ca32-0759e85 body-text-small e-paragraph-base\" data-interaction-id=\"43a4ca32\" data-e-type=\"widget\" data-id=\"43a4ca32\">Christmas Eve Dinner on December 24, 2026,&nbsp;at the Otemanu Restaurant<br>- Adult (13 years and above): 28,500 XPF including tax<br>- Child (3-12 years): 14,250&nbsp;XPF including tax<\/p>\n\t\t\t\t\t<p class=\"e-67714b8a-197a819 body-text-small e-paragraph-base\" data-interaction-id=\"67714b8a\" data-e-type=\"widget\" data-id=\"67714b8a\">Christmas Eve dinner includes: \u00bd bottle of champagne for 2, buffet dinner with musical entertainment, chocolate box.<\/p>\n\t\t\t\t\t<p class=\"e-c26642a-c343da2 body-text-small e-paragraph-base\" data-interaction-id=\"c26642a\" data-e-type=\"widget\" data-id=\"c26642a\">New Years&nbsp;Eve Dinner on December&nbsp;31, 2026,&nbsp;at the Otemanu Restaurant<br>- Adult (13 years and above): 44,500 XPF including tax<br>- Child (3-12 years): 22,250&nbsp;XPF including tax<\/p>\n\t\t\t\t\t<p class=\"e-1ef342cb-ef04c07 body-text-small e-paragraph-base\" data-interaction-id=\"1ef342cb\" data-e-type=\"widget\" data-id=\"1ef342cb\">New Year\u2019s Eve dinner includes: Welcome cocktail, \u00bd bottle of champagne for 2, buffet dinner with musical entertainment, chocolate box.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1241\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1241\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Getting to the property <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1241\" class=\"elementor-element elementor-element-4817835e e-con-full e-flex e-con e-child\" data-id=\"4817835e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-78a63ff5-b1b2e93 body-text-small e-paragraph-base\" data-interaction-id=\"78a63ff5\" data-e-type=\"widget\" data-id=\"78a63ff5\">The hotel is located on Motu Tevairoa, a private islet approximately 20 minutes by boat from the airport of Bora Bora.&nbsp;From Tahiti, there are daily flights to the island of Bora Bora with the domestic carriers&nbsp;Air Tahiti&nbsp;and&nbsp;Air Moana.&nbsp;Airport code: BOB.<\/p>\n\t\t\t\t\t<p class=\"e-34ad798c-3a45c53 body-text-small e-paragraph-base\" data-interaction-id=\"34ad798c\" data-e-type=\"widget\" data-id=\"34ad798c\">In order to organize your boat transfers between the airport and the resort, please send us your arrival and departure domestic flight details (flight number and time).<\/p>\n\t\t\t\t\t<p class=\"e-2dcc8f5c-c7ff507 body-text-small e-paragraph-base\" data-interaction-id=\"2dcc8f5c\" data-e-type=\"widget\" data-id=\"2dcc8f5c\">Boat transfers are charged and payable on site:<br>- Adults:&nbsp;5,000&nbsp;XPF per adult per way,&nbsp;5%&nbsp;tax included<br>- Children (3-12 years): 3,800&nbsp;XPF per child per way,&nbsp;5%&nbsp;tax included<br>- Infants (0-2 years): Free of charge<\/p>\n\t\t\t\t\t<p class=\"e-75b02900-a588a5b body-text-small e-paragraph-base\" data-interaction-id=\"75b02900\" data-e-type=\"widget\" data-id=\"75b02900\">At your arrival at the airport, you will be greeted by our representative and escorted to the hotel's shuttle boat.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1242\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1242\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> What is included in the Room Rate <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1242\" class=\"elementor-element elementor-element-745b5301 e-con-full e-flex e-con e-child\" data-id=\"745b5301\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-1513eb27-8debce2 body-text-small e-paragraph-base\" data-interaction-id=\"1513eb27\" data-e-type=\"widget\" data-id=\"1513eb27\">All room rates include:<br>- Complimentary American breakfast included, served at the Hawaiki Nui Restaurant (room service not included)<br>- Complimentary Mini Bar (set selection of soft drinks and snacks), refilled once daily<br>- Complimentary Wi-Fi<\/p>\n\t\t\t\t\t<p class=\"e-12837d16-774632a body-text-small e-paragraph-base\" data-interaction-id=\"12837d16\" data-e-type=\"widget\" data-id=\"12837d16\"><strong><u>Check-in&nbsp;3:00 p.m. \u2502 Check-out 11:00 a.m.<\/u><\/strong><\/p>\n\t\t\t\t\t<p class=\"e-2650e2eb-d6ae860 body-text-small e-paragraph-base\" data-interaction-id=\"2650e2eb\" data-e-type=\"widget\" data-id=\"2650e2eb\">Rooms are available from&nbsp;3:00 p.m. on the day of arrival until 11:00 a.m. on the day of departure.<br>Early check-in and late check-out are subject to availability and may incur additional fees.<br>Luggage may be stored at reception if needed.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1243\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"4\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1243\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Booking Policies <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1243\" class=\"elementor-element elementor-element-263efd4a e-flex e-con-boxed e-con e-child\" data-id=\"263efd4a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<p class=\"e-f166b7b-6d19c3c body-text-small e-paragraph-base\" data-interaction-id=\"f166b7b\" data-e-type=\"widget\" data-id=\"f166b7b\"><u>Guarantee<\/u><\/p>\n\t\t\t\t\t<p class=\"e-2e2590c1-b4cf1e3 body-text-small e-paragraph-base\" data-interaction-id=\"2e2590c1\" data-e-type=\"widget\" data-id=\"2e2590c1\">A one-night deposit is required at time of booking.&nbsp;The remaining balance is payable directly at the hotel.<\/p>\n\t\t\t\t\t<p class=\"e-8ca3c1b-f5ea377 body-text-small e-paragraph-base\" data-interaction-id=\"8ca3c1b\" data-e-type=\"widget\" data-id=\"8ca3c1b\"><u>Cancellation \/ Modification Policy<\/u><\/p>\n\t\t\t\t\t<p class=\"e-4870f81d-6262664 body-text-small e-paragraph-base\" data-interaction-id=\"4870f81d\" data-e-type=\"widget\" data-id=\"4870f81d\">- Bookings cancelled up to&nbsp;15&nbsp;days prior to the scheduled arrival date at the resort: no penalty.<br>- Bookings cancelled between&nbsp;14&nbsp;and 1 day prior to the scheduled arrival date at the resort: a&nbsp;2-night cancellation fee (plus applicable taxes) will be charged.<br>- Bookings cancelled on the day of arrival or during the stay, will be charged for the full amount of the stay.<\/p>\n\t\t\t\t\t<p class=\"e-4f7589a0-20017b1 body-text-small e-paragraph-base\" data-interaction-id=\"4f7589a0\" data-e-type=\"widget\" data-id=\"4f7589a0\">The same conditions apply to shortened stays.<\/p>\n\t\t\t\t\t<p class=\"e-c1025ea-f0820e1 body-text-small e-paragraph-base\" data-interaction-id=\"c1025ea\" data-e-type=\"widget\" data-id=\"c1025ea\"><u>No shows<\/u><\/p>\n\t\t\t\t\t<p class=\"e-7e57b27e-16a22c7 body-text-small e-paragraph-base\" data-interaction-id=\"7e57b27e\" data-e-type=\"widget\" data-id=\"7e57b27e\">- The full stay, plus applicable taxes.<br>- Unused nights will not be refunded in the event of a no-show or unscheduled arrival resulting in a shorter stay than scheduled.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-3188c42e e-con e-atomic-element e-flexbox-base e-3188c42e-34f6c9a main-header festive-season-bg \" data-id=\"3188c42e\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3188c42e\" data-e-type=\"e-flexbox\" data-id=\"3188c42e\">\n    <div class=\"elementor-element elementor-element-fd7de0c e-con e-atomic-element e-flexbox-base e-fd7de0c-b958724 \" data-id=\"fd7de0c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"fd7de0c\" data-e-type=\"e-flexbox\" data-id=\"fd7de0c\">\n    \t\t<div class=\"elementor-element elementor-element-68abc1ae elementor-tablet-align-justify elementor-widget-tablet__width-inherit elementor-widget elementor-widget-button\" data-id=\"68abc1ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/bookings.leborabora.com\/en\/search-rates?hotel=62726\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Book your stay<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Festive Season &nbsp; \u3009 Le Bora Bora The program About The collection Conditions Book now About Festive Program Our collection Conditions About Festive Program Our collection Conditions Celebrate the festive season at Le Bora Bora At Le Bora Bora by Pearl Resorts, the festive season follows the rhythm of the island. Evenings gather around the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-6361","page","type-page","status-publish","hentry"],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"acf":[],"_links":{"self":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/6361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/comments?post=6361"}],"version-history":[{"count":145,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/6361\/revisions"}],"predecessor-version":[{"id":7958,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/6361\/revisions\/7958"}],"wp:attachment":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/media?parent=6361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}