{"id":8226,"date":"2023-04-22T17:02:12","date_gmt":"2023-04-22T17:02:12","guid":{"rendered":"https:\/\/bluepinewater.com\/beta\/?page_id=8226"},"modified":"2023-06-10T16:55:26","modified_gmt":"2023-06-10T16:55:26","slug":"origins","status":"publish","type":"page","link":"https:\/\/bluepinewater.com\/beta\/","title":{"rendered":"Origins"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"8226\" class=\"elementor elementor-8226\">\n\t\t\t\t\t\t\t\t\t<section class=\"awam-parallax jarallax parallax-yes elementor-section elementor-top-section elementor-element elementor-element-4ec7147f elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-awam-parallax=\"{&quot;type&quot;:&quot;scroll&quot;,&quot;speed&quot;:&quot;0.7&quot;,&quot;imgsize&quot;:&quot;cover&quot;,&quot;imgsrc&quot;:&quot;https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/banner-1-1.jpg&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&quot;,&quot;mobile&quot;:&quot;&quot;}\" data-id=\"4ec7147f\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-46933083\" data-id=\"46933083\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-3c9096a elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3c9096a\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-fe713d2\" data-id=\"fe713d2\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-15aed67 elementor-widget elementor-widget-html\" data-id=\"15aed67\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\r\n.snowflake {\r\n  position: absolute;\r\n  width: 5px;\r\n  height: 5px;\r\n  background: linear-gradient(white, white);\r\n  \/* Workaround for Chromium's selective color inversion *\/\r\n  border-radius: 50%;\r\n  filter: drop-shadow(0 0 10px white);\r\n}\r\n    <\/style>\r\n    <script>\r\n      let snowflakesCount = 300; \/\/ Snowflake count, can be overwritten by attrs\r\nlet baseCss = ``;\r\n\r\n\r\n\/\/ set global attributes\r\nif (typeof SNOWFLAKES_COUNT !== 'undefined') {\r\n  snowflakesCount = SNOWFLAKES_COUNT;\r\n}\r\nif (typeof BASE_CSS !== 'undefined') {\r\n  baseCss = BASE_CSS;\r\n}\r\n\r\nlet bodyHeightPx = null;\r\nlet pageHeightVh = null;\r\n\r\nfunction setHeightVariables() {\r\n  bodyHeightPx = document.body.offsetHeight;\r\n  pageHeightVh = (100 * bodyHeightPx \/ window.innerHeight);\r\n}\r\n\r\n\/\/ get params set in snow div\r\nfunction getSnowAttributes() {\r\n  const snowWrapper = document.getElementById('snow');\r\n  if (snowWrapper) {\r\n    snowflakesCount = Number(\r\n      snowWrapper.attributes?.count?.value || snowflakesCount\r\n    );\r\n  }\r\n}\r\n\r\n\/\/ This function allows you to turn on and off the snow\r\nfunction showSnow(value) {\r\n  if (value) {\r\n    document.getElementById('snow').style.display = \"block\";\r\n  }\r\n  else {\r\n    document.getElementById('snow').style.display = \"none\";\r\n  }\r\n}\r\n\r\n\/\/ Creating snowflakes\r\nfunction spawnSnow(snowDensity = 200) {\r\n  snowDensity -= 1;\r\n\r\n  for (let i = 0; i < snowDensity; i++) {\r\n    let board = document.createElement('div');\r\n    board.className = \"snowflake\";\r\n\r\n    document.getElementById('snow').appendChild(board);\r\n  }\r\n}\r\n\r\n\/\/ Append style for each snowflake to the head\r\nfunction addCss(rule) {\r\n  let css = document.createElement('style');\r\n  css.appendChild(document.createTextNode(rule)); \/\/ Support for the rest\r\n  document.getElementsByTagName(\"head\")[0].appendChild(css);\r\n}\r\n\r\n\/\/ Math\r\nfunction randomInt(value = 100) {\r\n  return Math.floor(Math.random() * value) + 1;\r\n}\r\n\r\nfunction randomIntRange(min, max) {\r\n  min = Math.ceil(min);\r\n  max = Math.floor(max);\r\n  return Math.floor(Math.random() * (max - min + 1)) + min;\r\n}\r\n\r\nfunction getRandomArbitrary(min, max) {\r\n  return Math.random() * (max - min) + min;\r\n}\r\n\r\n\/\/ Create style for snowflake\r\nfunction spawnSnowCSS(snowDensity = 200) {\r\n  let snowflakeName = \"snowflake\";\r\n  let rule = baseCss;\r\n\r\n  for (let i = 1; i < snowDensity; i++) {\r\n    let randomX = Math.random() * 100; \/\/ vw\r\n    let randomOffset = Math.random() * 10 \/\/ vw;\r\n    let randomXEnd = randomX + randomOffset;\r\n    let randomXEndYoyo = randomX + (randomOffset \/ 2);\r\n    let randomYoyoTime = getRandomArbitrary(0.3, 0.8);\r\n    let randomYoyoY = randomYoyoTime * pageHeightVh; \/\/ vh\r\n    let randomScale = Math.random();\r\n    let fallDuration = randomIntRange(10, pageHeightVh \/ 10 * 3); \/\/ s\r\n    let fallDelay = randomInt(pageHeightVh \/ 10 * 3) * -1; \/\/ s\r\n    let opacity = Math.random();\r\n\r\n    rule += `\r\n      .${snowflakeName}:nth-child(${i}) {\r\n        opacity: ${opacity};\r\n        transform: translate(${randomX}vw, -10px) scale(${randomScale});\r\n        animation: fall-${i} ${fallDuration}s ${fallDelay}s linear infinite;\r\n      }\r\n      @keyframes fall-${i} {\r\n        ${randomYoyoTime * 100}% {\r\n          transform: translate(${randomXEnd}vw, ${randomYoyoY}vh) scale(${randomScale});\r\n        }\r\n        to {\r\n          transform: translate(${randomXEndYoyo}vw, ${pageHeightVh}vh) scale(${randomScale});\r\n        }\r\n      }\r\n    `\r\n  }\r\n  addCss(rule);\r\n}\r\n\r\n\/\/ Load the rules and execute after the DOM loads\r\ncreateSnow = function () {\r\n  setHeightVariables();\r\n  getSnowAttributes();\r\n  spawnSnowCSS(snowflakesCount);\r\n  spawnSnow(snowflakesCount);\r\n};\r\n\r\n\r\n\/\/ export createSnow function if using node or CommonJS environment\r\nif (typeof module !== 'undefined') {\r\n  module.exports = {\r\n    createSnow,\r\n    showSnow,\r\n  };\r\n}\r\nelse {\r\n  window.onload = createSnow;\r\n}\r\n\r\n\/\/ TODO add option to easily re-render scenery. For example when window resizes.\r\n\/\/ this should be easy as CSS rerenders after display block -> none -> block;\r\n\/\/ TODO add progress bar for slower clients\r\n\r\n    <\/script>\r\n  <\/head>\r\n  <body>\r\n    <div id=\"snow\" count=\"300\"><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-2336452 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2336452\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-18fd98d\" data-id=\"18fd98d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;chars&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-8b5e852 animated-slow awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8b5e852\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.9.0 - 06-12-2022 *\/\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\/style><h2 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:#23d5e0;\">HIGH ABOVE THE<\/span><br\/> PERMANENT SNOWLINE<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-244dcef elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"244dcef\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.9.0 - 06-12-2022 *\/\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\/style>\t\t\t\t<span style=\"background-color:#000; padding-left:10px; padding-right:10px; opacity:.5\">OF THE LOFTY HIMALAYAS<\/span>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"awam-parallax jarallax parallax-yes elementor-section elementor-top-section elementor-element elementor-element-25360f8 elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-awam-parallax=\"{&quot;type&quot;:&quot;scroll&quot;,&quot;speed&quot;:&quot;0.7&quot;,&quot;imgsize&quot;:&quot;cover&quot;,&quot;imgsrc&quot;:&quot;https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/banner-2-1.jpg&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&quot;,&quot;mobile&quot;:&quot;&quot;}\" data-id=\"25360f8\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2d3dccad\" data-id=\"2d3dccad\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-93ed71d clouds elementor-widget elementor-widget-image\" data-id=\"93ed71d\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.9.0 - 06-12-2022 *\/\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\/style>\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"500\" height=\"295\" src=\"https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/cloud_PNG7-1.png\" class=\"attachment-large size-large wp-image-8240\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/cloud_PNG7-1.png 500w, https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/cloud_PNG7-1-300x177.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;words&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-08f356e awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"08f356e\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:#23d5e0;\">THE GLACIAL MELTS MAKE <\/span><br\/>THEIR EARTHWARD JOURNEY<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fa7f011 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"fa7f011\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<span style=\"background-color:#000; padding-left:10px; padding-right:10px; opacity:.5\">PERMEATING, FILTERING THROUGH LAYERS OF ROCKS<\/span>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"awam-parallax jarallax parallax-yes elementor-section elementor-top-section elementor-element elementor-element-6b125564 elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-awam-parallax=\"{&quot;type&quot;:&quot;scroll&quot;,&quot;speed&quot;:&quot;1.2&quot;,&quot;imgsize&quot;:&quot;cover&quot;,&quot;imgsrc&quot;:&quot;https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/origins-3.jpg&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&quot;,&quot;mobile&quot;:&quot;&quot;}\" data-id=\"6b125564\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-51166e86\" data-id=\"51166e86\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-adbde67 elementor-widget elementor-widget-html\" data-id=\"adbde67\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\r\n.rain {\r\n  position: absolute;\r\n  left: 0;\r\n  width: 100%;\r\n  height: 100%;\r\n  z-index: 2;\r\n   bottom: 110px;\r\n}\r\n\r\n.rain.back-row {\r\n  display: none;\r\n  z-index: 1;\r\n \r\n  opacity: 0.5;\r\n}\r\n\r\nbody.back-row-toggle .rain.back-row {\r\n  display: block;\r\n}\r\n\r\n.drop {\r\n  position: absolute;\r\n  bottom: 100%;\r\n  width: 50px;\r\n  height: 50px;\r\n  pointer-events: none;\r\n  animation: drop 20s linear infinite;\r\n}\r\n\r\n@keyframes drop {\r\n  0% {\r\n    transform: translateY(0vh);\r\n  }\r\n  75% {\r\n    transform: translateY(90vh);\r\n  }\r\n  100% {\r\n    transform: translateY(90vh);\r\n  }\r\n}\r\n\r\n.stem {\r\n  width: 1.5px;\r\n  height: 60%;\r\n  margin-left: 7px;\r\n  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));\r\n  animation: stem 20s linear infinite;\r\n}\r\n\r\n@keyframes stem {\r\n  0% {\r\n    opacity: 1;\r\n  }\r\n  65% {\r\n    opacity: 1;\r\n  }\r\n  75% {\r\n    opacity: 0;\r\n  }\r\n  100% {\r\n    opacity: 0;\r\n  }\r\n}\r\n\r\n.splat {\r\n  width: 20px;\r\n  height: 10px;\r\n  border-top: 2px dotted rgba(255, 255, 255, 0.4);\r\n  border-radius: 50%;\r\n  opacity: 1;\r\n  transform: scale(0);\r\n  animation: splat 20s linear infinite;\r\n  display: none;\r\n}\r\n\r\nbody.splat-toggle .splat {\r\n  display: block;\r\n}\r\n\r\n@keyframes splat {\r\n  0% {\r\n    opacity: 1;\r\n    transform: scale(0);\r\n  }\r\n  80% {\r\n    opacity: 1;\r\n    transform: scale(0);\r\n  }\r\n  90% {\r\n    opacity: 0.5;\r\n    transform: scale(1);\r\n  }\r\n  100% {\r\n    opacity: 0;\r\n    transform: scale(1.5);\r\n  }\r\n}\r\n<\/style>\r\n<\/head>\r\n<body class=\"back-row-toggle splat-toggle\">\r\n<div class=\"rain front-row\"><\/div>\r\n<div class=\"rain back-row\"><\/div>\r\n<script src=\"https:\/\/code.jquery.com\/jquery-2.2.4.min.js\"><\/script>\r\n<script type=\"text\/javascript\">\r\n  \r\n  var makeItRain = function() {\r\n  \/\/clear out everything\r\n  $('.rain').empty();\r\n\r\n  var increment = 0;\r\n  var drops = \"\";\r\n  var backDrops = \"\";\r\n\r\n  while (increment < 100) {\r\n    \/\/couple random numbers to use for various randomizations\r\n    \/\/random number between 98 and 1\r\n    var randoHundo = (Math.floor(Math.random() * (98 - 1 + 1) + 1));\r\n    \/\/random number between 5 and 2\r\n    var randoFiver = (Math.floor(Math.random() * (5 - 2 + 1) + 2));\r\n    \/\/increment\r\n    increment += randoFiver;\r\n    \/\/add in a new raindrop with various randomizations to certain CSS properties\r\n    drops += '<div class=\"drop\" style=\"left: ' + increment + '%; bottom: ' + (randoFiver + randoFiver - 1 + 100) + '%; animation-delay: 0.' + randoHundo + 's; animation-duration: 0.5' + randoHundo + 's;\"><div class=\"stem\" style=\"animation-delay: 0.' + randoHundo + 's; animation-duration: 0.5' + randoHundo + 's;\"><\/div><div class=\"splat\" style=\"animation-delay: 0.' + randoHundo + 's; animation-duration: 0.9' + randoHundo + 's;\"><\/div><\/div>';\r\n    backDrops += '<div class=\"drop\" style=\"right: ' + increment + '%; bottom: ' + (randoFiver + randoFiver - 1 + 100) + '%; animation-delay: 0.' + randoHundo + 's; animation-duration: 0.9' + randoHundo + 's;\"><div class=\"stem\" style=\"animation-delay: 0.' + randoHundo + 's; animation-duration: 0.9' + randoHundo + 's;\"><\/div><div class=\"splat\" style=\"animation-delay: 0.' + randoHundo + 's; animation-duration: 0.9' + randoHundo + 's;\"><\/div><\/div>';\r\n  }\r\n\r\n  $('.rain.front-row').append(drops);\r\n  $('.rain.back-row').append(backDrops);\r\n}\r\n\r\n\r\nmakeItRain();\r\n<\/script>\r\n\r\n<\/body>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;words&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-cda2b3e awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"cda2b3e\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:#23d5e0;\">NATURALLY<\/span><br\/>GETTING RICHER<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15540a0 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"15540a0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<span style=\"background-color:#000; padding-left:10px; padding-right:10px; opacity:.5\">WITH ORGANIC LIFE MINERALS<\/span>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"awam-parallax jarallax parallax-yes elementor-section elementor-top-section elementor-element elementor-element-5bb47d54 elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-awam-parallax=\"{&quot;type&quot;:&quot;scroll&quot;,&quot;speed&quot;:&quot;0.7&quot;,&quot;imgsize&quot;:&quot;cover&quot;,&quot;imgsrc&quot;:&quot;https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/div-4.jpg&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&quot;,&quot;mobile&quot;:&quot;&quot;}\" data-id=\"5bb47d54\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2c2500c4\" data-id=\"2c2500c4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b8da553 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"b8da553\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\r\nh1 {\r\n    font-family: 'Exo 2', sans-serif;\r\n    font-size: 8.5vw;\r\n    color: white;\r\n    padding: 5rem 0;\r\n    text-shadow: 0px 4px 48px rgba(255, 255, 255, 0.2);\r\n}\r\n.container {\r\n    position: relative;\r\n    display: -webkit-box;\r\n    display: -ms-flexbox;\r\n    display: flex;\r\n    -ms-flex-line-pack: center;\r\n    align-content: center;\r\n    -webkit-box-pack: center;\r\n    -ms-flex-pack: center;\r\n    justify-content: center;\r\n    background-blend-mode: multiply;\r\n    background-size: cover;\r\n    overflow: hidden;\r\n}\r\n.bubbles-container {\r\n    position: absolute;\r\n    top: 0;\r\n    left: 50%;\r\n    width: 100%;\r\n    height:100%;\r\n    max-width: 5rem;\r\n    -webkit-transform: translateX(-50%);\r\n    transform: translateX(-50%);\r\n    opacity: 0.9;\r\n}\r\n.bubbles {\r\n    width: 170px;\r\n    height: 170px;\r\n}\r\n.bubbles circle {\r\n    stroke: #9099a1;\r\n    fill: #9099a1;\r\n}\r\n.bubbles > g > g:nth-of-type(3n) circle {\r\n    stroke: #9099a1;\r\n}\r\n.bubbles > g > g:nth-of-type(4n) circle {\r\n    stroke: #9099a1;\r\n}\r\n.bubbles-large {\r\n    overflow: visible;\r\n}\r\n.bubbles-large > g {\r\n    -webkit-transform: translateY(2048px);\r\n    transform: translateY(2048px);\r\n    opacity: 0;\r\n    will-change: transform, opacity;\r\n}\r\n.bubbles-large g:nth-of-type(1) {\r\n    -webkit-animation: up 6.5s infinite;\r\n    animation: up 6.5s infinite;\r\n}\r\n.bubbles-large g:nth-of-type(1) g {\r\n    -webkit-transform: translateX(350px);\r\n    transform: translateX(350px);\r\n}\r\n.bubbles-large g:nth-of-type(1) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-large g:nth-of-type(2) {\r\n    -webkit-animation: up 5.25s 250ms infinite;\r\n    animation: up 5.25s 250ms infinite;\r\n}\r\n.bubbles-large g:nth-of-type(2) g {\r\n    -webkit-transform: translateX(450px);\r\n    transform: translateX(450px);\r\n}\r\n.bubbles-large g:nth-of-type(2) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-large g:nth-of-type(3) {\r\n    -webkit-animation: up 6s 750ms infinite;\r\n    animation: up 6s 750ms infinite;\r\n}\r\n.bubbles-large g:nth-of-type(3) g {\r\n    -webkit-transform: translateX(700px);\r\n    transform: translateX(700px);\r\n}\r\n.bubbles-large g:nth-of-type(3) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-large g:nth-of-type(4) {\r\n    -webkit-animation: up 5.5s 1.5s infinite;\r\n    animation: up 5.5s 1.5s infinite;\r\n}\r\n.bubbles-large g:nth-of-type(4) g {\r\n    -webkit-transform: translateX(500px);\r\n    transform: translateX(500px);\r\n}\r\n.bubbles-large g:nth-of-type(4) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-large g:nth-of-type(5) {\r\n    -webkit-animation: up 6.5s 4s infinite;\r\n    animation: up 6.5s 4s infinite;\r\n}\r\n.bubbles-large g:nth-of-type(5) g {\r\n    -webkit-transform: translateX(675px);\r\n    transform: translateX(675px);\r\n}\r\n.bubbles-large g:nth-of-type(5) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-small {\r\n    overflow: visible;\r\n}\r\n.bubbles-small > g {\r\n    -webkit-transform: translateY(2048px);\r\n    transform: translateY(2048px);\r\n    opacity: 0;\r\n    will-change: transform, opacity;\r\n}\r\n.bubbles-small g circle {\r\n    -webkit-transform: scale(0);\r\n    transform: scale(0);\r\n}\r\n.bubbles-small g:nth-of-type(1) {\r\n    -webkit-animation: up 5.25s infinite;\r\n    animation: up 5.25s infinite;\r\n}\r\n.bubbles-small g:nth-of-type(1) g {\r\n    -webkit-transform: translateX(350px);\r\n    transform: translateX(350px);\r\n}\r\n.bubbles-small g:nth-of-type(1) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(2) {\r\n    -webkit-animation: up 5.75s infinite;\r\n    animation: up 5.75s infinite;\r\n}\r\n.bubbles-small g:nth-of-type(2) g {\r\n    -webkit-transform: translateX(750px);\r\n    transform: translateX(750px);\r\n}\r\n.bubbles-small g:nth-of-type(2) circle {\r\n    -webkit-animation: wobble 3s infinite ease-in-out;\r\n    animation: wobble 3s infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(3) {\r\n    -webkit-animation: up 5.25s 250ms infinite;\r\n    animation: up 5.25s 250ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(3) g {\r\n    -webkit-transform: translateX(350px);\r\n    transform: translateX(350px);\r\n}\r\n.bubbles-small g:nth-of-type(3) circle {\r\n    -webkit-animation: wobble 3s 250ms infinite ease-in-out;\r\n    animation: wobble 3s 250ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(4) {\r\n    -webkit-animation: up 5.75s 325ms infinite;\r\n    animation: up 5.75s 325ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(4) g {\r\n    -webkit-transform: translateX(180px);\r\n    transform: translateX(180px);\r\n}\r\n.bubbles-small g:nth-of-type(4) circle {\r\n    -webkit-animation: wobble 3s 325ms infinite ease-in-out;\r\n    animation: wobble 3s 325ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(5) {\r\n    -webkit-animation: up 6s 125ms infinite;\r\n    animation: up 6s 125ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(5) g {\r\n    -webkit-transform: translateX(350px);\r\n    transform: translateX(350px);\r\n}\r\n.bubbles-small g:nth-of-type(5) circle {\r\n    -webkit-animation: wobble 3s 250ms infinite ease-in-out;\r\n    animation: wobble 3s 250ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(6) {\r\n    -webkit-animation: up 5.13s 250ms infinite;\r\n    animation: up 5.13s 250ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(6) g {\r\n    -webkit-transform: translateX(650px);\r\n    transform: translateX(650px);\r\n}\r\n.bubbles-small g:nth-of-type(6) circle {\r\n    -webkit-animation: wobble 3s 125ms infinite ease-in-out;\r\n    animation: wobble 3s 125ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(7) {\r\n    -webkit-animation: up 6.25s 350ms infinite;\r\n    animation: up 6.25s 350ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(7) g {\r\n    -webkit-transform: translateX(480px);\r\n    transform: translateX(480px);\r\n}\r\n.bubbles-small g:nth-of-type(7) circle {\r\n    -webkit-animation: wobble 3s 325ms infinite ease-in-out;\r\n    animation: wobble 3s 325ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(8) {\r\n    -webkit-animation: up 7s 200ms infinite;\r\n    animation: up 7s 200ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(8) g {\r\n    -webkit-transform: translateX(330px);\r\n    transform: translateX(330px);\r\n}\r\n.bubbles-small g:nth-of-type(8) circle {\r\n    -webkit-animation: wobble 3s 325ms infinite ease-in-out;\r\n    animation: wobble 3s 325ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(9) {\r\n    -webkit-animation: up 6.25s 233ms infinite;\r\n    animation: up 6.25s 233ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(9) g {\r\n    -webkit-transform: translateX(230px);\r\n    transform: translateX(230px);\r\n}\r\n.bubbles-small g:nth-of-type(9) circle {\r\n    -webkit-animation: wobble 3s 275ms infinite ease-in-out;\r\n    animation: wobble 3s 275ms infinite ease-in-out;\r\n}\r\n.bubbles-small g:nth-of-type(10) {\r\n    -webkit-animation: up 6s 900ms infinite;\r\n    animation: up 6s 900ms infinite;\r\n}\r\n.bubbles-small g:nth-of-type(10) g {\r\n    -webkit-transform: translateX(730px);\r\n    transform: translateX(730px);\r\n}\r\n.bubbles-small g:nth-of-type(10) circle {\r\n    -webkit-animation: wobble 2s 905ms infinite ease-in-out;\r\n    animation: wobble 2s 905ms infinite ease-in-out;\r\n}\r\n @-webkit-keyframes wobble {\r\n 33% {\r\n -webkit-transform: translateX(-50px);\r\n transform: translateX(-50px);\r\n}\r\n 66% {\r\n -webkit-transform: translateX(50px);\r\n transform: translateX(50px);\r\n}\r\n}\r\n @keyframes wobble {\r\n 33% {\r\n -webkit-transform: translateX(-50px);\r\n transform: translateX(-50px);\r\n}\r\n 66% {\r\n -webkit-transform: translateX(50px);\r\n transform: translateX(50px);\r\n}\r\n}\r\n@-webkit-keyframes up {\r\n 0% {\r\n opacity: 0;\r\n}\r\n 10%, 90% {\r\n opacity: 1;\r\n}\r\n 100% {\r\n opacity: 0;\r\n -webkit-transform: translateY(-1024px);\r\n transform: translateY(-1024px);\r\n}\r\n}\r\n@keyframes up {\r\n 0% {\r\n opacity: 0;\r\n}\r\n 10%, 90% {\r\n opacity: 1;\r\n}\r\n 100% {\r\n opacity: 0;\r\n -webkit-transform: translateY(-1024px);\r\n transform: translateY(-1024px);\r\n}\r\n}\r\n<\/style>\r\n\t\r\n\t<style>\r\n\t\t.demo_download_button{\r\n\t\t\t\r\n\t\t\tfont-size: 1.4em;\r\n\t\t\tcolor: #FF18BA;\r\n\t\t\ttext-transform: uppercase;\r\n\t\t}\r\n\t<\/style>\r\n<\/head>\r\n\r\n<body>\r\n<div class=\"container\">\r\n  <div class=\"bubbles-container\">\r\n    <svg class=\"bubbles\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1024 1920\" style=\"overflow: visible;\">\r\n      <g class=\"bubbles-large\" stroke-width=\"7\">\r\n        <g>\r\n          <g transform=\"translate(10 940)\">\r\n            <circle cx=\"35\" cy=\"35\" r=\"35\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(373 940)\">\r\n            <circle cx=\"35\" cy=\"35\" r=\"35\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(408 940)\">\r\n            <circle cx=\"35\" cy=\"35\" r=\"35\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(621 940)\">\r\n            <circle cx=\"35\" cy=\"35\" r=\"35\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(179 940)\">\r\n            <circle cx=\"35\" cy=\"35\" r=\"35\"\/>\r\n          <\/g>\r\n        <\/g>\r\n      <\/g>\r\n      <g class=\"bubbles-small\" stroke-width=\"4\">\r\n        <g>\r\n          <g transform=\"translate(147 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(255 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(573 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(429 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(91 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(640 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(321 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(376 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(376 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n        <g>\r\n          <g transform=\"translate(497 984)\">\r\n            <circle cx=\"15\" cy=\"15\" r=\"15\"\/>\r\n          <\/g>\r\n        <\/g>\r\n      <\/g>\r\n    <\/svg>\r\n  <\/div>\r\n  <h1><\/h1>\r\n<\/div>\r\n<\/body>\r\n\r\n<\/html>\r\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;words&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-b3891a9 awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"b3891a9\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:#23d5e0;\">TO ITS PRISTINE<\/span> <br\/>CONFINED ABODE<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0fd9e7c elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"0fd9e7c\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<span style=\"background-color:#000; padding-left:10px; padding-right:10px; opacity:.5\">INSIDE AN AQUIFER IN LOWER HIMALAYAS<\/span>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"awam-parallax jarallax parallax-yes elementor-section elementor-top-section elementor-element elementor-element-1d75896b elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-awam-parallax=\"{&quot;type&quot;:&quot;scroll&quot;,&quot;speed&quot;:&quot;0.7&quot;,&quot;imgsize&quot;:&quot;cover&quot;,&quot;imgsrc&quot;:&quot;https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/banner-5-1.jpg&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&quot;,&quot;mobile&quot;:&quot;&quot;}\" data-id=\"1d75896b\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7896c2c3\" data-id=\"7896c2c3\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-46e0cd54 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"46e0cd54\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2cde973c\" data-id=\"2cde973c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;chars&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-9358c0 animated-slow awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"9358c0\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><span style=\"color:#23d5e0;\">UNTOUCHED & UNPROCESSED<\/span><br\/> BOTTLED AT SOURCE<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42d3a338 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"42d3a338\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<span style=\"background-color:#000; padding-left:10px; padding-right:10px; opacity:.5\">GIVING THE NATURAL GOODNESS OF WATER AS NATURE MADE IT<\/span>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f0e8454 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"f0e8454\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:200}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"157\" height=\"500\" src=\"https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/06\/Bottle_png.png\" class=\"attachment-full size-full wp-image-9770\" alt=\"Bottle\" loading=\"lazy\" srcset=\"https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/06\/Bottle_png.png 157w, https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/06\/Bottle_png-94x300.png 94w\" sizes=\"(max-width: 157px) 100vw, 157px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"awam-parallax jarallax parallax-yes elementor-section elementor-top-section elementor-element elementor-element-7c9677a2 elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-awam-parallax=\"{&quot;type&quot;:&quot;scroll&quot;,&quot;speed&quot;:&quot;0.7&quot;,&quot;imgsize&quot;:&quot;cover&quot;,&quot;imgsrc&quot;:&quot;https:\/\/bluepinewater.com\/beta\/wp-content\/uploads\/2023\/04\/banner-6-1.jpg&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&quot;,&quot;mobile&quot;:&quot;&quot;}\" data-id=\"7c9677a2\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7f8c4219\" data-id=\"7f8c4219\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;words&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-0e034f6 awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0e034f6\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">INDIA\u2019S FINEST WATER<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div class=\"elementor-section elementor-top-section elementor-element elementor-element-47a6592 elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"47a6592\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2838604\" data-id=\"2838604\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;chars&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-4f75e64 awam-headig-split heading-has-split-yes awam-transform transform-type-translate elementor-widget elementor-widget-heading\" data-id=\"4f75e64\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">let's talk<\/h6>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-split-settings=\"{&quot;type&quot;:&quot;chars&quot;,&quot;animation&quot;:&quot;fadeInUp2&quot;}\" class=\"elementor-element elementor-element-7f4f503 awam-stroke awam-has-stroke-yes awam-has-stroke-type stroke-type-part awam-headig-split heading-has-split-yes designn awam-transform transform-type-translate elementor-widget elementor-widget-heading\" data-id=\"7f4f503\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><b>Contact<\/b> us<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d7a7d5c\" data-id=\"d7a7d5c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e34fda9 elementor-invisible elementor-widget elementor-widget-elementskit-button\" data-id=\"e34fda9\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:15}\" data-widget_type=\"elementskit-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/bluepinewater.com\/beta\/contact\/\" class=\"elementskit-btn  whitespace--normal\" >\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tGet in Touch\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>HIGH ABOVE THE PERMANENT SNOWLINE OF THE LOFTY HIMALAYAS THE GLACIAL MELTS MAKE THEIR EARTHWARD JOURNEY PERMEATING, FILTERING THROUGH LAYERS OF ROCKS NATURALLYGETTING RICHER WITH ORGANIC LIFE MINERALS TO ITS PRISTINE CONFINED ABODE INSIDE AN AQUIFER IN LOWER HIMALAYAS UNTOUCHED &#038; UNPROCESSED BOTTLED AT SOURCE GIVING THE NATURAL GOODNESS OF WATER AS NATURE MADE IT&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/pages\/8226"}],"collection":[{"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/comments?post=8226"}],"version-history":[{"count":257,"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/pages\/8226\/revisions"}],"predecessor-version":[{"id":9773,"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/pages\/8226\/revisions\/9773"}],"wp:attachment":[{"href":"https:\/\/bluepinewater.com\/beta\/wp-json\/wp\/v2\/media?parent=8226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}