{"id":478,"date":"2024-04-18T13:31:11","date_gmt":"2024-04-18T13:31:11","guid":{"rendered":"https:\/\/cornerstonecaregiving.com\/?post_type=home-care-service&#038;p=478"},"modified":"2025-10-16T15:56:49","modified_gmt":"2025-10-16T20:56:49","slug":"hospice-palliative-care","status":"publish","type":"home-care-service","link":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/","title":{"rendered":"Hospice &amp; Palliative Care"},"content":{"rendered":"\n<section class=\" ctn-850      \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"wrapper\"><div id=\"block-theme-video-block_d3e200270f104c57cf686eed401bb734\" class=\"  block-acf-theme-video block-acf-theme-video\" style=\"\"> <div class='gl-s9'><\/div>\t\t<div class=\"video-block block_d3e200270f104c57cf686eed401bb734\">\n\t\t\t<div class=\"video\">\n\t\t\t\t<div class=\"video__popup--iframe  play-button\" role=\"button\" >\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"video__popup--btn\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/video-icon.svg\"\n\t\t\t\t\t\t\t\talt=\"Video Play Icon\">\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<iframe id=\"video\"\n\t\t\t\t\t\tsrc=\"https:\/\/www.youtube.com\/embed\/RWvGL_zecvU?enablejsapi=1\"\n\t\t\t\t\t\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\"\n\t\t\t\t\t\tallowfullscreen frameborder=\"0\" height=\"650\" width=\"1080\"><\/iframe>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<!-- <div class=\"video-block-end-trigger\"><\/div> -->\n\t<script>\n\t\t\t\t\t\tjQuery(document).ready(function($){\n\n\t\t\t\t\t\tlet ytPlayers = {};\n\n\t\t\t\t\t\t\/\/ Load YouTube API dynamically\n\t\t\t\t\t\tconst tag = document.createElement('script');\n\t\t\t\t\t\ttag.src = 'https:\/\/www.youtube.com\/iframe_api';\n\t\t\t\t\t\tconst firstScriptTag = document.getElementsByTagName('script')[0];\n\t\t\t\t\t\tfirstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\n\n\t\t\t\t\t\t\/\/ Initialize YouTube players when API is ready\n\t\t\t\t\t\twindow.onYouTubeIframeAPIReady = function() {\n\t\t\t\t\t\t$('iframe[src*=\"youtube.com\/embed\"]').each(function(index){\n\t\t\t\t\t\t  const iframe = $(this);\n\n\t\t\t\t\t\t  \/\/ Remove autoplay if present\n\t\t\t\t\t\t  iframe.attr('src', iframe.attr('src').replace(\/(\\?|&)autoplay=1\/, ''));\n\n\t\t\t\t\t\t  \/\/ Assign unique ID if missing\n\t\t\t\t\t\t  if(!iframe.attr('id')) iframe.attr('id', 'yt-video-' + index);\n\n\t\t\t\t\t\t  \/\/ Create YT.Player instance\n\t\t\t\t\t\t  ytPlayers[iframe.attr('id')] = new YT.Player(iframe.attr('id'), {\n\t\t\t\t\t\t    events: {\n\t\t\t\t\t\t      onReady: function(event){\n\t\t\t\t\t\t        \/\/ Player is ready\n\t\t\t\t\t\t      }\n\t\t\t\t\t\t    }\n\t\t\t\t\t\t  });\n\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\/\/ Handle play button clicks\n\t\t\t\t\t\t$(document).on('click', '.play-button', function(){\n\n\t\t\t\t\t\tconst $block = $(this).closest('.video-block');\n\n\t\t\t\t\t\t\/\/ Identify clicked YouTube iframe or HTML5 video\n\t\t\t\t\t\tconst $clickedYT = $block.find('iframe[src*=\"youtube.com\/embed\"]');\n\t\t\t\t\t\tconst clickedYTId = $clickedYT.attr('id');\n\t\t\t\t\t\tconst clickedHTML5 = $block.find('video')[0];\n\n\t\t\t\t\t\t\/\/ Pause all other YouTube players\n\t\t\t\t\t\tObject.keys(ytPlayers).forEach(id => {\n\t\t\t\t\t\t  if(id !== clickedYTId && ytPlayers[id] && ytPlayers[id].pauseVideo){\n\t\t\t\t\t\t  \t\t\n\t\t\t\t\t\t    ytPlayers[id].pauseVideo();\n\t\t\t\t\t\t  }\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Pause all other HTML5 videos\n\t\t\t\t\t\t$('video').each(function(){\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t  if(this !== clickedHTML5){\n\t\t\t\t\t\t    this.pause();\n\t\t\t\t\t\t    this.currentTime = 0;\n\t\t\t\t\t\t  }\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Play clicked YouTube video (wait until player is ready)\n\t\t\t\t\t\tif($clickedYT.length){\n\t\t\t\t\t\t  const player = ytPlayers[clickedYTId];\n\t\t\t\t\t\t  if(player && typeof player.playVideo === \"function\"){\n\t\t\t\t\t\t    player.playVideo();\n\t\t\t\t\t\t  }\n\t\t\t\t\t\t  return;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\/\/ Play clicked HTML5 video\n\t\t\t\t\t\tif(clickedHTML5){\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t  clickedHTML5.play();\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t});\n\t\t\t\t\t\t<\/script>\n\t\t<div class='gl-s9'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<section class=\" ctn      \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"wrapper\"><div id=\"block-testimonials-block_8a0858713a98dd79c52c8ee4596417c5\" class=\"  block-acf-testimonials block-acf-testimonials\" style=\"\"> <div class='gl-s10'><\/div>\t\t\n\t\t\t<div class=\"testimonials h-center-align testimonial-design2\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"testimonials__slider  testimonial-alt-6\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"item\">\n\t\t\t\t\t\t\t<div class=\"testimonials__slider--slide \">\n\t\t\t\t\t\t\t\t<blockquote class=\"q1 h-no-border\">\n\t\t\t\t\t\t\t\t\t\u201cMy father was on hospice at the end of his life\u2026 Cornerstone provided companionship and care and showed compassion.\u201d\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-stars h-flex-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<cite>Paula B. | Client&#039;s Daughter in Youngstown, OH\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>Google<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"item\">\n\t\t\t\t\t\t\t<div class=\"testimonials__slider--slide \">\n\t\t\t\t\t\t\t\t<blockquote class=\"q1 h-no-border\">\n\t\t\t\t\t\t\t\t\t\u201cCornerstone\u2019s extensive knowledge in home care, particularly dementia and hospice care, is remarkable.\u201d\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-stars h-flex-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<cite>Tannya C. | Referral Partner in The Woodlands, TX\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>Google<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"item\">\n\t\t\t\t\t\t\t<div class=\"testimonials__slider--slide \">\n\t\t\t\t\t\t\t\t<blockquote class=\"q1 h-no-border\">\n\t\t\t\t\t\t\t\t\t\u201cCornerstone Caregiving has been absolutely amazing with their hospice patients. I cannot say anymore amazing things about them!\u201d\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-stars h-flex-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<cite>Robin L. | Referral Partner in Joplin, MO\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>Google<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"item\">\n\t\t\t\t\t\t\t<div class=\"testimonials__slider--slide \">\n\t\t\t\t\t\t\t\t<blockquote class=\"q1 h-no-border\">\n\t\t\t\t\t\t\t\t\t\u201cI work for Agape Care Hospice and we partner with this great company!\u2026 I would recommend them for your loved one.\u201d\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-stars h-flex-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<cite>Dana G. | Referral Partner in Greenville, SC\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>Google<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"item\">\n\t\t\t\t\t\t\t<div class=\"testimonials__slider--slide \">\n\t\t\t\t\t\t\t\t<blockquote class=\"q1 h-no-border\">\n\t\t\t\t\t\t\t\t\t\u201cWe were very pleased with the level of attention and compassion shown by team members at Cornerstone while caring for a close friend in assisted living and hospice.\u201d\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-stars h-flex-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating-icon-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/rating-icon.svg\" alt=\"Icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<cite>John S. | Client&#039;s Friend in Cleveland, OH\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>Google<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/cite>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/blockquote>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class='gl-s10'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<section class=\" ctn      \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"wrapper\"><div id=\"block-image-alongside-text-block_60db58277b683b4c7908fa69c0119178\" class=\"  block-acf-image-alongside-text block-acf-image-alongside-text\" style=\"\"> <div class='s-0'><\/div><div\n    class=\"iat-section two-columns justify-content-between align-items-center image-at-left small-image round-image blue-clr-shapes\">\n        <div class=\"iat-image column\">\n                <div class=\"bg-shape\">\n            <svg role=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"586\" height=\"548\" viewBox=\"0 0 586 548\"\n                fill=\"none\">\n                <path opacity=\"0.6\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"\n                    d=\"M241.357 547.746C129.694 543.758 36.9069 467.331 6.57178 364.773C-20.4769 273.326 39.7744 188.927 117.718 129.74C212.196 57.9957 238.731 -67.0572 432.139 41.612C654.455 166.524 583.916 260.088 537.312 383.727C494.64 496.933 367.416 552.248 241.357 547.746Z\"\n                    fill=\"#DCFAF7\"><\/path>\n            <\/svg>\n        <\/div>\n                <div class=\"iat-img\">\n                        <div class=\"tb-shapes\">\n                <div class=\"top-shape\">\n                    <svg role=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"215\" height=\"20\" viewBox=\"0 0 215 20\"\n                        fill=\"none\">\n                        <path fill-rule=\"evenodd\" clip-rule=\"evenodd\"\n                            d=\"M214.998 19.9998H-0.00195312L1.63122 0L212.335 19.7501C213.227 19.8337 214.115 19.9169 214.998 19.9998Z\"\n                            fill=\"#66CADB\"><\/path>\n                    <\/svg>\n                <\/div>\n                <div class=\"bot-shape\">\n                    <svg role=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"215\" height=\"20\" viewBox=\"0 0 215 20\"\n                        fill=\"none\">\n                        <path fill-rule=\"evenodd\" clip-rule=\"evenodd\"\n                            d=\"M0.00163269 0.000234604H215.002L213.369 20L2.66527 0.249926C1.77293 0.166285 0.885071 0.0830612 0.00163269 0.000234604Z\"\n                            fill=\"#66CADB\"><\/path>\n                    <\/svg>\n                <\/div>\n            <\/div>\n                        <img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-800x800.jpg\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"Caregiver holding seniors hand\" title=\"Caregiver holding seniors hand\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-800x800.jpg 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-300x300.jpg 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-1024x1024.jpg 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-150x150.jpg 150w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-768x768.jpg 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-1536x1536.jpg 1536w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-90x90.jpg 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-1600x1600.jpg 1600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-1400x1400.jpg 1400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-1200x1200.jpg 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-1000x1000.jpg 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-900x900.jpg 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-700x700.jpg 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-600x600.jpg 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-500x500.jpg 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-400x400.jpg 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-200x200.jpg 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308-100x100.jpg 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Ensuring-Peace-of-Mind-Through-Continuous-Support-scaled-e1717085570308.jpg 1706w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/>        <\/div>\n    <\/div>\n    \n        <div class=\"iat-text column\">\n        <h2 class=\"heading-3\"><span>Ensuring<\/span> peace of mind <\/h2><p>Forgoing medical intervention doesn\u2019t mean abandoning peace of mind. We enhance the care experience for our clients by collaborating closely with hospice and palliative care teams to provide support tailored to individual needs and preferences.<\/p>\n\n    <\/div>\n<\/div>\n\n\n<div class='gl-s10'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<section class=\" ctn     ctn-orange-gradient \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"wrapper\"><div id=\"block-image-alongside-text-block_1518f0be28172b2f59fcd5fa911e368f\" class=\"  block-acf-image-alongside-text block-acf-image-alongside-text\" style=\"\"> <div class='s-0'><\/div><div\n    class=\"iat-section two-columns justify-content-between align-items-center image-at-right large-image \">\n        <div class=\"iat-image column\">\n                <div class=\"iat-img\">\n                        <img loading=\"lazy\" decoding=\"async\" width=\"634\" height=\"587\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed.png\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"Caregiver assisting senior with putting shoes on\" title=\"Caregiver assisting senior with putting shoes on\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed.png 634w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-300x278.png 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-90x83.png 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-97x90.png 97w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-600x556.png 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-500x463.png 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-400x370.png 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-200x185.png 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.SecondBodyImage.Reframed-Fixed-100x93.png 100w\" sizes=\"auto, (max-width: 634px) 100vw, 634px\" \/>        <\/div>\n    <\/div>\n    \n        <div class=\"iat-text column\">\n        <h2 class=\"heading-3\"><span>Compassionate support<\/span> <br>in life\u2019s final chapter<\/h2><p>Sometimes you simply need someone to be with you and hold your hand. Other times life\u2019s practical details can seem impossible to accomplish. Our team understands the value of providing the right service at the right time. <\/p>\n\n    <\/div>\n<\/div>\n\n\n<div class='gl-s10'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<section class=\"ctn-lblue ctn-1064  ctn-top-shape large-shape also-bottom-shape design-shape-blue  \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"ctn-design-shape\"><div class=\"wrapper\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"203\" height=\"179\" viewBox=\"0 0 203 179\" fill=\"none\"><path class=\"ctn-design-shape-large\" d=\"M-1.52588e-05 90.5038C-1.52588e-05 28.6657 57.1197 45.091 94.0689 34.9552C136.629 23.2802 196.291 -37.4953 202.77 34.9552C207.852 91.783 127.281 178.543 94.0691 178.543C51.297 183.185 -1.52588e-05 152.342 -1.52588e-05 90.5038Z\" fill=\"#F5C198\"><\/path><path class=\"ctn-design-shape-small\" d=\"M86.4685 70C105.539 70 119.435 59.0783 122.561 43.8923C126.162 26.4001 107.077 11.7882 84.7332 9.12537C67.2075 7.03675 59.1387 31.5477 59.1387 45.1976C57.7071 62.7769 67.3975 70 86.4685 70Z\" fill=\"#66CADB\"><\/path><\/svg><\/div> <\/div><div class=\"wrapper\"><div id=\"block-jump-location-block_47545d73c34b9e0154d0899995d8f80b\" class=\"  block-acf-jump-location block-acf-jump-location\" style=\"\"> <div class=''><\/div><div class=\"theme-jumplink\" id=\"get-started\"><\/div><div class=''><\/div><\/div>\n\n<div id=\"block-theme-form-block_f26f112f4e1cd51a9e3c0acb52ce7aa3\" class=\"  block-acf-theme-form block-acf-theme-form\" style=\"\"> <div class='gl-s10'><\/div>\t\t<div class=\"theme-form two-columns\">\n\t\t\t\t\t\t\t<div class=\"theme-form__content\">\n\t\t\t\t\t<h2 class=\"heading-1\"><span>Get started<\/span> with Cornerstone Caregiving<\/h2><p>Send us a message to discuss care for your loved one we\u2019ll get back to you shortly.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"theme-form__form\">\n\t\t\t\t\t<script>\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_1' style='display:none'><style>#gform_wrapper_1[data-form-index=\"0\"].gform-theme,[data-parent-form=\"1_0\"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style>\n                        <div class='gform_heading'>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_1' id='gform_1'  action='\/canada\/wp-json\/wp\/v2\/home-care-service\/478' data-formid='1' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_1' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_1_76\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_76'>Facebook<\/label><div class='ginput_container'><input name='input_76' id='input_1_76' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_1_76'>This field is for validation purposes and should be left unchanged.<\/div><\/div><fieldset id=\"field_1_71\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Are you a caregiver looking for a job?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_71'>\n\t\t\t<div class='gchoice gchoice_1_71_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_71' type='radio' value='Yes'  id='choice_1_71_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_71_0' id='label_1_71_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_71_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_71' type='radio' value='No'  id='choice_1_71_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_71_1' id='label_1_71_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_1_72\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><a href=\"\/caregiver-jobs\/\" title=\"Apply Here\" class=\"button\"><span class=\"label-up\" role=\"presentation\">Apply Here<\/span><span class=\"label-up\" role=\"presentation\">Apply Here<\/span><div class=\"circle-effect\" role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a><\/div><div id=\"field_1_1\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half half-input-field gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_1'>First Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_1_1' type='text' value='' class='medium'    placeholder='First Name' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_8\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half half-input-field last gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_8'>Last Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_8' id='input_1_8' type='text' value='' class='medium'    placeholder='Last Name' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_4\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-half half-input-field gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_4'>Phone Number<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_4' id='input_1_4' type='tel' value='' class='medium'  placeholder='Phone Number' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_3\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half half-input-field last gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_3'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_3' id='input_1_3' type='email' value='' class='medium'   placeholder='Email' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_1_48\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full ajax-zipcode-field gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_48'>Postal code where care is needed<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_48' id='input_1_48' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_50\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full ajax-email-field field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_50'>Location Email<\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_50' id='input_1_50' type='email' value='' class='large'     aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_1_66\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full ajax-webemail-field field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_66'>Location Email WebMaster<\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_66' id='input_1_66' type='email' value='' class='large'     aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_1_49\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full ajax-location-id field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_49'>Location ID<\/label><div class='ginput_container ginput_container_text'><input name='input_49' id='input_1_49' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_74\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full ajax-distance-id field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_74'>Distance<\/label><div class='ginput_container ginput_container_text'><input name='input_74' id='input_1_74' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_9\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_9'>I&#039;m seeking care for<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_9' id='input_1_9' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected' class='gf_placeholder'>Please select<\/option><option value='Myself' >Myself<\/option><option value='Parent' >Parent<\/option><option value='Spouse\/Partner' >Spouse\/Partner<\/option><option value='Friend' >Friend<\/option><option value='Client\/Referral' >Client\/Referral<\/option><option value='Other' >Other<\/option><option value='Job' >I&#039;m looking for a job<\/option><\/select><\/div><\/div><div id=\"field_1_73\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><a href=\"\/caregiver-jobs\/\" title=\"Apply Here\" class=\"button\"><span class=\"label-up\" role=\"presentation\">Apply Here<\/span><span class=\"label-up\" role=\"presentation\">Apply Here<\/span><div class=\"circle-effect\" role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a><\/div><div id=\"field_1_7\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_7'>Contact preference<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_7' id='input_1_7' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected' class='gf_placeholder'>Please select<\/option><option value='Call me' >Call me<\/option><option value='Text me' >Text me<\/option><option value='Email me' >Email me<\/option><option value='No preference' >No preference<\/option><\/select><\/div><\/div><div id=\"field_1_70\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_70'>What is your care timeline<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_70' id='input_1_70' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Please select' >Please select<\/option><option value='Immediate' >Immediate<\/option><option value='Within 1 Week' >Within 1 Week<\/option><option value='Within 2 Weeks' >Within 2 Weeks<\/option><option value='Within 4 Weeks' >Within 4 Weeks<\/option><option value='Within 8 Weeks' >Within 8 Weeks<\/option><\/select><\/div><\/div><div id=\"field_1_75\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_75'>Tell us how we can help<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_75' id='input_1_75' class='textarea large'    placeholder='Share a brief message' aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_1_45\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_45' id='input_1_45' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/div><fieldset id=\"field_1_10\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label screen-reader-text gfield_label_before_complex' >By checking this box, you are authorizing Cornerstone Caregiving to send you marketing&nbsp;emails.<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_1_10'><div class='gchoice gchoice_1_10_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.1' type='checkbox'  value='Send me advice about senior care' checked='checked' id='choice_1_10_1'   aria-describedby=\"gfield_description_1_10\"\/>\n\t\t\t\t\t\t\t\t<label for='choice_1_10_1' id='label_1_10_1' class='gform-field-label gform-field-label--type-inline'>Send me advice about senior care<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><div class='gfield_description' id='gfield_description_1_10'><p style=\"font-size: 75%; line-height: 1.5; padding-top: -5%;\"><i>By checking this box, you are authorizing Cornerstone Caregiving to send you marketing&nbsp;emails.<\/i><\/p><\/div><\/fieldset><div id=\"field_1_56\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-source-first field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_56'>utm_source_first<\/label><div class='ginput_container ginput_container_text'><input name='input_56' id='input_1_56' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_65\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-medium-first field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_65'>utm_medium_first<\/label><div class='ginput_container ginput_container_text'><input name='input_65' id='input_1_65' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_64\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-campaign-first field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_64'>utm_campaign_first<\/label><div class='ginput_container ginput_container_text'><input name='input_64' id='input_1_64' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_63\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-term-first field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_63'>utm_term_first<\/label><div class='ginput_container ginput_container_text'><input name='input_63' id='input_1_63' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_62\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-content-first field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_62'>utm_content_first<\/label><div class='ginput_container ginput_container_text'><input name='input_62' id='input_1_62' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_68\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-id-first field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_68'>utm_id_first<\/label><div class='ginput_container ginput_container_text'><input name='input_68' id='input_1_68' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_61\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-source-last field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_61'>utm_source_last<\/label><div class='ginput_container ginput_container_text'><input name='input_61' id='input_1_61' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_60\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-medium-last field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_60'>utm_medium_last<\/label><div class='ginput_container ginput_container_text'><input name='input_60' id='input_1_60' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_59\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-campaign-last field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_59'>utm_campaign_last<\/label><div class='ginput_container ginput_container_text'><input name='input_59' id='input_1_59' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_58\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-term-last field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_58'>utm_term_last<\/label><div class='ginput_container ginput_container_text'><input name='input_58' id='input_1_58' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_57\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-content-last field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_57'>utm_content_last<\/label><div class='ginput_container ginput_container_text'><input name='input_57' id='input_1_57' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_69\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full js-utm-id-last field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_69'>utm_id_last<\/label><div class='ginput_container ginput_container_text'><input name='input_69' id='input_1_69' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_1' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Contact Me'  \/> <input type='hidden' name='gform_ajax' value='form_id=1&amp;title=&amp;description=&amp;tabindex=0&amp;theme=orbital&amp;styles=[]&amp;hash=bbf91c47bdf7d54307c091d55c0273bf' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_1' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_1' id='gform_theme_1' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_1' id='gform_style_settings_1' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='RpL5J7y2nQkDnY\/khPWpscWTv1MsNklYMaapQNcse4buP93Lu+RzAQptmAf5OwNDkf19YAMk8z24OnWmgUNt6HcvtOxzCEv6Jnv0sMkltlGTuVU=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_1' value='WyJ7XCI3MVwiOltcIjg1ZGY3NGYyNzg1NzFiYTJhODNhNTVlMDc1OGQ2ZDUzXCIsXCJjMzRjODg5NzM5N2MzY2NlNDMyNjkyMjYyMzE5NjAzN1wiXSxcIjlcIjpbXCJiNDYyOGU4NGM0YzI2NDRiZTBiZDBhMWRlOWU0Nzg1NVwiLFwiZWRiYzM3ZGNiZjNjYzU2M2E3NGFlYjYyOWYzZjYxNDhcIixcImM3ZTNmNDlhN2E5MTBjZWM1MzYwN2U2YTY4YzUzMjQ0XCIsXCI0YjliYTliYjJjZTdlMjZhN2IxZDFkYTE3MGM3NjBkZVwiLFwiOGE5MjVmMzNmNTYwMGRiZjAxZTQ4OTFjM2Q5NGUxZmVcIixcIjI3OTc5NjQ1NmJmNjIwYTUxM2NjMjI4OTExODhlNDAxXCIsXCI0ZmZiYjUyM2JjZDk1ODk5NzIwZWQ2NThkYzYzOTQ3MFwiXSxcIjdcIjpbXCI5NTUwYzk2ZWVmNDAzOTYzZjQxMmE5ODEyODE0MDZhMVwiLFwiZDZjOTNiY2JmMTc5MDlmZDA5N2VjYjE5NTExMTE5ODBcIixcIjUyMjhlNzZiZTRiNGMxMzhhYzcwOGIxMjE1ZDg2NTMwXCIsXCIwOTFmM2RlZTE1YmFlY2FmNjhmMzc5MTIxY2VjODc4MlwiXSxcIjcwXCI6W1wiNTc1NDVlNjU3ZDZiZWUyOTgzNDM1NGU1NWJmMzA4MGRcIixcIjFlMzZjNWRkYmQzNmFmNjhmYTViNDVmOTRmYWYzMzNmXCIsXCIzMzE2Y2ZhYjRkMDVlMWZmNGQ5ZTc3MWIwOWExODEyOVwiLFwiNmEyYWFlY2JhNTRhN2I5ZDc3NjliM2U1ZTNjYTUyZWFcIixcImYxMTRkYzgwOTY4YzA2OGZhOWZkNDhhNmEyYWJlNzFhXCIsXCI0YmEzMTE3YjVhNDkwMDEwMmM2ZDQzNDRmYThlZDQ2ZFwiXSxcIjEwLjFcIjpcIjlhYmU3Yjc3NDc3NTAzZDI2ZjA5NzE0NWJkNjY4ZjlhXCJ9IiwiOWRkZTYxMTk5NjAxNDE1YzFiY2M5YTE5Y2Y5ZmJmZTAiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_1' id='gform_ajax_frame_1' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 1, 'https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/admin\/loading.gif', true );jQuery('#gform_ajax_frame_1').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_1');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_1').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_1').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_1').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_1').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_1').val();gformInitSpinner( 1, 'https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/themes\/cornerstone\/assets\/build\/images\/admin\/loading.gif', true );jQuery(document).trigger('gform_page_loaded', [1, current_page]);window['gf_submitting_1'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_1').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [1]);window['gf_submitting_1'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_1').text());}else{jQuery('#gform_1').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"1\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_1\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_1\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_1\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 1, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<div class='gl-s10'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<section class=\" ctn      \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"wrapper\"><div id=\"block-cta-tiles-block_ccaad277e78e034e46c96aa86f7a9936\" class=\"  block-acf-cta-tiles block-acf-cta-tiles\" style=\"\"> <div class='gl-s10'><\/div>\t\t\t<div class=\"service-teaser\">\n\t\t\t\t\t\t\t\t<div class=\"section-head\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"kicker\">\n\t\t\t\t\t\tSpecialized Care\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<h2 class=\"heading-1\">Understanding your<br> <span>unique care needs<\/span><\/h2><p>We offer more than help; we deliver peace of mind through tailored care.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"s-72\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__items three-columns column-gap-36\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\" service-teaser__items--item js-class-parent service-teaser\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/24-hour-care\/\" class=\"no-link-style\" target=\"\">\n\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-800x800.jpg\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"24-Hour Care\" title=\"24-Hour Care\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-800x800.jpg 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-300x300.jpg 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-1024x1024.jpg 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-150x150.jpg 150w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-768x768.jpg 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-90x90.jpg 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-1200x1200.jpg 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-1000x1000.jpg 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-900x900.jpg 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-700x700.jpg 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-600x600.jpg 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-500x500.jpg 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-400x400.jpg 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-200x200.jpg 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage-100x100.jpg 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.24HourCare.BannerImage.jpg 1333w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t\t\t\t<h3 class=\"heading-5 js-class-child\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/24-hour-care\/\" class=\"no-link-style \">\n\t\t\t\t\t\t\t\t\t\t24-Hour Care\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\t\t\t<p>For continuous, around-the-clock support, our caregivers ensure safety and companionship day and night.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t\t\t\t\t\t<a href='https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/24-hour-care\/' title='Learn More' class='button button-link-arrow'><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><div class=\"circle-effect\"  role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\" service-teaser__items--item js-class-parent service-teaser\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/respite-care\/\" class=\"no-link-style\" target=\"\">\n\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-800x800.jpg\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"Respite Care With Elderly People\" title=\"Respite Care With Elderly People\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-800x800.jpg 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-300x300.jpg 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-1024x1024.jpg 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-150x150.jpg 150w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-768x768.jpg 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-90x90.jpg 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-1200x1200.jpg 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-1000x1000.jpg 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-900x900.jpg 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-700x700.jpg 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-600x600.jpg 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-500x500.jpg 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-400x400.jpg 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-200x200.jpg 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly-100x100.jpg 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.RespiteCare.BannerImage.DesktopOnly.jpg 1333w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t\t\t\t<h3 class=\"heading-5 js-class-child\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/respite-care\/\" class=\"no-link-style \">\n\t\t\t\t\t\t\t\t\t\tRespite Care\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\t\t\t<p>Take a well-deserved break knowing our professional caregivers are providing compassionate and reliable care.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t\t\t\t\t\t<a href='https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/respite-care\/' title='Learn More' class='button button-link-arrow'><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><div class=\"circle-effect\"  role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\" service-teaser__items--item js-class-parent service-teaser\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/alzheimers-dementia\/\" class=\"no-link-style\" target=\"\">\n\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-800x800.jpg\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"Alzheimer's and Dementia Care\" title=\"Alzheimer\u2019s and Dementia Care\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-800x800.jpg 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-300x300.jpg 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-1024x1024.jpg 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-150x150.jpg 150w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-768x768.jpg 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-90x90.jpg 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-1200x1200.jpg 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-1000x1000.jpg 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-900x900.jpg 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-700x700.jpg 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-600x600.jpg 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-500x500.jpg 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-400x400.jpg 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-200x200.jpg 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted-100x100.jpg 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.Alzheimer_sDimentiaCare.BannerImage.Reformatted.jpg 1333w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t\t\t\t<h3 class=\"heading-5 js-class-child\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/alzheimers-dementia\/\" class=\"no-link-style \">\n\t\t\t\t\t\t\t\t\t\tAlzheimer\u2019s &amp; Dementia Care\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\t\t\t<p>Our caregivers provide specialized care strategies supported with understanding and patience for your loved\u2028 one with memory issues.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t\t\t\t\t\t<a href='https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/alzheimers-dementia\/' title='Learn More' class='button button-link-arrow'><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><div class=\"circle-effect\"  role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\" service-teaser__items--item js-class-parent service-teaser\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\" class=\"no-link-style\" target=\"\">\n\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-800x800.jpg\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"Hospice &#038; Palliative Care\" title=\"Hospice &#038; Palliative Care\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-800x800.jpg 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-300x300.jpg 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-1024x1024.jpg 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-150x150.jpg 150w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-768x768.jpg 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-90x90.jpg 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-1200x1200.jpg 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-1000x1000.jpg 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-900x900.jpg 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-700x700.jpg 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-600x600.jpg 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-500x500.jpg 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-400x400.jpg 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-200x200.jpg 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-100x100.jpg 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg 1333w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t\t\t\t<h3 class=\"heading-5 js-class-child\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\" class=\"no-link-style \">\n\t\t\t\t\t\t\t\t\t\tHospice &amp; Palliative Care\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\t\t\t<p>Compassionate care that complements ongoing medical treatments and supports the entire family.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t\t\t\t\t\t<a href='https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/' title='Learn More' class='button button-link-arrow'><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><div class=\"circle-effect\"  role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\" service-teaser__items--item js-class-parent service-teaser\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospital-recovery-care\/\" class=\"no-link-style\" target=\"\">\n\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-800x534.jpg\" class=\"attachment-thumb_800 size-thumb_800\" alt=\"Hospital Recovery Care\" title=\"Hospital Recovery Care\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-800x534.jpg 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-300x200.jpg 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-1024x683.jpg 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-768x512.jpg 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-1536x1024.jpg 1536w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-90x60.jpg 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-135x90.jpg 135w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-1400x934.jpg 1400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-1200x800.jpg 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-1000x667.jpg 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-900x600.jpg 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-700x467.jpg 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-600x400.jpg 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-500x333.jpg 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-400x267.jpg 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-200x133.jpg 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero-100x67.jpg 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/hospital-recovery-care-hero.jpg 1600w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t\t\t\t<h3 class=\"heading-5 js-class-child\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospital-recovery-care\/\" class=\"no-link-style \">\n\t\t\t\t\t\t\t\t\t\tHospital Recovery Care\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t\t\t\t<p>Post-hospital care that prevents readmissions and enhances recovery, providing continuous support whenever necessary.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t\t\t\t\t\t<a href='https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospital-recovery-care\/' title='Learn More' class='button button-link-arrow'><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><span class=\"label-up\"  role=\"presentation\">Learn More<\/span><div class=\"circle-effect\"  role=\"presentation\" aria-label=\"Circle Design\"><\/div><\/a>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class='gl-s11'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<section class=\"ctn-lblue ctn  ctn-top-shape large-shape  design-shape-blue  \"><div class=\"ctn-bottom-shape\"><\/div><div class=\"ctn-design-shape\"><div class=\"wrapper\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"203\" height=\"179\" viewBox=\"0 0 203 179\" fill=\"none\"><path class=\"ctn-design-shape-large\" d=\"M-1.52588e-05 90.5038C-1.52588e-05 28.6657 57.1197 45.091 94.0689 34.9552C136.629 23.2802 196.291 -37.4953 202.77 34.9552C207.852 91.783 127.281 178.543 94.0691 178.543C51.297 183.185 -1.52588e-05 152.342 -1.52588e-05 90.5038Z\" fill=\"#F5C198\"><\/path><path class=\"ctn-design-shape-small\" d=\"M86.4685 70C105.539 70 119.435 59.0783 122.561 43.8923C126.162 26.4001 107.077 11.7882 84.7332 9.12537C67.2075 7.03675 59.1387 31.5477 59.1387 45.1976C57.7071 62.7769 67.3975 70 86.4685 70Z\" fill=\"#66CADB\"><\/path><\/svg><\/div> <\/div><div class=\"wrapper\"><div id=\"block-blog-teaser-block_8393ff588452f73b67d2c34dd75cd7c9\" class=\"  block-acf-blog-teaser block-acf-blog-teaser\" style=\"\"> <div class='s-0'><\/div>\t\t\t\t<div class=\"service-teaser\">\n\t\t\t<div class=\"section-head\">\n\t\t\t\t\t\t\t\t<div class=\"kicker\">\n\t\t\t\t\tDive Into Cornerstone\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"heading-1\"><span>Featured<\/span> articles<\/h2>\t\t\t\t<div class=\"s-72\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"service-teaser__items three-columns column-gap-36\">\n\t\t\t\t\t<div  id=\"post-478\" class=\"service-teaser__items--item js-class-parent service-teaser has-category\">\n\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/what-is-in-home-care\/\" class=\"no-link-style\">\n\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"800\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away.webp\" class=\"attachment-thumb_1200 size-thumb_1200\" alt=\"Caregiver handing senior client a cup of coffee\" title=\"Caregiver handing senior client a cup of coffee\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away.webp 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-300x200.webp 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-1024x683.webp 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-768x512.webp 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-90x60.webp 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-135x90.webp 135w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-1000x667.webp 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-900x600.webp 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-800x533.webp 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-700x467.webp 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-600x400.webp 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-500x333.webp 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-400x267.webp 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-200x133.webp 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/how-it-works-we-can-start-right-away-100x67.webp 100w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/>\t\t<\/a>\n\t<\/div>\n\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t<div class=\"categories\">\n\t\t\t\n\t\t\t\t\t<div class=\"categories__item\">\n\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/category\/how-we-help\/\" class=\"no-link-style cat-link\">How We Help<\/a>\n\t\t\t\t\t<\/div> \n\t\t\t\t\t<div class=\"categories__item\">\n\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/category\/specialized-care\/\" class=\"no-link-style cat-link\">Specialized Care<\/a>\n\t\t\t\t\t<\/div>\t\t\t<\/div>\n\t\t\t\t\t\t<h3 class=\"heading-5\">\n\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/what-is-in-home-care\/\" class=\"no-link-style\">\n\t\t\t\tWhat is In-Home Care?\t\t\t<\/a>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\t<p> In-Home care is at the heart of what Cornerstone Caregiving does best: Personal, intentional care that comes straight to you! We offer services that help you or your loved one feel safe while receiving the care and companionship you need in the comfort of your home.  <\/p>\n\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/what-is-in-home-care\/\" class=\"button button-link-arrow\">\n\t\t\t\t<span class=\"label-up\"  role=\"presentation\">Read More<\/span>\n\t\t\t<\/a>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n<div  id=\"post-478\" class=\"service-teaser__items--item js-class-parent service-teaser has-category\">\n\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/helping-seniors-get-dressed\/\" class=\"no-link-style\">\n\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"796\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-1200x796.webp\" class=\"attachment-thumb_1200 size-thumb_1200\" alt=\"Cornerstone Caregiving staff helping older woman\" title=\"Cornerstone Caregiving staff helping older woman\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-1200x796.webp 1200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-300x199.webp 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-1024x679.webp 1024w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-768x509.webp 768w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-90x60.webp 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-136x90.webp 136w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-1000x663.webp 1000w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-900x597.webp 900w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-800x530.webp 800w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-700x464.webp 700w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-600x398.webp 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-500x332.webp 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-400x265.webp 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-200x133.webp 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-100x66.webp 100w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image.webp 1220w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/>\t\t<\/a>\n\t<\/div>\n\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t<div class=\"categories\">\n\t\t\t\n\t\t\t\t\t<div class=\"categories__item\">\n\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/category\/how-we-help\/\" class=\"no-link-style cat-link\">How We Help<\/a>\n\t\t\t\t\t<\/div>\t\t\t<\/div>\n\t\t\t\t\t\t<h3 class=\"heading-5\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/helping-seniors-get-dressed\/\" class=\"no-link-style\">\n\t\t\t\tHelping seniors get dressed while preserving their i&#8230;\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t<p> Caring for your spouse or parent day in and day out can take a toll on your own health and well being. We\u2019re there to provi&#8230; <\/p>\n\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/helping-seniors-get-dressed\/\" class=\"button button-link-arrow\">\n\t\t\t\t<span class=\"label-up\"  role=\"presentation\">Read More<\/span>\n\t\t\t<\/a>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n<div  id=\"post-478\" class=\"service-teaser__items--item js-class-parent service-teaser has-category\">\n\t<div class=\"service-teaser__image js-class-child h-img-cover\">\n\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/navigating-demential-home-care\/\" class=\"no-link-style\">\n\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"629\" height=\"390\" src=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2.webp\" class=\"attachment-thumb_1200 size-thumb_1200\" alt=\"Patient with caregiver\" title=\"Patient with caregiver\" srcset=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2.webp 629w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-300x186.webp 300w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-90x56.webp 90w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-145x90.webp 145w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-600x372.webp 600w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-500x310.webp 500w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-400x248.webp 400w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-200x124.webp 200w, https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/2024\/04\/resource-image-2-100x62.webp 100w\" sizes=\"auto, (max-width: 629px) 100vw, 629px\" \/>\t\t<\/a>\n\t<\/div>\n\t<div class=\"service-teaser__content p3\">\n\t\t\t\t\t<div class=\"categories\">\n\t\t\t\n\t\t\t\t\t<div class=\"categories__item\">\n\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/category\/specialized-care\/\" class=\"no-link-style cat-link\">Specialized Care<\/a>\n\t\t\t\t\t<\/div>\t\t\t<\/div>\n\t\t\t\t\t\t<h3 class=\"heading-5\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/navigating-demential-home-care\/\" class=\"no-link-style\">\n\t\t\t\tNavigating dementia &#038;\u2028home care\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/h3>\n\t\t\t\t\t<p> Dementia and Alzheimer\u2019s are terms that we commonly hear used interchangeably, however they are not the same thing. Dementi&#8230; <\/p>\n\t\t\t\t\t<div class=\"service-teaser__link js-class-child\">\n\t\t\t<a href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/blog\/navigating-demential-home-care\/\" class=\"button button-link-arrow\">\n\t\t\t\t<span class=\"label-up\"  role=\"presentation\">Read More<\/span>\n\t\t\t<\/a>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"ctn-bottom-shape\"><\/div>\n\t\t<div class=\"ctn-design-shape\">\n\t\t<div class=\"wrapper\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"203\" height=\"179\"\n\t\t\t\tviewBox=\"0 0 203 179\" fill=\"none\">\n\t\t\t\t<path class=\"ctn-design-shape-large\"\n\t\t\t\t\td=\"M-1.52588e-05 90.5038C-1.52588e-05 28.6657 57.1197 45.091 94.0689 34.9552C136.629 23.2802 196.291 -37.4953 202.77 34.9552C207.852 91.783 127.281 178.543 94.0691 178.543C51.297 183.185 -1.52588e-05 152.342 -1.52588e-05 90.5038Z\"\n\t\t\t\t\tfill=\"#F5C198\" \/>\n\t\t\t\t<path class=\"ctn-design-shape-small\"\n\t\t\t\t\td=\"M86.4685 70C105.539 70 119.435 59.0783 122.561 43.8923C126.162 26.4001 107.077 11.7882 84.7332 9.12537C67.2075 7.03675 59.1387 31.5477 59.1387 45.1976C57.7071 62.7769 67.3975 70 86.4685 70Z\"\n\t\t\t\t\tfill=\"#66CADB\" \/>\n\t\t\t<\/svg>\n\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t<div class='gl-s11'><\/div><\/div><\/div><div class=\"vertical-gradient\"><\/div><\/section>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Wholly known, wholly cared for. We come alongside your hospice care provider, filling in the gaps to make sure your loved one is comfortable. We\u2019ll be there whenever you need us, for as long as you need us.<\/p>\n","protected":false},"author":16,"featured_media":3171,"parent":0,"template":"","home_care_category":[6],"class_list":["post-478","home-care-service","type-home-care-service","status-publish","has-post-thumbnail","hentry","home_care_category-specialized-care"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hospice &amp; Palliative Care - Cornerstone Caregiving - Get Care<\/title>\n<meta name=\"description\" content=\"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hospice &amp; Palliative Care - Cornerstone Caregiving - Get Care\" \/>\n<meta property=\"og:description\" content=\"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\" \/>\n<meta property=\"og:site_name\" content=\"Cornerstone Caregiving - Canada\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-16T20:56:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/stgcornerstone.wpengine.com\/ca\/wp-content\/uploads\/sites\/2\/Banner-5-1024x683.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Hospice &amp; Palliative Care - Cornerstone Caregiving - Get Care\" \/>\n<meta name=\"twitter:description\" content=\"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Banner-5-scaled.jpg\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\",\"url\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\",\"name\":\"Hospice & Palliative Care - Cornerstone Caregiving - Get Care\",\"isPartOf\":{\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg\",\"datePublished\":\"2024-04-18T13:31:11+00:00\",\"dateModified\":\"2025-10-16T20:56:49+00:00\",\"description\":\"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!\",\"breadcrumb\":{\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#primaryimage\",\"url\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg\",\"contentUrl\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg\",\"width\":1333,\"height\":1333,\"caption\":\"Hospice & Palliative Care\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hospice &amp; Palliative Care\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/#website\",\"url\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/\",\"name\":\"Cornerstone Caregiving - Canada\",\"description\":\"Senior In-Home Care Services that Families Trust\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hospice & Palliative Care - Cornerstone Caregiving - Get Care","description":"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/","og_locale":"en_US","og_type":"article","og_title":"Hospice & Palliative Care - Cornerstone Caregiving - Get Care","og_description":"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!","og_url":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/","og_site_name":"Cornerstone Caregiving - Canada","article_modified_time":"2025-10-16T20:56:49+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/stgcornerstone.wpengine.com\/ca\/wp-content\/uploads\/sites\/2\/Banner-5-1024x683.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"Hospice & Palliative Care - Cornerstone Caregiving - Get Care","twitter_description":"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!","twitter_image":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/Banner-5-scaled.jpg","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/","url":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/","name":"Hospice & Palliative Care - Cornerstone Caregiving - Get Care","isPartOf":{"@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#primaryimage"},"image":{"@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#primaryimage"},"thumbnailUrl":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg","datePublished":"2024-04-18T13:31:11+00:00","dateModified":"2025-10-16T20:56:49+00:00","description":"Cornerstone Caregiving helps fill in the gaps to make sure your loved one is comfortable. Offering hospice care for as long as you need us!","breadcrumb":{"@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#primaryimage","url":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg","contentUrl":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg","width":1333,"height":1333,"caption":"Hospice & Palliative Care"},{"@type":"BreadcrumbList","@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/home-care\/hospice-palliative-care\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/"},{"@type":"ListItem","position":2,"name":"Hospice &amp; Palliative Care"}]},{"@type":"WebSite","@id":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/#website","url":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/","name":"Cornerstone Caregiving - Canada","description":"Senior In-Home Care Services that Families Trust","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"uagb_featured_image_src":{"full":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",1333,1333,false],"thumbnail":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-150x150.jpg",150,150,true],"medium":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-300x300.jpg",300,300,true],"medium_large":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-768x768.jpg",768,768,true],"large":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-1024x1024.jpg",1024,1024,true],"1536x1536":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",1333,1333,false],"2048x2048":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",1333,1333,false],"post-thumbnail":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-150x150.jpg",150,150,true],"admin-square":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-90x90.jpg",90,90,true],"admin-landscape":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-90x90.jpg",90,90,true],"admin-portrait":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-90x90.jpg",90,90,true],"thumb_2000":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",1333,1333,false],"thumb_1600":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",1333,1333,false],"thumb_1400":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",1333,1333,false],"thumb_1200":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-1200x1200.jpg",1200,1200,true],"thumb_1000":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-1000x1000.jpg",1000,1000,true],"thumb_900":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-900x900.jpg",900,900,true],"thumb_800":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-800x800.jpg",800,800,true],"thumb_700":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-700x700.jpg",700,700,true],"thumb_600":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-600x600.jpg",600,600,true],"thumb_500":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-500x500.jpg",500,500,true],"thumb_400":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-400x400.jpg",400,400,true],"thumb_300":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-300x300.jpg",300,300,true],"thumb_200":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-200x200.jpg",200,200,true],"thumb_100":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted-100x100.jpg",100,100,true],"gform-image-choice-sm":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",300,300,false],"gform-image-choice-md":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",400,400,false],"gform-image-choice-lg":["https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-content\/uploads\/sites\/2\/InHomeCare.HospicePalliativeCare.BannerImage.Reformatted.jpg",600,600,false]},"uagb_author_info":{"display_name":"Jiana Boston","author_link":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/author\/jboston\/"},"uagb_comment_info":0,"uagb_excerpt":"Wholly known, wholly cared for. We come alongside your hospice care provider, filling in the gaps to make sure your loved one is comfortable. We\u2019ll be there whenever you need us, for as long as you need us.","_links":{"self":[{"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/home-care-service\/478","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/home-care-service"}],"about":[{"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/types\/home-care-service"}],"author":[{"embeddable":true,"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/users\/16"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/media\/3171"}],"wp:attachment":[{"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/media?parent=478"}],"wp:term":[{"taxonomy":"home_care_category","embeddable":true,"href":"https:\/\/cornerstdev1.wpenginepowered.com\/canada\/wp-json\/wp\/v2\/home_care_category?post=478"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}